/* ============================================
   Then & Again Antiques — Custom Styles
   Palette: Terracotta + Sand + Cream
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --c-terracotta:    #A0522D;
    --c-terracotta-dk: #7A3E20;
    --c-terracotta-lt: #C4785A;
    --c-sand:          #D4B896;
    --c-sand-lt:       #E8D5BC;
    --c-cream:         #F5E6D3;
    --c-cream-warm:    #FAF0E6;
    --c-bark:          #3D2B1F;
    --c-bark-dk:       #2A1E16;
    --c-text:          #3D2B1F;
    --c-text-muted:    #6B5344;
    --c-text-light:    #8B7355;
    --c-white:         #FFFDF9;
    --c-border:        #E0CDB8;
    --c-border-lt:     #EDE0D0;

    --f-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --f-body:    'Lora', 'Georgia', serif;
    --f-ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs:  0.25rem;
    --space-sm:  0.5rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --shadow-sm:  0 1px 3px rgba(61,43,31,0.06), 0 1px 2px rgba(61,43,31,0.04);
    --shadow-md:  0 4px 16px rgba(61,43,31,0.08), 0 2px 4px rgba(61,43,31,0.04);
    --shadow-lg:  0 12px 40px rgba(61,43,31,0.12), 0 4px 12px rgba(61,43,31,0.06);
    --shadow-xl:  0 24px 60px rgba(61,43,31,0.14), 0 8px 20px rgba(61,43,31,0.08);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --max-w: 1200px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-cream-warm);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--c-bark);
}

a {
    color: var(--c-terracotta);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--c-terracotta-dk); }

ul { list-style: none; }

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

input, select, textarea {
    font-family: var(--f-ui);
    font-size: 0.938rem;
    color: var(--c-text);
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--c-terracotta);
    box-shadow: 0 0 0 3px rgba(160,82,45,0.12);
}

label {
    font-family: var(--f-ui);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--c-text-muted);
    margin-bottom: var(--space-sm);
    display: block;
}

::selection { background: var(--c-sand-lt); color: var(--c-bark); }

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--c-terracotta);
    color: var(--c-white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-family: var(--f-ui);
    font-size: 0.875rem;
}
.skip-link:focus { top: var(--space-md); }

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 480px) {
    .container { padding: 0 var(--space-lg); }
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,240,230,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border-lt);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--c-bark);
}
.logo:hover { color: var(--c-bark); }

.logo-mark {
    font-family: var(--f-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--c-terracotta);
    border: 1.5px solid var(--c-terracotta);
    border-radius: var(--radius-sm);
    padding: 4px 8px;
    line-height: 1;
}

.logo-text {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.logo-text em {
    font-style: italic;
    color: var(--c-terracotta);
    font-weight: 400;
}

/* NAV */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover { background: var(--c-border-lt); }
.nav-toggle[aria-expanded="true"] .hamburger {
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(90deg);
    top: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-bark);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger::before { content: ''; margin-bottom: 5px; }
.hamburger::after { content: ''; margin-top: 5px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}
.nav-menu li a {
    font-family: var(--f-ui);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--c-text-muted);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-menu li a:hover {
    color: var(--c-terracotta);
    background: rgba(160,82,45,0.06);
}
.nav-cta {
    font-weight: 500 !important;
    color: var(--c-terracotta) !important;
    border: 1px solid var(--c-terracotta);
    border-radius: var(--radius-sm) !important;
    margin-left: var(--space-sm);
}
.nav-cta:hover {
    background: var(--c-terracotta) !important;
    color: var(--c-white) !important;
}

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250,240,230,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: var(--space-2xl) var(--space-xl);
        gap: 0;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    }
    .nav-menu.open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-menu li a {
        font-size: 1.125rem;
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--c-border-lt);
        border-radius: 0;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-lg);
        text-align: center;
        border-radius: var(--radius-md) !important;
        padding: var(--space-md) var(--space-xl) !important;
    }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--f-ui);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--c-terracotta);
    color: var(--c-white);
    border-color: var(--c-terracotta);
}
.btn-primary:hover {
    background: var(--c-terracotta-dk);
    border-color: var(--c-terracotta-dk);
    color: var(--c-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: transparent;
    color: var(--c-bark);
    border-color: var(--c-bark);
}
.btn-secondary:hover {
    background: var(--c-bark);
    color: var(--c-white);
    transform: translateY(-1px);
}
.btn-full { width: 100%; }

/* ---------- HERO ---------- */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--c-cream-warm);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(212,184,150,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-4xl) 0;
}

/* HERO CONTENT — asymmetric offset */
.hero-content {
    padding-right: var(--space-2xl);
    padding-top: var(--space-2xl);
}

.hero-eyebrow {
    font-family: var(--f-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-terracotta);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--c-terracotta);
}

.hero-headline {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--c-bark);
    margin-bottom: var(--space-xl);
}
.hero-headline em {
    font-style: italic;
    color: var(--c-terracotta);
    font-weight: 500;
}

.hero-sub {
    font-family: var(--f-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--c-text-muted);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* HERO VISUAL — stacked image composition */
.hero-visual {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.hero-image-stack {
    position: relative;
    height: 560px;
}

.hi-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hi-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hi-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--c-cream-warm);
}
.hi-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hi-badge {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: var(--c-terracotta);
    color: var(--c-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 2;
}
.hb-year {
    display: block;
    font-family: var(--f-ui);
    font-size: 0.688rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 2px;
}
.hb-num {
    font-family: var(--f-display);
    font-size: 1.375rem;
    font-weight: 600;
}

/* HERO DIVIDER */
.hero-divider {
    display: flex;
    justify-content: center;
    padding: var(--space-2xl) 0 var(--space-xl);
    color: var(--c-terracotta);
    opacity: 0.5;
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { order: 1; }
    .hero-image-stack { height: 420px; }
}

@media (max-width: 480px) {
    .hero-image-stack { height: 320px; }
    .hi-badge { padding: var(--space-md) var(--space-lg); }
    .hb-num { font-size: 1.125rem; }
}

/* ---------- SECTION SHARED ---------- */
.section-eyebrow {
    font-family: var(--f-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-terracotta);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--c-bark);
}

.section-sub {
    font-size: 1.063rem;
    color: var(--c-text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    margin-bottom: var(--space-3xl);
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- CATEGORIES ---------- */
.categories {
    padding: var(--space-4xl) 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-lt);
    border-bottom: 1px solid var(--c-border-lt);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.cat-card {
    background: var(--c-cream-warm);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--radius-md);
    padding: var(--space-2xl) var(--space-xl);
    text-decoration: none;
    color: var(--c-text);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-sand-lt);
}
.cat-card:hover::before { transform: scaleX(1); }

.cat-num {
    font-family: var(--f-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-sand);
    line-height: 1;
    margin-bottom: var(--space-md);
    display: block;
    transition: color var(--transition);
}
.cat-card:hover .cat-num { color: var(--c-terracotta); }

.cat-title {
    font-family: var(--f-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--c-bark);
    margin-bottom: var(--space-sm);
}

.cat-card p {
    font-size: 0.938rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

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

/* ---------- FEATURED ---------- */
.featured {
    padding: var(--space-4xl) 0;
    background: var(--c-cream-warm);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.fg-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    transition: all var(--transition);
}
.fg-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.fg-wide { grid-column: span 7; }
.fg-item:not(.fg-wide) { grid-column: span 5; }

.fg-img {
    overflow: hidden;
    aspect-ratio: 6/5;
}
.fg-wide .fg-img { aspect-ratio: 7/5; }
.fg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.fg-item:hover .fg-img img { transform: scale(1.03); }

.fg-info {
    padding: var(--space-xl);
}
.fg-cat {
    font-family: var(--f-ui);
    font-size: 0.688rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-terracotta);
    margin-bottom: var(--space-xs);
    display: block;
}
.fg-name {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--c-bark);
    margin-bottom: var(--space-sm);
}
.fg-desc {
    font-size: 0.938rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

.featured-note {
    text-align: center;
    font-family: var(--f-ui);
    font-size: 0.813rem;
    color: var(--c-text-light);
    font-style: italic;
    padding: var(--space-lg);
    border-top: 1px solid var(--c-border-lt);
}

@media (max-width: 768px) {
    .featured-grid { grid-template-columns: 1fr; }
    .fg-wide, .fg-item:not(.fg-wide) { grid-column: span 1; }
    .fg-img { aspect-ratio: 4/3 !important; }
}

/* ---------- ABOUT ---------- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-lt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-visual {
    position: relative;
    padding-bottom: var(--space-xl);
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 56/70;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 60%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--c-white);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content { padding-top: var(--space-2xl); }

.about-body {
    font-size: 1.063rem;
    line-height: 1.85;
    color: var(--c-text-muted);
    margin-bottom: var(--space-xl);
}
.about-body:not(:last-child) { margin-bottom: var(--space-xl); }

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--c-border-lt);
}

.av-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.av-icon {
    flex-shrink: 0;
    color: var(--c-terracotta);
    margin-top: 2px;
}

.av-item h3 {
    font-family: var(--f-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--c-bark);
    margin-bottom: 4px;
}
.av-item p {
    font-size: 0.938rem;
    color: var(--c-text-muted);
    line-height: 1.6;
}

@media (max-width: 960px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: 2; max-width: 500px; }
    .about-content { order: 1; padding-top: 0; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--c-bark);
    color: var(--c-cream);
}

.testimonials .section-eyebrow { color: var(--c-sand); }
.testimonials .section-title { color: var(--c-cream); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: rgba(255,253,249,0.05);
    border: 1px solid rgba(255,253,249,0.1);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    transition: all var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,253,249,0.08);
    border-color: rgba(255,253,249,0.18);
    transform: translateY(-2px);
}

.tc-quote {
    color: var(--c-terracotta-lt);
    margin-bottom: var(--space-lg);
    opacity: 0.7;
}

.tc-text {
    font-family: var(--f-body);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--c-cream);
    margin-bottom: var(--space-xl);
}

.tc-author {
    font-family: var(--f-ui);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-sand);
}

@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- VISIT ---------- */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--c-cream-warm);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.visit-desc {
    font-size: 1.063rem;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.vd-item {
    padding: var(--space-xl);
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.vd-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-sand-lt);
}

.vd-item dt {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--f-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-bark);
    margin-bottom: var(--space-sm);
}
.vd-icon { color: var(--c-terracotta); }

.vd-item dd {
    font-size: 0.938rem;
    color: var(--c-text-muted);
    line-height: 1.7;
}
.vd-item dd a { color: var(--c-terracotta); }

.visit-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 56/64;
}
.visit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 960px) {
    .visit-layout { grid-template-columns: 1fr; }
    .visit-visual { order: -1; aspect-ratio: 16/9; }
    .visit-details { grid-template-columns: 1fr; }
}

/* ---------- CONTACT ---------- */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border-lt);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-desc {
    font-size: 1.063rem;
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.938rem;
    color: var(--c-text);
}
.cl-icon {
    flex-shrink: 0;
    color: var(--c-terracotta);
}
.contact-list li a { color: var(--c-terracotta); }
.contact-list li a:hover { color: var(--c-terracotta-dk); text-decoration: underline; }

.contact-form-wrap {
    background: var(--c-cream-warm);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.contact-form { display: flex; flex-direction: column; gap: var(--space-lg); }

.cf-group { display: flex; flex-direction: column; gap: var(--space-sm); }

.cf-group select {
    cursor: pointer;
    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='%236B5344' stroke-width='2' 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 1rem center;
    padding-right: 2.5rem;
}

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

.cf-note {
    font-family: var(--f-ui);
    font-size: 0.813rem;
    color: var(--c-text-light);
    text-align: center;
    margin-top: var(--space-sm);
}

.cf-success {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}
.cf-success h3 {
    font-family: var(--f-display);
    font-size: 1.75rem;
    color: var(--c-bark);
    margin: var(--space-lg) 0 var(--space-sm);
}
.cf-success p {
    color: var(--c-text-muted);
    font-size: 1rem;
}
.cf-check {
    color: var(--c-terracotta);
    margin: 0 auto;
}

@media (max-width: 960px) {
    .contact-layout { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--c-bark-dk);
    color: var(--c-cream);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,253,249,0.1);
    margin-bottom: var(--space-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.footer-brand .logo-mark { color: var(--c-cream); border-color: var(--c-cream); }
.footer-brand .logo-text { color: var(--c-cream); }
.footer-brand .logo-text em { color: var(--c-sand); }

.footer-tagline {
    font-size: 0.813rem;
    color: var(--c-text-light);
    margin-left: var(--space-lg);
    padding-left: var(--space-lg);
    border-left: 1px solid rgba(255,253,249,0.15);
    letter-spacing: 0.03em;
}

.footer-nav {
    display: flex;
    gap: var(--space-xs);
}
.footer-nav a {
    font-family: var(--f-ui);
    font-size: 0.875rem;
    color: var(--c-sand);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.footer-nav a:hover {
    color: var(--c-white);
    background: rgba(255,253,249,0.08);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-family: var(--f-ui);
    font-size: 0.813rem;
    color: var(--c-text-light);
}
.footer-bottom a { color: var(--c-sand); }
.footer-bottom a:hover { color: var(--c-white); }

@media (max-width: 640px) {
    .footer-top { flex-direction: column; align-items: flex-start; gap: var(--space-xl); }
    .footer-tagline { margin-left: 0; padding-left: 0; border-left: none; margin-top: var(--space-sm); }
    .footer-nav { flex-wrap: wrap; }
    .footer-bottom { text-align: center; }
}

/* ---------- ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.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; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
