/* ==========================================================================
   Catskill Spa & Massage — Design System
   Palette: deep pine forest + cedar gold + warm cream
   ========================================================================== */

:root {
    --forest-900: #0E211B;
    --forest-800: #143026;
    --forest-700: #1C4234;
    --forest-600: #275746;
    --moss: #3A6B57;
    --sage: #93AC9C;
    --sage-pale: #C7D5CB;

    --gold: #C2A05B;
    --gold-deep: #A6853F;
    --gold-pale: #E5D3AA;

    --cream: #FBF8F2;
    --sand: #F2ECE1;
    --stone: #E2DACC;

    --ink: #221F1A;
    --body: #4A463D;
    --muted: #7A7365;

    --white: #FFFFFF;

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 4px 18px rgba(14, 33, 27, .07);
    --shadow-md: 0 14px 40px rgba(14, 33, 27, .12);
    --shadow-lg: 0 28px 70px rgba(14, 33, 27, .18);

    --transition: .38s cubic-bezier(.22, .61, .36, 1);
    --radius: 2px;
    --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 17px;
    line-height: 1.8;
    color: var(--body);
    background: var(--cream);
    overflow-x: hidden;
}

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

a { color: var(--forest-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--forest-900);
    font-weight: 500;
    line-height: 1.18;
    margin: 0 0 .6em;
    letter-spacing: .005em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.2em; }

ul { margin: 0 0 1.2em; padding-left: 1.15rem; }
li { margin-bottom: .5em; }

/* ---------- Layout ---------- */
.container { width: min(1200px, 90%); margin-inline: auto; }
.container-narrow { width: min(880px, 90%); margin-inline: auto; }

section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-forest { background: var(--forest-800); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest p { color: rgba(255, 255, 255, .8); }

/* ---------- Typographic helpers ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}
.eyebrow.centered::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}
.section-forest .eyebrow { color: var(--gold-pale); }
.section-forest .eyebrow::before, .section-forest .eyebrow::after { background: var(--gold-pale); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--muted); margin-bottom: 0; }
.section-forest .section-head p { color: rgba(255, 255, 255, .74); }

.lead { font-size: 1.16rem; line-height: 1.85; color: var(--body); }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}
.btn-primary { background: var(--forest-700); color: var(--white); border-color: var(--forest-700); }
.btn-primary:hover { background: var(--forest-900); border-color: var(--forest-900); color: var(--white); transform: translateY(-2px); }

.btn-gold { background: var(--gold); color: var(--forest-900); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--forest-800); border-color: rgba(28, 66, 52, .35); }
.btn-outline:hover { background: var(--forest-800); color: var(--white); border-color: var(--forest-800); }

.btn-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn-light:hover { background: var(--white); color: var(--forest-900); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.centered { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.solid,
.site-header.scrolled {
    background: var(--forest-900);
    box-shadow: 0 2px 26px rgba(0, 0, 0, .22);
    height: 74px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; }

.logo a { display: flex; align-items: center; gap: .75rem; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: .04em;
}
.logo-tag {
    font-size: .58rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-top: .35rem;
}

.main-nav ul { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a {
    position: relative;
    font-size: .74rem;
    font-weight: 400;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .86);
    padding-block: .4rem;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    letter-spacing: .08em;
    color: var(--gold-pale);
}
.header-phone svg { width: 15px; height: 15px; fill: currentColor; }
.header-cta .btn { padding: .78rem 1.6rem; font-size: .7rem; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1200;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 1.5px;
    margin: 6px auto;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 3rem) 0 5rem;
    overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 24, 19, .72) 0%, rgba(9, 24, 19, .48) 42%, rgba(9, 24, 19, .82) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero .eyebrow { color: var(--gold-pale); }
.hero .eyebrow::before { background: var(--gold-pale); }
.hero h1 { color: var(--white); margin-bottom: .5em; text-shadow: 0 2px 30px rgba(0, 0, 0, .3); }
.hero p { font-size: 1.16rem; color: rgba(255, 255, 255, .88); max-width: 620px; }
.hero .btn-row { margin-top: 2.2rem; }

.hero-facts {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2.6rem;
    margin-top: 3.4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.hero-fact { color: rgba(255, 255, 255, .82); }
.hero-fact strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: .3rem;
}
.hero-fact span { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; }

/* page hero (interior pages) */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58vh;
    padding: calc(var(--header-h) + 3.5rem) 0 4rem;
    overflow: hidden;
}
.page-hero .hero-media::after {
    background: linear-gradient(180deg, rgba(9, 24, 19, .74) 0%, rgba(9, 24, 19, .58) 60%, rgba(9, 24, 19, .78) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 3.7rem); }
.page-hero p { color: rgba(255, 255, 255, .86); font-size: 1.1rem; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--gold-pale); }
.page-hero .eyebrow::before { background: var(--gold-pale); }

.breadcrumb {
    position: relative; z-index: 2;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-top: 1.6rem;
}
.breadcrumb a { color: rgba(255, 255, 255, .78); }
.breadcrumb a:hover { color: var(--gold-pale); }

/* ---------- Split / intro ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; isolation: isolate; }
.split-media img { position: relative; z-index: 1; border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.split-media::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    z-index: 0;
}
.split-media.frame-left::after { inset: 18px 18px -18px -18px; }

.stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    margin-top: 2.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--stone);
}
.stat-strip div strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--forest-700);
    line-height: 1;
}
.stat-strip div span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: clamp(1.6rem, 3vw, 2.4rem);
}
.card {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.22, .61, .36, 1); }
.card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 1.9rem 1.8rem 2.1rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-price {
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: .9rem;
}
.card-body p { color: var(--muted); font-size: .97rem; }
.card-link {
    margin-top: auto;
    padding-top: 1.1rem;
    font-size: .73rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--forest-700);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}
.card-link::after { content: "→"; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(5px); }

/* feature list (icon rows) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.8rem, 3vw, 2.8rem);
}
.feature {
    text-align: center;
    padding: 2.2rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    transition: transform var(--transition), border-color var(--transition);
}
.feature:hover { transform: translateY(-5px); border-color: var(--gold); }
.feature-icon {
    width: 54px; height: 54px;
    margin: 0 auto 1.1rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-deep);
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.feature h3 { font-size: 1.28rem; margin-bottom: .45rem; }
.feature p { font-size: .95rem; color: var(--muted); margin-bottom: 0; }

.section-forest .feature { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .14); }
.section-forest .feature h3 { color: var(--white); }
.section-forest .feature p { color: rgba(255, 255, 255, .72); }
.section-forest .feature-icon { border-color: var(--gold-pale); color: var(--gold-pale); }

/* ---------- Price menu ---------- */
.menu-block { margin-bottom: 3.4rem; }
.menu-block > h3 {
    padding-bottom: .8rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--gold);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.menu-block > h3 small {
    font-family: var(--font-body);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .4rem 1.4rem;
    align-items: baseline;
    padding: 1.05rem 0;
    border-bottom: 1px dotted var(--stone);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item h4 { margin: 0; font-family: var(--font-display); font-size: 1.3rem; }
.menu-item .price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-deep);
    white-space: nowrap;
}
.menu-item p {
    grid-column: 1 / -1;
    margin: .15rem 0 0;
    font-size: .95rem;
    color: var(--muted);
}
.menu-note {
    background: var(--white);
    border-left: 2px solid var(--gold);
    padding: 1.4rem 1.6rem;
    font-size: .95rem;
    color: var(--muted);
}
.menu-note p:last-child { margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.8rem;
}
.testimonial {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    padding: 2.2rem 1.9rem;
}
.testimonial .stars { color: var(--gold-pale); letter-spacing: .22em; font-size: .9rem; margin-bottom: 1rem; }
.testimonial blockquote {
    margin: 0 0 1.3rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .93);
}
.testimonial cite {
    font-style: normal;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: 1.2rem; }
.gallery-grid figure {
    margin: 0 0 1.2rem;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
}
.gallery-grid img { width: 100%; transition: transform 1s cubic-bezier(.22, .61, .36, 1); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2.4rem 1.2rem .9rem;
    background: linear-gradient(180deg, transparent, rgba(9, 24, 19, .82));
    color: var(--white);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(8, 20, 16, .94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4vh 5vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 24px; right: 30px;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    text-align: center;
    overflow: hidden;
}
.cta-band .hero-media::after { background: rgba(11, 30, 24, .8); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255, 255, 255, .84); max-width: 620px; margin-inline: auto; font-size: 1.08rem; }
.cta-band .btn-row { margin-top: 2rem; }

/* ---------- Contact / forms ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}
.info-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.info-list li {
    display: flex;
    gap: 1.1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--stone);
    margin: 0;
}
.info-list li:first-child { padding-top: 0; }
.info-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold-deep);
}
.info-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.info-list strong {
    display: block;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .25rem;
    font-weight: 500;
}
.info-list span, .info-list a { font-size: 1.02rem; color: var(--ink); }
.info-list a:hover { color: var(--gold-deep); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
    text-align: left;
    padding: .72rem 0;
    border-bottom: 1px dotted var(--stone);
    font-size: .98rem;
    font-weight: 300;
}
.hours-table th { font-weight: 500; color: var(--ink); }
.hours-table td { text-align: right; color: var(--muted); }

.form-card {
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    padding: clamp(1.8rem, 3.5vw, 2.8rem);
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
    display: block;
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .4rem;
    font-weight: 500;
}
.contact-form .field { margin-bottom: 1.15rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: .92rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(194, 160, 91, .16);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { width: 100%; margin-top: .4rem; }
.form-hint { font-size: .82rem; color: var(--muted); margin: 1rem 0 0; }

.map-embed {
    border: 1px solid var(--stone);
    border-radius: var(--radius);
    overflow: hidden;
    line-height: 0;
}
.map-embed iframe { width: 100%; height: 420px; border: 0; }

/* ---------- FAQ ---------- */
.faq-item {
    border-bottom: 1px solid var(--stone);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.28rem;
    color: var(--forest-900);
    transition: color var(--transition);
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q::after {
    content: "+";
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-deep);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.faq-a p { padding-bottom: 1.4rem; margin: 0; color: var(--muted); }
.faq-a p + p { padding-top: 0; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { position: relative; padding-top: 3.4rem; }
.step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute;
    top: 0; left: 0;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}
.step h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Footer ---------- */
footer {
    background: var(--forest-900);
    color: rgba(255, 255, 255, .75);
    padding: clamp(3.5rem, 6vw, 5rem) 0 1.8rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.6rem;
    padding-bottom: 2.8rem;
}
.footer-section h3 {
    color: var(--white);
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
}
.footer-section p { font-size: .95rem; line-height: 1.85; margin-bottom: .8rem; }
.footer-section a { color: rgba(255, 255, 255, .75); }
.footer-section a:hover { color: var(--gold-pale); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; font-size: .95rem; }
.footer-brand .logo-name { font-size: 1.7rem; }
.footer-brand p { max-width: 330px; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: var(--forest-900); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 1.8rem;
    text-align: center;
    font-size: .86rem;
    color: rgba(255, 255, 255, .55);
}
.footer-bottom p { margin-bottom: .5rem; }
.footer-partner { font-size: .84rem; color: rgba(255, 255, 255, .6); }
.footer-partner a { color: var(--gold-pale); }
.footer-partner a:hover { color: var(--white); }

/* ---------- Floating call button ---------- */
.floating-call {
    position: fixed;
    right: 20px; bottom: 20px;
    z-index: 900;
    display: none;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.5rem;
    background: var(--forest-700);
    color: var(--white);
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.floating-call svg { width: 16px; height: 16px; fill: currentColor; }
.floating-call:hover { background: var(--gold); color: var(--forest-900); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s cubic-bezier(.22, .61, .36, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .main-nav ul { gap: 1.3rem; }
    .main-nav a { font-size: .7rem; letter-spacing: .12em; }
    .header-phone { display: none; }
}

@media (max-width: 900px) {
    :root { --header-h: 72px; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        inset: 0;
        height: 100dvh;
        background: var(--forest-900);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 1100;
    }
    .main-nav.open { transform: none; }
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .main-nav a { font-size: 1rem; letter-spacing: .2em; }
    .header-cta .btn { display: none; }
    .split { grid-template-columns: 1fr; }
    .split.reverse .split-media { order: 0; }
    .split-media::after { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .floating-call { display: inline-flex; }
    body { padding-bottom: 0; }
}

@media (max-width: 620px) {
    body { font-size: 16px; }
    .hero { min-height: 88vh; }
    .hero-facts { gap: 1.6rem; }
    .hero-fact strong { font-size: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { columns: 1; }
    .btn { width: 100%; }
    .btn-row { flex-direction: column; }
    .logo-name { font-size: 1.25rem; }
    .logo-tag { font-size: .52rem; letter-spacing: .26em; }
    .menu-item { grid-template-columns: 1fr; }
    .menu-item .price { justify-self: start; }
    .stat-strip { gap: 1.6rem; }
}
