:root {
    --bg: #f7f2ec;
    --bg-alt: #ffffff;
    --bg-deep: #2d3a2e;
    --bg-soft: #e7ddd1;
    --line: rgba(45, 58, 46, 0.12);
    --line-strong: rgba(45, 58, 46, 0.22);
    --text: #2d3a2e;
    --text-muted: #5f6b60;
    --text-dim: #8a9489;
    --text-light: #f7f2ec;
    --accent: #b8856a;
    --accent-deep: #8c5e44;
    --sage: #94a48e;
    --rose: #e2c8c2;
    --radius: 4px;
    --radius-lg: 12px;
    --maxw: 1200px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text);
}
h1 { font-size: clamp(2.75rem, 6vw, 4.75rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }

p { color: var(--text-muted); font-size: 0.98rem; }

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 1.25rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(247, 242, 236, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
}
.site-nav {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    letter-spacing: -0.01em;
}
.brand-mark {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
}
.brand-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sage);
    border-radius: 50%;
    transform: scale(0.5) translate(60%, 60%);
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
.nav-list a {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius);
    transition: color 0.18s;
    letter-spacing: 0.04em;
}
.nav-list a:hover { color: var(--text); }
.nav-list a.active { color: var(--accent); }
.nav-cta {
    background: var(--text) !important;
    color: var(--text-light) !important;
    padding: 0.7rem 1.25rem !important;
    border-radius: 999px;
    letter-spacing: 0.05em !important;
}
.nav-cta:hover { background: var(--accent) !important; color: var(--text-light) !important; }
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-strong);
    color: var(--text);
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 1.65rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s, background 0.18s, color 0.18s, border-color 0.18s;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.btn-primary { background: var(--text); color: var(--text-light); }
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--text-light); }

/* Hero */
.hero {
    padding: 5rem 0 5rem;
    background: var(--bg);
    position: relative;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero-text h1 {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}
.hero-text h1 .accent { font-style: normal; color: var(--accent); }
.hero-lede { font-size: 1.1rem; max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-visual {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(45, 58, 46, 0) 30%, rgba(45, 58, 46, 0.5) 100%),
        linear-gradient(135deg, var(--sage) 0%, var(--bg-deep) 100%);
    position: relative;
    overflow: hidden;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(226, 200, 194, 0.35), transparent 55%),
        repeating-linear-gradient(40deg, transparent 0 22px, rgba(247, 242, 236, 0.05) 22px 23px);
}
.hero-quote {
    position: absolute;
    bottom: 1.75rem;
    left: 1.75rem;
    right: 1.75rem;
    color: var(--text-light);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.35;
}
.hero-quote-meta {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-top: 0.85rem;
    display: block;
}

/* Section */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-soft { background: var(--bg-soft); }
.section-deep { background: var(--bg-deep); color: var(--text-light); }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--text-light); }
.section-deep p { color: rgba(247, 242, 236, 0.75); }
.section-deep .eyebrow { color: var(--rose); }
.section-head { margin-bottom: 3rem; max-width: 700px; }
.section-head.center { margin: 0 auto 3rem; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* Treatment cards (preview) */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.preview-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform 0.25s, border-color 0.25s;
}
.preview-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.preview-symbol {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
.preview-card h3 { font-size: 1.45rem; font-style: italic; }
.preview-card p { font-size: 0.95rem; margin-top: 0.4rem; }

/* Treatment list */
.treatment-list { display: flex; flex-direction: column; gap: 1rem; }
.treatment {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color 0.18s, background 0.18s;
}
.treatment:hover { border-color: var(--accent); background: var(--bg); }
.treatment-name h3 {
    font-style: italic;
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}
.treatment-name p { font-size: 0.92rem; margin: 0; }
.treatment-meta {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    white-space: nowrap;
}
.treatment-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text);
    white-space: nowrap;
}

.category-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 3rem 0 1.5rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.85rem;
}
.category-head h2 { font-size: 1.85rem; font-style: italic; margin: 0; }
.category-head span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Gift cards */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gift-card {
    background:
        linear-gradient(180deg, var(--rose) 0%, var(--bg-soft) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 5 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.gift-card.sage { background: linear-gradient(180deg, var(--sage) 0%, var(--bg-deep) 100%); color: var(--text-light); }
.gift-card.bronze { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%); color: var(--text-light); }
.gift-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
}
.gift-name {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
}
.gift-desc { font-size: 0.92rem; margin-top: 0.4rem; opacity: 0.8; }

/* Booking steps */
.booking-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.booking-progress {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.progress-step {
    flex: 1;
    height: 4px;
    background: var(--bg-soft);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.progress-step.is-active { background: var(--accent); }
.progress-step.is-done { background: var(--accent-deep); }

.booking-step { display: none; }
.booking-step.is-active { display: block; }
.booking-step h2 { font-style: italic; font-size: 1.85rem; }
.booking-step p.lede { margin-bottom: 2rem; }

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.choice {
    padding: 1.2rem 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--bg);
    transition: all 0.18s;
}
.choice:hover { border-color: var(--accent); }
.choice.is-selected { border-color: var(--accent); background: var(--bg-soft); }
.choice h4 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.choice p { font-size: 0.85rem; margin: 0; }

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}
.date-cell {
    aspect-ratio: 1;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.15s;
}
.date-cell:hover { border-color: var(--accent); }
.date-cell.is-selected { background: var(--accent); color: var(--text-light); border-color: var(--accent); }
.date-cell.is-disabled { opacity: 0.35; pointer-events: none; }

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
}
.time-cell {
    padding: 0.6rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    font-size: 0.88rem;
    transition: all 0.15s;
}
.time-cell:hover { border-color: var(--accent); }
.time-cell.is-selected { background: var(--accent); color: var(--text-light); border-color: var(--accent); }

.booking-actions { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.field label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
}
.field input, .field select, .field textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    color: var(--text);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.field textarea { min-height: 100px; resize: vertical; }

.booking-summary {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.summary-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.92rem; }
.summary-row.total { padding-top: 0.85rem; border-top: 1px solid var(--line); font-family: var(--font-display); font-size: 1.3rem; }

/* Form (contact) */
.form-wrap {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-msg {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    background: var(--bg-soft);
    border: 1px solid var(--accent);
    color: var(--accent-deep);
    font-size: 0.9rem;
    display: none;
}
.form-msg.is-visible { display: block; }

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

/* Footer */
.site-footer {
    background: var(--bg-deep);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}
.site-footer .brand { color: var(--text-light); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-grid h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-grid a, .footer-grid p {
    color: rgba(247, 242, 236, 0.75);
    font-size: 0.9rem;
    transition: color 0.18s;
}
.footer-grid a:hover { color: var(--rose); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(247, 242, 236, 0.1);
    font-size: 0.82rem;
    color: rgba(247, 242, 236, 0.55);
    flex-wrap: wrap;
    gap: 1rem;
}
.demo-badge a { color: var(--rose); }
.demo-badge a:hover { color: var(--text-light); }

/* Page hero */
.page-hero {
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 {
    font-style: italic;
    margin-bottom: 0.75rem;
}
.page-hero p {
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
}

@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { aspect-ratio: 16 / 11; }
    .preview-grid, .gift-grid { grid-template-columns: 1fr; }
    .treatment { grid-template-columns: 1fr; gap: 0.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .choice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .nav-toggle { display: inline-flex; }
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem;
        gap: 0.25rem;
        display: none;
    }
    .nav-list.is-open { display: flex; }
    .site-nav { position: relative; }
    .footer-grid { grid-template-columns: 1fr; }
    .date-grid { grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
    .time-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Image overlays */
.media-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
