/* ==========================================================================
   Rio Grande Spa — chinatownmassagespa.com
   Back Rub · Foot Reflexology — 115 Mott St, New York, NY 10013 (Chinatown)
   Design system: espresso wood + champagne gold + cherry-blossom blush
   (shared visual language with the Ann Street and 87th Street locations)
   ========================================================================== */

:root {
    --espresso:      #171210;
    --walnut:        #241b16;
    --walnut-soft:   #33261e;
    --ink:           #2b2320;
    --body:          #574b44;
    --muted:         #8a7c73;

    --cream:         #faf6f0;
    --sand:          #f1e8dc;
    --sand-deep:     #e5d8c7;
    --white:         #ffffff;

    --gold:          #c8a35e;
    --gold-bright:   #e0c288;
    --gold-deep:     #9c7b3d;
    --blush:         #e6c3c4;
    --blush-soft:    #f6e7e5;

    --line:          rgba(23, 18, 16, 0.12);
    --line-light:    rgba(255, 255, 255, 0.16);

    --font-display:  'Cormorant Garamond', 'Times New Roman', serif;
    --font-body:     'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

    --shadow-sm:     0 6px 20px rgba(23, 18, 16, 0.07);
    --shadow-md:     0 18px 46px rgba(23, 18, 16, 0.12);
    --shadow-lg:     0 30px 80px rgba(23, 18, 16, 0.20);

    --radius:        4px;
    --radius-lg:     10px;
    --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --header-h:      86px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--body);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.16;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.15rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: var(--espresso); }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; }

/* ---------- Shared typographic pieces ---------- */
.eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1.1rem;
}
.eyebrow.centered { text-align: center; }
.section-dark .eyebrow,
.hero .eyebrow { color: var(--gold-bright); }

.lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--ink);
    font-weight: 300;
}

.section-head { margin-bottom: 3.4rem; }
.section-head.centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-head p { color: var(--body); font-size: 1.08rem; }

.rule {
    width: 54px; height: 1px;
    background: var(--gold);
    margin: 1.6rem 0;
}
.rule.centered { margin-left: auto; margin-right: auto; }

/* ---------- Sections ---------- */
section { position: relative; }
.section-cream { background: var(--cream); padding: 6rem 0; }
.section-sand  { background: var(--sand); padding: 6rem 0; }
.section-white { background: var(--white); padding: 6rem 0; }
.section-dark  { background: var(--walnut); padding: 6rem 0; color: rgba(255, 255, 255, 0.78); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .lead { color: rgba(255, 255, 255, 0.88); }
.section-tight { padding: 4rem 0; }

.section-dark::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(200, 163, 94, 0.10), transparent 55%);
    pointer-events: none;
}
.section-dark > * { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 2.1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--espresso); transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: rgba(23, 18, 16, 0.28);
}
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

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

.btn-dark {
    background: var(--walnut);
    color: var(--white);
    border-color: var(--walnut);
}
.btn-dark:hover { background: var(--espresso); color: var(--gold-bright); }

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    border-bottom: 1px solid rgba(156, 123, 61, 0.35);
    padding-bottom: 3px;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }
.section-dark .text-link { color: var(--gold-bright); border-color: rgba(224, 194, 136, 0.4); }
.section-dark .text-link:hover { color: var(--white); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header .container {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    height: var(--header-h);
    max-width: 1460px;
}

.site-header.scrolled,
.site-header.solid {
    background: rgba(23, 18, 16, 0.96);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo { flex-shrink: 0; }
.logo a { display: flex; align-items: center; gap: 0.7rem; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
}
.logo-tag {
    font-size: 0.56rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-top: 3px;
}
.logo a:hover .logo-name { color: var(--gold-bright); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 1.55rem; }
.main-nav a {
    position: relative;
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.4rem 0;
}
.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: 1rem; flex-shrink: 0; }
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--gold-bright);
}
.header-phone svg { width: 15px; height: 15px; fill: currentColor; }
.header-phone:hover { color: var(--white); }
.header-cta .btn { padding: 0.78rem 1.5rem; font-size: 0.7rem; }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    min-height: 90dvh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 5rem) 0 5rem;
    overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(to top, rgba(15, 11, 9, 0.90) 0%, rgba(15, 11, 9, 0.55) 45%, rgba(15, 11, 9, 0.45) 100%);
}
.hero-content { position: relative; z-index: 2; color: rgba(255, 255, 255, 0.9); max-width: 780px; }
.hero-content h1 { color: var(--white); margin-bottom: 1.4rem; font-weight: 300; }
.hero-content h1 em { font-style: italic; color: var(--gold-bright); }
.hero-content > p { font-size: 1.14rem; color: rgba(255, 255, 255, 0.86); max-width: 620px; }

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 2.6rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-fact strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold-bright);
    line-height: 1;
}
.hero-fact span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

/* Inner-page compact hero */
.page-hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 4rem) 0 4rem;
    overflow: hidden;
    text-align: center;
}
.page-hero .hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(15, 11, 9, 0.72), rgba(15, 11, 9, 0.82));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-weight: 300; }
.page-hero p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 680px;
    margin: 1.3rem auto 0;
    font-size: 1.1rem;
}

/* ---------- Announcement bar ---------- */
.promo-bar {
    background: var(--gold);
    color: var(--espresso);
    text-align: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.promo-bar strong { font-weight: 600; }

/* ---------- Split layout ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.split-media.framed::before {
    content: '';
    position: absolute;
    top: 22px; left: -22px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.stat-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
}
.stat-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gold-deep);
    line-height: 1;
}
.stat-strip span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Cards ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.2rem;
}
.card-grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    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 { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 2rem 1.9rem 2.1rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.85rem; }
.card-body p { color: var(--body); font-size: 1rem; }
.card-body .text-link { margin-top: auto; padding-top: 1.4rem; align-self: flex-start; }
.card-meta {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.7rem;
}

/* ---------- Feature grid (icon list) ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.6rem;
}
.feature { text-align: left; }
.feature-icon {
    width: 46px; height: 46px;
    margin-bottom: 1.2rem;
    color: var(--gold);
}
.feature-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.1; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.feature p { font-size: 0.98rem; }

/* ---------- Highlight / popular treatments ---------- */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
}
.highlight {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}
.highlight:hover { border-color: var(--gold); transform: translateY(-4px); }
.highlight h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.highlight .price {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}
.highlight p { font-size: 0.96rem; color: var(--body); }

/* ---------- Price tables ---------- */
.menu-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 2.6rem 2.4rem;
    margin-bottom: 2.2rem;
}
.menu-block:last-child { margin-bottom: 0; }
.menu-block > h3 { margin-bottom: 0.6rem; }
.menu-block > p { color: var(--body); font-size: 1rem; margin-bottom: 1.6rem; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table caption {
    text-align: left;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 0.9rem;
}
.price-table th {
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 0 0.8rem;
    border-bottom: 1px solid var(--line);
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.02rem;
    color: var(--ink);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold-deep);
    white-space: nowrap;
}
.price-table td small { display: block; font-size: 0.86rem; color: var(--muted); margin-top: 2px; }

.price-note {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 1.4rem;
}

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 2.2rem; }

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.2rem; }
.package {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    padding: 2.6rem 2.2rem;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color var(--transition), background var(--transition);
}
.package:hover { border-color: var(--gold); background: rgba(200, 163, 94, 0.08); }
.package h3 { margin-bottom: 1.4rem; font-size: 1.5rem; }
.package ul { margin-bottom: 1.6rem; }
.package li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.45rem 0;
    font-size: 0.99rem;
    color: rgba(255, 255, 255, 0.78);
}
.package li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.package-price strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold-bright);
    line-height: 1;
}
.package-price span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Checklist ---------- */
.check-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0.4rem 2.4rem; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.55rem 0;
    font-size: 1.01rem;
}
.check-list li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 6px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

/* ---------- Steps ---------- */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.4rem; counter-reset: step; }
.step { counter-increment: step; }
.step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.22rem; margin-bottom: 0.55rem; }
.step p { font-size: 0.97rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
}
.gallery-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: zoom-in;
    background: var(--sand-deep);
}
.gallery-grid figure img {
    width: 100%; height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.9s ease;
}
.gallery-grid figure.tall img { aspect-ratio: 3 / 4; }
.gallery-grid figure.wide { grid-column: span 2; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 2.4rem 1.4rem 1.2rem;
    background: linear-gradient(to top, rgba(15, 11, 9, 0.85), transparent);
    color: var(--white);
    font-size: 0.86rem;
    letter-spacing: 0.03em;
}

.lightbox {
    position: fixed; inset: 0;
    z-index: 2000;
    background: rgba(12, 9, 8, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 1.4rem; right: 1.8rem;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

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

/* ---------- Forms ---------- */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.8rem 2.6rem;
}
.form-card h2,
.form-card h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.form-card > p { color: var(--body); font-size: 0.99rem; margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.55rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-card button[type="submit"] { width: 100%; margin-top: 0.6rem; }
.form-hint { font-size: 0.85rem; color: var(--muted); margin-top: 1rem; text-align: center; }

/* ---------- Contact info ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: start; }
.info-list { margin-top: 2rem; }
.info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}
.info-item:last-child { border-bottom: none; }
.info-icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 4px; color: var(--gold-deep); }
.info-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; }
.info-item h4 {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.info-item p, .info-item a { font-size: 1.06rem; color: var(--ink); line-height: 1.6; }
.info-item a:hover { color: var(--gold-deep); }

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    line-height: 0;
}
.map-frame iframe { width: 100%; height: 380px; border: 0; }

.location-block { margin-bottom: 3.4rem; }
.location-block:last-child { margin-bottom: 0; }
.location-block h3 { margin-bottom: 0.6rem; }
.location-block > p { color: var(--body); margin-bottom: 1.6rem; }
.location-block .map-frame { margin-bottom: 0; }

/* ---------- Newsletter ---------- */
.newsletter { text-align: center; }
.newsletter h2 { margin-bottom: 1rem; }
.newsletter p { max-width: 620px; margin-left: auto; margin-right: auto; }
.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 560px;
    margin: 2.2rem auto 0;
}
.newsletter-form input[type="email"] {
    flex: 1 1 260px;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.12); }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    padding: 6.5rem 0;
    text-align: center;
    overflow: hidden;
}
.cta-band .hero-media { position: absolute; inset: 0; z-index: 0; }
.cta-band .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: rgba(15, 11, 9, 0.80);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ---------- Footer ---------- */
footer {
    background: var(--espresso);
    color: rgba(255, 255, 255, 0.62);
    padding: 5rem 0 2rem;
    font-size: 0.97rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.6rem; display: block; }
.footer-brand .logo-tag {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0.5rem 0 1.2rem;
}
.footer-section h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.3rem;
}
.footer-section p { margin-bottom: 0.9rem; line-height: 1.7; }
.footer-section strong { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.footer-section a { color: rgba(255, 255, 255, 0.62); }
.footer-section a:hover { color: var(--gold-bright); }
.footer-links li { margin-bottom: 0.6rem; }

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p { margin-bottom: 0.5rem; }
.footer-partner { color: rgba(255, 255, 255, 0.5); }
.footer-partner a { color: var(--gold); }
.footer-partner a:hover { color: var(--white); }

/* ---------- Floating call button ---------- */
.floating-call {
    position: fixed;
    right: 1.4rem; bottom: 1.4rem;
    z-index: 900;
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.5rem;
    background: var(--gold);
    color: var(--espresso);
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
}
.floating-call svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: none; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1320px) {
    .header-phone { display: none; }
    .main-nav ul { gap: 1.3rem; }
}

@media (max-width: 1120px) {
    .main-nav ul { gap: 1rem; }
    .main-nav a { font-size: 0.71rem; letter-spacing: 0.09em; }
    .site-header .logo-tag { display: none; }
}

@media (max-width: 1080px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 940px) {
    :root { --header-h: 72px; }

    .nav-toggle { display: flex; }
    .header-cta { margin-left: auto; }
    .header-cta .btn { display: none; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-h));
        height: calc(100dvh - var(--header-h));
        background: var(--espresso);
        padding: 2.5rem 1.5rem 4rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        margin-left: 0;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .main-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .main-nav a {
        display: block;
        padding: 1.15rem 0;
        font-size: 0.9rem;
        letter-spacing: 0.14em;
    }
    .main-nav a::after { display: none; }

    .site-header:not(.scrolled):not(.solid) { background: linear-gradient(to bottom, rgba(15, 11, 9, 0.55), transparent); }

    .split { grid-template-columns: 1fr; gap: 2.8rem; }
    .split.reverse .split-media { order: 0; }
    .split-media.framed::before { display: none; }

    .contact-layout { grid-template-columns: 1fr; gap: 2.6rem; }
    .floating-call { display: inline-flex; }
    .gallery-grid figure.wide { grid-column: span 1; }
}

@media (max-width: 700px) {
    body { font-size: 1rem; }
    .section-cream, .section-sand, .section-white, .section-dark { padding: 4rem 0; }
    .cta-band { padding: 4.5rem 0; }
    .hero { min-height: 82vh; min-height: 82dvh; padding-bottom: 3.5rem; }
    .hero-facts { gap: 1.6rem 2rem; margin-top: 2.2rem; }
    .hero-fact strong { font-size: 1.6rem; }
    .logo-name { font-size: 1.2rem; }
    .logo-mark { width: 34px; height: 34px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .menu-block { padding: 1.9rem 1.5rem; }
    .form-card { padding: 2rem 1.5rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2.2rem; }
    .price-table td { font-size: 0.97rem; }
    .price-table td.price { font-size: 1.2rem; }
    .stat-strip { gap: 1.6rem; }
    .btn { padding: 0.95rem 1.7rem; font-size: 0.73rem; }
    .btn-row .btn { flex: 1 1 auto; }
    .page-hero { min-height: 46vh; }
}


/* ---------- Skip link (accessibility) ---------- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--espresso);
    color: var(--gold-bright);
    padding: 0.9rem 1.4rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.breadcrumbs .container { padding-top: 0.9rem; padding-bottom: 0.9rem; }
.breadcrumbs a { color: var(--body); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs em { font-style: normal; color: var(--gold); margin: 0 0.15rem; }
.breadcrumbs span { color: var(--muted); }

/* ---------- Quick-answer block (AI / featured-snippet friendly) ---------- */
.answer-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    padding: 1.8rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.4rem;
}
.answer-box h2, .answer-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}
.answer-box p:last-child { margin-bottom: 0; }

/* ---------- Neighborhood / service-area chips ---------- */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.6rem;
}
.chip {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 100px;
    padding: 0.4rem 1.1rem;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    color: var(--body);
}
.section-dark .chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-light);
    color: rgba(255, 255, 255, 0.82);
}
