/* ════════════════════════════════════════════════════════════════════════════
   Body & Soul by Ari — Main Stylesheet
   Warm spa aesthetic: cream, rose, pink, Cormorant Garamond + Lato
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --cream:        #faf8f5;
    --cream-warm:   #f5f0e8;
    --rose:         #c46b8a;
    --rose-dark:    #a85673;
    --rose-light:   #d98da6;
    --pink:         #d4728c;
    --pink-light:   #e8a0b4;
    --coral:        #c87060;
    --coral-light:  #d98878;
    --sand:         #c4a882;
    --text:         #2a2520;
    --text-muted:   #7a6f65;
    --text-light:   #a09488;
    --border:       #e8e0d5;
    --border-warm:  #d5c9b8;
    --white:        #ffffff;
    --shadow-sm:    0 1px 3px rgba(42,37,32,.08);
    --shadow-md:    0 4px 16px rgba(42,37,32,.10);
    --shadow-lg:    0 8px 32px rgba(42,37,32,.12);
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Lato', system-ui, sans-serif;
    --radius:       10px;
    --radius-sm:    6px;
    --radius-lg:    16px;
    --transition:   0.22s ease;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-dark); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: .75rem;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section {
    padding: 5rem 0;
}
.section.bg-warm {
    background: var(--cream-warm);
}
.text-center { text-align: center; }
.section-sub {
    max-width: 600px;
    margin: .75rem auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .72rem 1.75rem;
    border-radius: 40px;
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-rose {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.btn-rose:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: var(--white); }
/* Keep btn-teal as alias for compatibility */
.btn-teal {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.btn-teal:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-ghost {
    background: transparent;
    color: var(--rose);
    border-color: var(--rose);
}
.btn-ghost:hover { background: var(--rose); color: var(--white); }
.btn-danger {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}
.btn-danger:hover { background: #b5604f; border-color: #b5604f; color: var(--white); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .82rem; }
.btn-full { width: 100%; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(250,248,245,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-logo {
    height: 55px;
    width: auto;
}
.brand-body {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: .02em;
}
.brand-by {
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: .06em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
    background: var(--rose);
    color: var(--white) !important;
    padding: .5rem 1.3rem;
    border-radius: 30px;
}
.nav-cta:hover { background: var(--rose-dark) !important; color: var(--white) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: #2a2520;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom right, rgba(60,25,40,.55), rgba(80,50,45,.35));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 1.5rem;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}
.hero-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    margin-bottom: 1rem;
}
.hero-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-style: italic;
    text-shadow: 0 2px 20px rgba(0,0,0,.25);
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.9);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.hero-content .btn { margin: .4rem .5rem; }

/* ── Page hero ────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #8a4060 0%, #c46b8a 100%);
    padding: 5rem 1.5rem;
    color: var(--white);
}
.page-hero .eyebrow { color: rgba(255,255,255,.75); }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .hero-sub { color: rgba(255,255,255,.88); }
.page-hero.short { padding: 3.5rem 1.5rem; }

/* ── Two column ───────────────────────────────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-text h2 { margin-bottom: 1rem; }
.col-text p  { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }

/* ── Image frame ──────────────────────────────────────────────────────────── */
.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    background: var(--cream-warm);
    box-shadow: var(--shadow-lg);
}
.image-frame.tall { aspect-ratio: 3/4; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream-warm), #e8ddd0);
    font-size: 4rem;
    color: var(--sand);
}

/* ── Service cards ────────────────────────────────────────────────────────── */
.cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card.featured {
    border-color: var(--rose);
    box-shadow: 0 4px 24px rgba(196,107,138,.2);
}
.card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rose);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .9rem;
    border-radius: 20px;
}
.card-icon { font-size: 2rem; color: var(--rose); margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .5rem; }
.price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--rose);
    margin: .5rem 0 1rem;
}
.price-sub {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: -.5rem;
    margin-bottom: 1rem;
}
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.5rem; }

/* ── Steps ────────────────────────────────────────────────────────────────── */
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.step { text-align: center; }
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.step h4 { margin-bottom: .5rem; }
.step p  { color: var(--text-muted); font-size: .95rem; }

/* ── Benefit list ─────────────────────────────────────────────────────────── */
.benefit-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
}
.benefit-list li {
    padding: .45rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.5;
}
.benefit-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--rose);
    font-weight: 700;
}

/* ── Benefits grid ────────────────────────────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}
.benefit-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-block:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon { font-size: 1.75rem; color: var(--rose); margin-bottom: 1rem; }
.benefit-block h3 { margin-bottom: .6rem; font-size: 1.25rem; }
.benefit-block p  { color: var(--text-muted); font-size: .93rem; line-height: 1.7; }

/* ── Service detail cards ─────────────────────────────────────────────────── */
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.service-detail-card.featured-card { border-color: var(--rose); }
.sd-badge {
    background: var(--rose);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1.2rem;
    display: inline-block;
}
.sd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--cream-warm);
    gap: 1rem;
}
.sd-header h2 { font-size: 2rem; margin-bottom: .2rem; }
.sd-header p  { color: var(--text-muted); }
.sd-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--rose);
    white-space: nowrap;
}
.sd-body {
    padding: 2rem;
}
.sd-body p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.sd-body ul { list-style: disc; padding-left: 1.5rem; color: var(--text-muted); }
.sd-body li { padding: .3rem 0; }
.sd-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

/* ── Pricing table inside detail cards ────────────────────────────────────── */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: .5rem 0;
}
.pricing-table td {
    padding: .55rem 0;
    font-size: .95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--rose);
    font-family: var(--font-serif);
    font-size: 1.15rem;
}

/* ── Techniques grid ──────────────────────────────────────────────────────── */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}
.technique {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.technique h4 { color: var(--rose); margin-bottom: .5rem; }
.technique p  { color: var(--text-muted); font-size: .93rem; }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, #8a4060 0%, #c46b8a 100%);
    color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1.1rem; }

/* ── Info callout ─────────────────────────────────────────────────────────── */
.info-callout {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--rose);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.info-callout strong { color: var(--text); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: #2a2520;
    color: rgba(255,255,255,.8);
    padding: 4rem 0 0;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo { height: 48px; width: auto; margin-bottom: .75rem; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-links {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-links a:hover { color: var(--rose-light); }
.footer-contact p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.8; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.25rem 1.5rem;
    text-align: center;
    max-width: 100%;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* ── Alert ────────────────────────────────────────────────────────────────── */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.alert-error ul { list-style: disc; padding-left: 1.25rem; }
.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

/* ── Forms ────────────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: var(--text);
    letter-spacing: .03em;
}
.form-control {
    width: 100%;
    padding: .72rem 1rem;
    border: 1.5px solid var(--border-warm);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(196,107,138,.18);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 90px; }
.field-hint {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: .3rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
}
.form-grid .full-width { grid-column: 1 / -1; }

/* ── Booking page ─────────────────────────────────────────────────────────── */
.booking-wrap {
    max-width: 680px;
}
.booking-steps {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.bs-step {
    flex: 1;
    padding: .75rem 1rem;
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-light);
    background: var(--white);
    border-right: 1px solid var(--border);
    transition: all var(--transition);
}
.bs-step:last-child { border-right: none; }
.bs-step.active {
    background: var(--rose);
    color: var(--white);
}
.bs-step.completed {
    background: var(--cream-warm);
    color: var(--rose);
}
.bs-step span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    font-size: .75rem;
    line-height: 20px;
    text-align: center;
    margin-right: .4rem;
}
.bs-step.active span { background: rgba(255,255,255,.4); }

.booking-step h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.booking-step.hidden { display: none; }
.step-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}
.step-desc { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Service type cards */
.service-type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.service-type-card {
    cursor: pointer;
    border: 2px solid var(--border-warm);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-type-card input { position: absolute; opacity: 0; pointer-events: none; }
.service-type-card:hover { border-color: var(--rose-light); box-shadow: var(--shadow-md); }
.service-type-card.selected { border-color: var(--rose); box-shadow: 0 4px 16px rgba(196,107,138,.25); }
.stc-inner { padding: 1.25rem 1rem; text-align: center; }
.stc-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.stc-desc { font-size: .78rem; color: var(--text-muted); }

/* Duration cards */
.duration-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.duration-card {
    cursor: pointer;
    border: 2px solid var(--border-warm);
    border-radius: var(--radius);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.duration-card input { position: absolute; opacity: 0; pointer-events: none; }
.duration-card:hover { border-color: var(--rose-light); box-shadow: var(--shadow-md); }
.duration-card.selected { border-color: var(--rose); box-shadow: 0 4px 16px rgba(196,107,138,.25); }
.dc-inner { padding: 1.75rem 1.5rem; text-align: center; }
.dc-badge {
    display: inline-block;
    background: var(--rose);
    color: var(--white);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .7rem;
    border-radius: 10px;
    margin-bottom: .75rem;
}
.dc-title { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.dc-price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--rose);
    margin-bottom: .5rem;
}
.dc-desc { font-size: .85rem; color: var(--text-muted); }

/* Date & time slots */
.date-picker-wrap { margin-bottom: 2rem; }
.date-picker-wrap label { display: block; font-weight: 700; margin-bottom: .5rem; }
.time-slots-wrap label { display: block; font-weight: 700; margin-bottom: .75rem; }
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.slot-btn {
    padding: .55rem 1.1rem;
    border: 1.5px solid var(--border-warm);
    border-radius: 30px;
    background: var(--white);
    color: var(--text);
    font-size: .9rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition);
}
.slot-btn:hover { border-color: var(--rose); color: var(--rose); }
.slot-btn.selected {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    font-weight: 700;
}
#slots-loading { color: var(--text-muted); font-style: italic; padding: .5rem 0; }
.selected-summary {
    margin-top: 1rem;
    padding: .75rem 1rem;
    background: var(--cream-warm);
    border-radius: var(--radius-sm);
    font-size: .9rem;
    color: var(--text);
}

/* Booking summary box */
.booking-summary {
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.booking-summary h4 {
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.bs-row {
    display: flex;
    justify-content: space-between;
    padding: .4rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
}
.bs-row:last-child { border-bottom: none; }
.bs-row span { color: var(--text-muted); }
.bs-row strong { color: var(--text); }

/* ── Success / Cancelled ──────────────────────────────────────────────────── */
.success-wrap { max-width: 600px; margin: 0 auto; padding: 4rem 1.5rem; }
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}
.success-icon.cancelled { background: var(--text-muted); }
.success-wrap h1 { margin-bottom: 1rem; }
.confirmation-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-top: 2rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
}
.confirmation-box h3 {
    font-family: var(--font-sans);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.conf-row {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .93rem;
}
.conf-row:last-child { border-bottom: none; }
.conf-row span { color: var(--text-muted); }

/* ── Intro section ────────────────────────────────────────────────────────── */
.intro-section { overflow: hidden; }

/* ── Hidden ───────────────────────────────────────────────────────────────── */
.hidden { display: none !important; }
.text-muted { color: var(--text-muted); }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .navbar { position: relative; }

    .two-col,
    .two-col.reverse { grid-template-columns: 1fr; direction: ltr; }
    .two-col.reverse { direction: ltr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .duration-cards { grid-template-columns: 1fr; }
    .service-type-cards { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .sd-header { flex-direction: column; }
    .booking-steps { flex-direction: column; }
    .bs-step { border-right: none; border-bottom: 1px solid var(--border); }
    .bs-step:last-child { border-bottom: none; }
    .step-nav { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 0; }
    .hero { min-height: 70vh; }
}
