*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terracotta: #B8563E;
    --terracotta-dark: #9A4430;
    --terracotta-light: #D4755F;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF8F3;
    --charcoal: #1A1614;
    --charcoal-light: #3D3530;
    --warm-gray: #6B5F57;
    --warm-gray-light: #9A8D84;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── HEADER ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 86, 62, 0.08);
    transition: box-shadow 0.4s var(--ease-smooth);
}

.header.scrolled {
    box-shadow: 0 4px 40px rgba(26, 22, 20, 0.06);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--terracotta);
    color: var(--sand-light);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s var(--ease-out);
}

.logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--warm-gray);
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--charcoal);
    background: rgba(184, 86, 62, 0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--terracotta) !important;
    background: rgba(184, 86, 62, 0.08) !important;
    margin-left: 8px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: rgba(184, 86, 62, 0.15) !important;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background 0.25s;
    z-index: 1001;
}

.nav-toggle:hover {
    background: rgba(184, 86, 62, 0.06);
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.25s;
    transform-origin: center;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 4px;
        padding: 24px;
        transform: translateX(100%);
        transition: transform 0.45s var(--ease-out);
        box-shadow: -20px 0 60px rgba(26, 22, 20, 0.1);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .nav-cta {
        margin-left: 0;
        justify-content: center;
        margin-top: 8px;
        padding: 14px 16px !important;
        border-radius: 10px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 22, 20, 0.4);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.4s;
    }

    .nav-overlay.visible {
        display: block;
        opacity: 1;
    }
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 86, 62, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.hero-headline .accent-italic {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 700;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 86, 62, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--sand-dark);
}

.btn-ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--charcoal);
}

.btn-light:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 22, 20, 0.15);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--warm-gray);
}

.trust-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 40px 80px rgba(26, 22, 20, 0.12);
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -12px;
    left: -12px;
    right: -12px;
    height: 40%;
    background: var(--terracotta);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.12;
}

.hero-stat-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(26, 22, 20, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--terracotta);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-visual {
        max-width: 480px;
    }
    .hero-stat-card {
        left: 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 60px;
    }
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    .hero-sub {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    .hero-stat-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        display: inline-flex;
    }
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-title .accent-italic {
    font-style: italic;
    color: var(--terracotta);
}

.section-header {
    margin-bottom: 64px;
}

/* ─── SERVICES ─── */
.services {
    padding: 120px 24px;
    background: var(--sand-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(184, 86, 62, 0.06);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 22, 20, 0.08);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(184, 86, 62, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    margin-bottom: 24px;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--terracotta);
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        padding: 80px 20px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 28px 24px;
    }
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 24px;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 22, 20, 0.1);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6.2;
}

.about-image-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 22, 20, 0.12);
    border: 4px solid var(--cream);
    max-width: 55%;
}

.about-image-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background: var(--terracotta);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(184, 86, 62, 0.3);
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    margin: 32px 0 40px;
    padding: 28px 0;
    border-top: 1px solid var(--sand-dark);
    border-bottom: 1px solid var(--sand-dark);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
}

.value-divider {
    width: 4px;
    height: 4px;
    background: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}

.value-item:last-child .value-divider {
    display: none;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-visual {
        max-width: 480px;
    }
    .about-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 80px 20px;
    }
    .about-image-secondary {
        right: -12px;
        bottom: -20px;
    }
}

/* ─── GALLERY ─── */
.gallery {
    padding: 120px 24px;
    background: var(--sand-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
}

.gallery-item--wide {
    grid-column: span 7;
    aspect-ratio: 7/4;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
    grid-column: span 3;
    aspect-ratio: 1;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item--wide,
    .gallery-item--tall,
    .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    .gallery-overlay {
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .gallery {
        padding: 80px 20px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item,
    .gallery-item--wide,
    .gallery-item--tall,
    .gallery-item:not(.gallery-item--wide):not(.gallery-item--tall) {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }
}

/* ─── CTA BANNER ─── */
.cta-banner {
    padding: 100px 24px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 86, 62, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 520px;
}

.cta-eyebrow {
    color: var(--terracotta-light);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-title .accent-italic {
    font-style: italic;
    color: var(--terracotta-light);
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--warm-gray-light);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 24px;
    background: var(--cream);
}

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

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 86, 62, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.contact-link {
    color: var(--terracotta);
    transition: color 0.25s;
}

.contact-link:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 22, 20, 0.06);
}

/* Form */
.form-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(26, 22, 20, 0.06);
    border: 1px solid rgba(184, 86, 62, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--sand-light);
    border: 1.5px solid transparent;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.form-input::placeholder {
    color: var(--warm-gray-light);
}

.form-input:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(184, 86, 62, 0.08);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B5F57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(184, 86, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--terracotta);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.form-card.hidden-form {
    display: none;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 80px 20px;
    }
    .form-card {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ─── FOOTER ─── */
.footer {
    background: var(--charcoal);
    padding: 64px 24px 32px;
    color: var(--sand);
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.08);
}

.footer-brand .logo-mark {
    background: var(--terracotta);
}

.footer-brand .logo-text {
    color: var(--sand);
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    transition: color 0.25s;
}

.footer-link:hover {
    color: var(--terracotta-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    transition: color 0.25s;
}

.footer-link-footer:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
