/* ============================================
   Central Work Clothes — Editorial Workwear Site
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2C2420;
    background-color: #F5F0EB;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ── Focus ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #B85C38;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 200;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
    font-weight: 500;
}
.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid #B85C38;
    outline-offset: 2px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: #1A1412;
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

/* ── Section Eyebrow ── */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B85C38;
    margin-bottom: 1rem;
}

/* ── Section Heading ── */
.section-heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #1A1412;
}

.section-heading em {
    font-style: italic;
    color: #B85C38;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: #B85C38;
    color: #fff;
    border: 2px solid #B85C38;
}
.btn--primary:hover,
.btn--primary:focus {
    background-color: #9A4B2E;
    border-color: #9A4B2E;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(184, 92, 56, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: #2C2420;
    border: 2px solid #2C2420;
}
.btn--ghost:hover,
.btn--ghost:focus {
    background-color: #2C2420;
    color: #F5F0EB;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44, 36, 32, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 24px rgba(44, 36, 32, 0.08);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-inner {
        padding: 0 3rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.nav-logo-mark {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.125rem;
    color: #B85C38;
    border: 2px solid #B85C38;
    border-radius: 3px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1A1412;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #2C2420;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover {
    color: #B85C38;
    background: rgba(184, 92, 56, 0.06);
}

.nav-link--cta {
    background-color: #B85C38;
    color: #fff !important;
    margin-left: 0.5rem;
}
.nav-link--cta:hover {
    background-color: #9A4B2E;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: 1rem;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #2C2420;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 240, 235, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(44, 36, 32, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
    .nav-link--cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0 4rem;
    background: #F5F0EB;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .hero-grid {
        padding: 0 3rem;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
    }
}

.hero-content {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0;
    }
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B85C38;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #B85C38;
}

.hero-headline {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #1A1412;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    font-style: italic;
    color: #B85C38;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    line-height: 1.75;
    color: #5A4A44;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 36, 32, 0.12);
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9A8078;
}

.hero-meta-value {
    font-size: 0.9375rem;
    color: #2C2420;
    font-weight: 500;
}

.hero-meta-link {
    color: #B85C38;
    transition: color 0.2s ease;
}
.hero-meta-link:hover {
    color: #9A4B2E;
}

/* Hero image column */
.hero-image-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-image-col {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 200px;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-image-col {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.5rem;
    }
}

.hero-image-hero {
    grid-column: 1 / -1;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .hero-image-hero {
        grid-column: 1;
        grid-row: 1 / 3;
    }
}

.hero-image-hero img,
.hero-image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero-image-stack {
        grid-column: 2;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #9A8078;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ── */
.about {
    padding: 7rem 0;
    background: #EDE6DF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 4rem;
    }
}

.about-image {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 6/7;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #5A4A44;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(44, 36, 32, 0.1);
}

@media (min-width: 640px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #B85C38;
}

.stat-label {
    font-size: 0.8125rem;
    color: #5A4A44;
    line-height: 1.5;
}

/* ── Products ── */
.products {
    padding: 7rem 0;
    background: #F5F0EB;
}

.products-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.products-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #5A4A44;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44, 36, 32, 0.06);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.1);
}

.product-card-image {
    aspect-ratio: 560/400;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-card-body {
    padding: 1.75rem;
}

.product-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1A1412;
}

.product-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #5A4A44;
}

/* ── Values ── */
.values {
    padding: 7rem 0;
    background: #1A1412;
    color: #F5F0EB;
}

.values .section-heading {
    color: #F5F0EB;
}

.values-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.values-header .section-eyebrow {
    color: #D4915A;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    padding: 2rem;
    border: 1px solid rgba(245, 240, 235, 0.08);
    border-radius: 6px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.value-card:hover {
    border-color: rgba(184, 92, 56, 0.4);
    background: rgba(184, 92, 56, 0.04);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 240, 235, 0.15);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #D4915A;
}

.value-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #F5F0EB;
}

.value-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #B8A8A0;
}

/* ── Quote ── */
.quote-section {
    padding: 6rem 0;
    background: #EDE6DF;
    text-align: center;
}

.quote-wrap {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    color: #D4915A;
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.quote-wrap blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: #1A1412;
    margin-bottom: 1.5rem;
}

.quote-source {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9A8078;
    letter-spacing: 0.04em;
}

/* ── Location ── */
.location {
    padding: 7rem 0;
    background: #F5F0EB;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.location-content {
    padding: 1rem 0;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: #EDE6DF;
    border-radius: 6px;
}

@media (min-width: 640px) {
    .location-details {
        grid-template-columns: 1fr 1fr;
    }
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.location-detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9A8078;
}

.location-detail-value {
    font-size: 0.9375rem;
    color: #2C2420;
    line-height: 1.6;
}

.location-link {
    color: #B85C38;
    transition: color 0.2s ease;
}
.location-link:hover {
    color: #9A4B2E;
    text-decoration: underline;
}

.location-map {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 640/560;
}

.location-map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: #B85C38;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.location-map-link:hover {
    background: #9A4B2E;
}

/* ── Contact ── */
.contact {
    padding: 7rem 0;
    background: #EDE6DF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #5A4A44;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #2C2420;
}

.contact-info-item a {
    color: #B85C38;
    transition: color 0.2s ease;
}
.contact-info-item a:hover {
    color: #9A4B2E;
    text-decoration: underline;
}

/* Form */
.contact-form-wrap {
    background: #fff;
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid rgba(44, 36, 32, 0.06);
}

@media (min-width: 640px) {
    .contact-form-wrap {
        padding: 2.5rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #2C2420;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(44, 36, 32, 0.15);
    border-radius: 4px;
    background: #F5F0EB;
    color: #2C2420;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B85C38;
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9A8078;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.8125rem;
    color: #9A8078;
    text-align: center;
    margin-top: 0.75rem;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-success svg {
    color: #4A8C5C;
}

.form-success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1412;
}

.form-success-text {
    font-size: 0.9375rem;
    color: #5A4A44;
}

/* ── Footer ── */
.footer {
    padding: 5rem 0 0;
    background: #1A1412;
    color: #F5F0EB;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-mark {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1rem;
    color: #B85C38;
    border: 2px solid #B85C38;
    border-radius: 3px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #F5F0EB;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #8A7A74;
    max-width: 280px;
}

.footer-nav-title,
.footer-hours-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4915A;
    margin-bottom: 1rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav-list a {
    font-size: 0.875rem;
    color: #B8A8A0;
    transition: color 0.2s ease;
}
.footer-nav-list a:hover {
    color: #F5F0EB;
}

.footer-address {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #B8A8A0;
}

.footer-link {
    color: #D4915A;
    transition: color 0.2s ease;
}
.footer-link:hover {
    color: #F5F0EB;
    text-decoration: underline;
}

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-hours-day {
    color: #B8A8A0;
}

.footer-hours-time {
    color: #8A7A74;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 235, 0.08);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-copy {
    font-size: 0.8125rem;
    color: #6A5A54;
}

.footer-legal {
    font-size: 0.8125rem;
    color: #6A5A54;
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
