:root {
    --ink: #34463e;
    --ink-deep: #25352e;
    --muted: #6f7d75;
    --sage: #a9c4a1;
    --sage-dark: #657565;
    --sage-pale: #eef3eb;
    --lavender: #d2bee1;
    --lavender-pale: #f1eaf4;
    --pink: #efd9df;
    --pink-pale: #fbf0f2;
    --beige: #eee7dd;
    --cream: #fbfaf7;
    --white: #ffffff;
    --line: #dce4d8;
    --shadow: 0 22px 60px rgba(52, 70, 62, 0.12);
    --shadow-soft: 0 12px 35px rgba(52, 70, 62, 0.08);
    --radius: 24px;
    --radius-small: 14px;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    inset: auto -180px -210px auto;
    width: 520px;
    height: 620px;
    background: url('../img/orchid-watermark.svg') center/contain no-repeat;
    opacity: .045;
    pointer-events: none;
    z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sage-dark); }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink-deep); }
h1, h2 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: .98;
    letter-spacing: -.025em;
}
h1 { font-size: clamp(3.4rem, 7vw, 6.5rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.5rem, 4.7vw, 4.35rem); margin-bottom: 24px; }
h3 { line-height: 1.25; }
p:last-child { margin-bottom: 0; }
code { background: rgba(101, 117, 101, .09); border-radius: 6px; padding: 2px 6px; font-size: .9em; }

.site-shell { overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 760px); margin-inline: auto; }
.narrow-wide { width: min(calc(100% - 40px), 980px); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-soft { background: var(--sage-pale); }
.section-lavender { background: var(--lavender-pale); }
.section-pink { background: var(--pink-pale); }
.section-orchid { position: relative; isolation: isolate; }
.section-orchid::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 6% 5%, rgba(210, 190, 225, .3), transparent 26%),
        radial-gradient(circle at 95% 78%, rgba(169, 196, 161, .28), transparent 30%);
    z-index: -2;
}
.section-orchid::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 90px;
    width: 460px;
    height: 560px;
    background: url('../img/orchid-watermark.svg') center/contain no-repeat;
    opacity: .08;
    z-index: -1;
}
.eyebrow {
    margin-bottom: 15px;
    color: var(--sage-dark);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.lead { max-width: 700px; color: var(--muted); font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.7; }
.lead-small { color: var(--muted); font-size: 1.12rem; line-height: 1.75; }
.microcopy, .small-note, .table-note, .form-note, .center-note { color: var(--muted); font-size: .86rem; }
.center-note { max-width: 690px; margin: 35px auto 0; text-align: center; }
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 1000; padding: 12px 18px; background: var(--ink-deep); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 20px; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 27px;
    border: 1px solid var(--sage-dark);
    border-radius: 999px;
    color: #fff;
    background: var(--sage-dark);
    box-shadow: 0 10px 25px rgba(101, 117, 101, .2);
    font-weight: 700;
    line-height: 1.1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { color: #fff; background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(52, 70, 62, .22); }
.button-small { min-height: 44px; padding: 11px 20px; font-size: .8rem; }
.button-wide { width: 100%; }
.button-outline { color: var(--ink); background: transparent; box-shadow: none; }
.button-outline:hover { color: #fff; }
.button-light { color: var(--ink); background: #fff; border-color: #fff; }
.button-light:hover { color: var(--ink); background: var(--beige); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); border-bottom: 1px solid rgba(52,70,62,.25); font-weight: 700; padding-bottom: 3px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.center-action { margin-top: 45px; text-align: center; }

.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 22px 0; }
.site-header.is-scrolled { position: fixed; padding: 10px 0; background: rgba(251, 250, 247, .92); border-bottom: 1px solid rgba(220, 228, 216, .8); backdrop-filter: blur(18px); animation: headerDrop .3s ease; }
@keyframes headerDrop { from { transform: translateY(-100%); } }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 30px; padding: 10px 13px 10px 18px; background: rgba(255,255,255,.76); border: 1px solid rgba(220,228,216,.95); border-radius: 999px; box-shadow: 0 8px 24px rgba(52,70,62,.05); backdrop-filter: blur(12px); }
.site-header.is-scrolled .header-inner { min-height: 62px; border-color: transparent; box-shadow: none; background: transparent; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 188px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-pale); color: var(--sage-dark); }
.brand-mark svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-family: var(--serif); font-size: 1.48rem; line-height: .9; letter-spacing: -.02em; }
.brand small { color: var(--muted); font-size: .62rem; letter-spacing: .11em; text-transform: uppercase; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: clamp(13px, 1.6vw, 25px); margin-left: auto; }
.primary-nav a { position: relative; color: #647168; font-size: .79rem; font-weight: 600; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -8px; height: 2px; background: var(--sage-dark); transition: left .2s ease, right .2s ease; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { left: 0; right: 0; }
.primary-nav a.is-active { color: var(--ink); }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; width: 45px; height: 45px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: .2s; }

.home-hero { min-height: 820px; padding: 190px 0 100px; display: flex; align-items: center; background: linear-gradient(135deg, #f7f7f0 0%, #f4eef5 52%, #f1f5ed 100%); }
.home-hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: 70px; }
.home-hero-copy h1 em { color: #8d739e; font-style: italic; font-weight: 500; }
.home-hero-copy .lead { max-width: 590px; margin-bottom: 33px; }
.hero-art { position: relative; }
.hero-art::before { content: ""; position: absolute; inset: 8% 3% 2% 8%; border-radius: 45% 45% 34% 48%; background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(222,233,216,.7)); box-shadow: var(--shadow); transform: rotate(-2deg); }
.hero-art img { position: relative; z-index: 1; filter: drop-shadow(0 25px 35px rgba(52,70,62,.12)); }
.hero-note { position: absolute; z-index: 3; padding: 12px 17px; background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.9); border-radius: 999px; box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); color: var(--ink); font-size: .76rem; font-weight: 700; }
.hero-note-top { top: 9%; right: 0; }
.hero-note-bottom { left: 2%; bottom: 8%; }
.hero-note strong { font-family: var(--serif); font-size: 1.2rem; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 46px; color: var(--muted); font-size: .75rem; font-weight: 600; }
.trust-strip span::before { content: "✦"; margin-right: 8px; color: var(--sage-dark); }

.split-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: end; }
.split-heading h2 { max-width: 650px; margin-bottom: 0; }
.split-heading .text-link { margin-top: 16px; }
.section-heading { max-width: 710px; margin-bottom: 48px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.services-section { border-radius: 50px 50px 0 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 25px; }
.service-card { overflow: hidden; background: #fff; border: 1px solid rgba(220,228,216,.8); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-image { display: block; aspect-ratio: 1.16; overflow: hidden; background: var(--lavender-pale); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-body { padding: 27px; }
.service-body h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 2rem; }
.service-body > p:not(.eyebrow) { min-height: 85px; color: var(--muted); font-size: .92rem; }
.service-meta { display: flex; justify-content: space-between; gap: 15px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.service-meta strong { color: var(--ink); }

.benefit-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: stretch; }
.benefit-feature { position: relative; overflow: hidden; padding: 58px; border-radius: 34px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.benefit-feature h2 { color: #fff; font-size: clamp(2.8rem, 4vw, 4.1rem); }
.benefit-feature p:not(.eyebrow) { color: rgba(255,255,255,.75); }
.benefit-feature img { position: absolute; width: 260px; right: -45px; bottom: -75px; opacity: .12; filter: brightness(5); }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.why-card { padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.45); }
.why-card > span { display: inline-grid; width: 39px; height: 39px; place-items: center; margin-bottom: 29px; border-radius: 50%; background: var(--sage-pale); color: var(--sage-dark); font-size: .72rem; font-weight: 700; }
.why-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 1.65rem; }
.why-card p { color: var(--muted); font-size: .9rem; }

.testimonial-feature { max-width: 930px; text-align: center; }
.quote-mark { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 30px; border-radius: 50%; background: #fff; color: #9c7ca8; font-family: var(--serif); font-size: 3.3rem; line-height: 1; box-shadow: var(--shadow-soft); }
.testimonial-feature blockquote { margin: 0 auto 28px; font-family: var(--serif); font-size: clamp(2.2rem, 4.4vw, 4rem); line-height: 1.18; color: var(--ink-deep); }
.quote-attribution { color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.quote-attribution span { padding: 0 8px; }

.testimonial-feature [data-testimonial-quote],
.testimonial-feature .quote-attribution { transition: opacity .22s ease, transform .22s ease; }
.testimonial-feature.is-changing [data-testimonial-quote],
.testimonial-feature.is-changing .quote-attribution { opacity: 0; transform: translateY(6px); }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; padding: 0; margin: 0; list-style: none; counter-reset: steps; }
.steps-grid li { position: relative; padding: 30px 25px; border-top: 1px solid var(--line); }
.steps-grid li > span { display: block; margin-bottom: 26px; font-family: var(--serif); font-size: 2.2rem; line-height: 1; color: #a07fae; }
.steps-grid li:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 30px;
    right: -25px;
    z-index: 2;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--sage-dark);
    background: var(--cream);
    box-shadow: 0 5px 14px rgba(52, 70, 62, .08);
    font-family: var(--sans);
    font-size: .9rem;
    line-height: 1;
}
.steps-grid h3 { margin-bottom: 9px; font-family: var(--serif); font-size: 1.75rem; }
.steps-grid p { color: var(--muted); font-size: .9rem; }

.cta-section { padding-top: 40px; }
.cta-card { position: relative; overflow: hidden; padding: 75px 80px; border-radius: 34px; background: linear-gradient(135deg, var(--lavender-pale), #f8f1f3 60%, var(--sage-pale)); box-shadow: var(--shadow-soft); text-align: center; }
.cta-card h2 { max-width: 800px; margin-inline: auto; }
.cta-card > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; color: var(--muted); }
.cta-card .button-row { justify-content: center; }
.cta-orchid { position: absolute; right: -110px; bottom: -170px; width: 390px; opacity: .1; }

.page-hero { min-height: 580px; padding: 200px 0 95px; background: linear-gradient(135deg, #f7f6f1, #f3edf5 56%, #eef3eb); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 80px; }
.page-hero h1 { font-size: clamp(3.4rem, 6.2vw, 5.7rem); }
.page-hero-art { display: flex; align-items: center; justify-content: center; height: 290px; }
.page-hero-art img { max-height: 100%; filter: drop-shadow(0 20px 30px rgba(52,70,62,.1)); }

.story-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.prose { color: var(--muted); font-size: 1.08rem; }
.prose h2 { margin-top: 50px; color: var(--ink-deep); font-size: 2.3rem; }
.prose p { margin-bottom: 22px; }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 23px; }
.value-card { padding: 38px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.value-card > span { color: #a07fae; font-family: var(--serif); font-size: 2.25rem; }
.value-card h3 { margin: 24px 0 12px; font-family: var(--serif); font-size: 2rem; }
.value-card p { color: var(--muted); }
.practitioner-card { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; padding: 40px; border: 1px solid var(--line); border-radius: 34px; background: #fff; box-shadow: var(--shadow-soft); }
.practitioner-portrait { overflow: hidden; min-height: 490px; border-radius: 28px; background: var(--lavender-pale); }
.practitioner-portrait img { width: 100%; height: 100%; object-fit: cover; }
.tick-list { padding: 0; margin: 25px 0 30px; list-style: none; }
.tick-list li { position: relative; padding-left: 28px; margin-bottom: 13px; color: var(--muted); }
.tick-list li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--sage-dark); }

.treatment-list-grid { display: grid; gap: 35px; }
.treatment-list-card { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; min-height: 340px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-soft); }
.treatment-list-card:nth-child(even) { grid-template-columns: 1.2fr .8fr; }
.treatment-list-card:nth-child(even) .treatment-list-image { order: 2; }
.treatment-list-image { overflow: hidden; min-height: 340px; background: var(--lavender-pale); }
.treatment-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.treatment-list-card:hover img { transform: scale(1.025); }
.treatment-list-content { padding: 48px; align-self: center; }
.treatment-list-content h2 { margin-bottom: 15px; font-size: clamp(2.6rem, 4vw, 4rem); }
.treatment-list-content > p:not(.eyebrow) { color: var(--muted); }
.treatment-list-content .text-link { margin-top: 22px; }
.suitability { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 80px; }
.suitability h2 { margin-bottom: 0; }
.suitability p { color: var(--muted); }

.treatment-hero { padding: 165px 0 90px; background: linear-gradient(135deg, #f7f7f1, #f2ebf4 65%, #edf4e9); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; color: var(--muted); font-size: .76rem; }
.breadcrumbs a:hover { text-decoration: underline; }
.treatment-hero-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 30px; }
.treatment-visual { position: relative; overflow: hidden; margin: 0; min-height: 520px; border-radius: 30px; background: #e9efeb; box-shadow: var(--shadow-soft); }
.treatment-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.treatment-visual figcaption { position: absolute; left: 24px; bottom: 22px; padding: 9px 15px; border-radius: 999px; background: rgba(255,255,255,.82); color: var(--muted); font-size: .72rem; backdrop-filter: blur(10px); }
.treatment-summary { display: flex; flex-direction: column; justify-content: center; padding: 46px; border-radius: 30px; background: rgba(241,234,244,.9); border: 1px solid rgba(210,190,225,.55); box-shadow: var(--shadow-soft); }
.treatment-summary h1 { font-size: clamp(3.2rem, 5vw, 5rem); }
.treatment-summary .lead { font-size: 1.05rem; }
.treatment-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 25px 0 45px; }
.treatment-facts div { padding: 18px; border-radius: 14px; background: rgba(255,255,255,.85); border: 1px solid rgba(210,190,225,.55); }
.treatment-facts span, .treatment-facts strong { display: block; }
.treatment-facts span { margin-bottom: 4px; color: var(--muted); font-size: .68rem; }
.treatment-facts strong { font-size: 1rem; }
.treatment-summary .microcopy { margin: 15px 0 0; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.benefit-card { min-height: 225px; padding: 32px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.6); }
.benefit-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 32px; border-radius: 50%; background: var(--sage-pale); color: var(--sage-dark); }
.benefit-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 1.7rem; }
.benefit-card p { color: var(--muted); font-size: .9rem; }
.expect-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.expect-grid > div > p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; }
.process-list { padding: 0; margin: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(101,117,101,.18); font-weight: 600; }
.process-list li:first-child { border-top: 1px solid rgba(101,117,101,.18); }
.process-list span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #fff; color: #9d7baa; font-size: .75rem; }
.price-table { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.price-row { display: grid; grid-template-columns: 1.7fr .8fr .5fr; align-items: center; gap: 20px; min-height: 72px; padding: 16px 28px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.price-row:last-child { border-bottom: 0; }
.price-row strong { color: var(--ink); }
.price-head { min-height: 58px; background: #f5f7f3; color: var(--ink); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.price-row.four-col { grid-template-columns: 1.2fr 1.45fr .55fr .45fr; }
.price-row a { text-decoration: underline; text-decoration-color: rgba(52,70,62,.25); text-underline-offset: 3px; }
.table-note { margin: 16px 8px 0; }
.contraindications { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.contraindications .microcopy { grid-column: 2; }
.warning-list li::before { color: #b17186; }
.accordion { display: grid; gap: 10px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.7); }
.accordion-item h3 { margin: 0; font-family: var(--sans); font-size: .95rem; font-weight: 600; }
.accordion-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion-plus { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.accordion-plus::before, .accordion-plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; background: var(--sage-dark); transform: translate(-50%,-50%); transition: transform .2s ease; }
.accordion-plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item button[aria-expanded="true"] .accordion-plus::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { padding: 0 24px 22px; color: var(--muted); }
.accordion-panel p { margin: 0; }

.policy-grid, .visit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.policy-card, .visit-card { padding: 34px; background: #fff; border-radius: 22px; box-shadow: var(--shadow-soft); }
.policy-card h3, .visit-card h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 2rem; }
.policy-card p, .visit-card p { color: var(--muted); }
.visit-card > span { color: #9d7baa; font-family: var(--serif); font-size: 2.1rem; }
.areas-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.area-map { min-height: 520px; display: flex; flex-direction: column; justify-content: center; padding: 45px; border-radius: 34px; background: linear-gradient(135deg, var(--sage-pale), var(--lavender-pale)); text-align: center; box-shadow: var(--shadow-soft); }
.map-orbit { position: relative; width: min(420px, 100%); aspect-ratio: 1; margin: auto; border: 1px dashed rgba(101,117,101,.35); border-radius: 50%; }
.map-orbit::before, .map-orbit::after { content: ""; position: absolute; border: 1px solid rgba(101,117,101,.14); border-radius: 50%; }
.map-orbit::before { inset: 17%; }
.map-orbit::after { inset: 33%; }
.map-orbit img { position: absolute; left: 50%; top: 50%; width: 50%; transform: translate(-50%,-50%); opacity: .34; }
.map-pin { position: absolute; width: 18px; height: 18px; border: 5px solid #fff; border-radius: 50%; background: #9d7baa; box-shadow: 0 8px 15px rgba(52,70,62,.15); }
.pin-one { left: 17%; top: 35%; }.pin-two { right: 15%; top: 24%; }.pin-three { right: 25%; bottom: 17%; }
.area-map > p { max-width: 420px; margin: 25px auto 0; color: var(--muted); font-size: .8rem; }
.area-list { padding: 0; margin: 28px 0; list-style: none; }
.area-list li { display: flex; gap: 15px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.55rem; }
.area-list span { color: #9d7baa; font-size: .9rem; }

.quote-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.quote-card { display: flex; flex-direction: column; min-height: 330px; margin: 0; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.quote-card:nth-child(2), .quote-card:nth-child(5) { background: var(--lavender-pale); }
.stars { color: #9d7baa; letter-spacing: 5px; font-size: .74rem; }
.quote-card blockquote { flex: 1; margin: 25px 0; font-family: var(--serif); font-size: 1.7rem; line-height: 1.35; }
.quote-card figcaption strong, .quote-card figcaption span { display: block; }
.quote-card figcaption strong { font-size: .82rem; }
.quote-card figcaption span { color: var(--muted); font-size: .74rem; }

.faq-layout { display: grid; gap: 65px; }
.faq-group { display: grid; grid-template-columns: .45fr 1.55fr; gap: 75px; }
.faq-group h2 { font-size: 2.7rem; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.contact-details { position: sticky; top: 120px; }
.contact-details > p:not(.eyebrow) { color: var(--muted); }
.contact-list { margin: 38px 0; }
.contact-list > div { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list dt { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-list dd { margin: 4px 0 0; font-family: var(--serif); font-size: 1.55rem; }
.availability-card { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 16px; background: var(--sage-pale); }
.availability-dot { width: 11px; height: 11px; border-radius: 50%; background: #6c9a64; box-shadow: 0 0 0 7px rgba(108,154,100,.12); }
.availability-card strong, .availability-card p { display: block; margin: 0; }
.availability-card p { color: var(--muted); font-size: .78rem; }
.form-card { padding: 44px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.form-heading { margin-bottom: 30px; }
.form-heading h2 { margin-bottom: 0; font-size: 3.4rem; }
.form-card label { display: block; margin-bottom: 20px; }
.form-card label > span:first-child { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 700; }
.form-card label small { color: var(--muted); font-weight: 400; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.form-card input:not([type="checkbox"]), .form-card select, .form-card textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #d8e0d5;
    border-radius: 12px;
    color: var(--ink);
    background: #fbfcfa;
    outline: none;
    transition: border .2s, box-shadow .2s;
}
.form-card textarea { resize: vertical; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--sage-dark); box-shadow: 0 0 0 4px rgba(101,117,101,.1); }
.check-label { display: flex !important; align-items: flex-start; gap: 12px; color: var(--muted); font-size: .78rem; }
.check-label input { flex: 0 0 auto; margin-top: 5px; accent-color: var(--sage-dark); }
.check-label > span { margin: 0 !important; font-size: inherit !important; font-weight: 400 !important; }
.check-label a { text-decoration: underline; }
.form-note { margin: 13px 0 0; }
.booking-layout { display: grid; grid-template-columns: 1.25fr .55fr; gap: 45px; align-items: start; }
.booking-form { padding: 50px; }
.form-step { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.form-step-spaced { margin-top: 48px; }
.form-step > span { display: grid; flex: 0 0 48px; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--lavender-pale); color: #9d7baa; font-family: var(--serif); font-size: 1.4rem; }
.form-step p, .form-step h2 { margin-bottom: 0; }
.form-step h2 { font-size: 2.6rem; }
.booking-aside { position: sticky; top: 120px; overflow: hidden; padding: 34px; border-radius: 25px; background: var(--ink); color: #fff; }
.booking-aside > img { position: absolute; right: -90px; bottom: -100px; width: 270px; opacity: .09; filter: brightness(5); }
.booking-aside h2 { color: #fff; font-size: 2.6rem; }
.booking-aside > p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.booking-aside ol { position: relative; padding: 0; margin: 35px 0; list-style: none; }
.booking-aside li { display: flex; gap: 12px; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .84rem; }
.booking-aside li span { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); font-size: .72rem; }
.booking-help { position: relative; padding: 19px; border-radius: 15px; background: rgba(255,255,255,.09); }
.booking-help p { margin: 2px 0 0; }
.booking-help a { text-decoration: underline; }

.legal-hero { padding: 205px 0 85px; background: linear-gradient(135deg, #f7f7f1, var(--lavender-pale)); }
.legal-hero h1 { font-size: clamp(3.4rem, 6vw, 5.5rem); }
.legal-copy h2 { margin-top: 50px; }
.legal-warning { margin-top: 45px; padding: 22px; border-left: 4px solid #b17186; background: var(--pink-pale); color: var(--ink); }
.error-page { padding: 150px 0 80px; text-align: center; }

.site-footer { padding: 80px 0 25px; background: var(--ink-deep); color: rgba(255,255,255,.72); }
.footer-main { display: grid; grid-template-columns: 1.2fr .7fr .8fr 1fr; gap: 50px; }
.brand-light { color: #fff; }
.brand-light:hover { color: #fff; }
.brand-light .brand-mark { background: rgba(255,255,255,.08); color: #d5e4cf; }
.brand-light small { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 310px; margin-top: 25px; }
.footer-heading { margin-bottom: 20px; color: #fff; font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin: 9px 0; font-size: .84rem; }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; color: #fff; font-size: .72rem; font-weight: 700; }
.footer-book { padding: 25px; border-radius: 20px; background: rgba(255,255,255,.06); }
.footer-book p { font-size: .84rem; }
.footer-book .button { margin-top: 10px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.demo-toast { position: fixed; left: 50%; bottom: 25px; z-index: 999; max-width: min(520px, calc(100% - 30px)); padding: 15px 20px; border-radius: 999px; background: var(--ink-deep); color: #fff; box-shadow: var(--shadow); font-size: .85rem; opacity: 0; pointer-events: none; transform: translate(-50%, 25px); transition: .25s ease; }
.demo-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1110px) {
    .header-inner { gap: 18px; }
    .primary-nav { gap: 12px; }
    .primary-nav a { font-size: .72rem; }
    .header-cta { padding-inline: 16px; }
    .home-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 35px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 950px) {
    .section { padding: 85px 0; }
    .site-header { padding: 15px 0; }
    .header-inner { position: relative; min-height: 62px; border-radius: 24px; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-cta { display: none; }
    .primary-nav { position: absolute; left: 0; right: 0; top: calc(100% + 10px); display: none; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(251,250,247,.98); box-shadow: var(--shadow); }
    .primary-nav.is-open { display: grid; }
    .primary-nav a { padding: 9px 5px; font-size: .9rem; }
    .primary-nav a::after { display: none; }
    .home-hero { min-height: auto; padding-top: 145px; }
    .home-hero-grid, .page-hero-grid, .treatment-hero-grid, .split-heading, .benefit-layout, .story-grid, .practitioner-card, .areas-layout, .contact-grid, .booking-layout, .expect-grid, .contraindications, .suitability { grid-template-columns: 1fr; }
    .home-hero-copy { max-width: 700px; }
    .hero-art { max-width: 700px; margin: 0 auto; }
    .page-hero { min-height: auto; padding-top: 160px; }
    .page-hero-art { height: 250px; justify-content: flex-start; }
    .page-hero-art img { max-width: 450px; }
    .service-grid, .quote-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .benefit-feature { min-height: 420px; }
    .steps-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .steps-grid li:nth-child(2)::after { display: none; }
    .treatment-list-card, .treatment-list-card:nth-child(even) { grid-template-columns: .8fr 1.2fr; }
    .treatment-list-card:nth-child(even) .treatment-list-image { order: 0; }
    .treatment-hero-grid { gap: 22px; }
    .treatment-summary { padding: 40px; }
    .treatment-visual, .treatment-visual img { min-height: 430px; }
    .contraindications .microcopy { grid-column: auto; }
    .faq-group { grid-template-columns: 1fr; gap: 15px; }
    .contact-details, .booking-aside { position: static; }
    .booking-aside { max-width: 600px; }
}

@media (max-width: 680px) {
    body { font-size: 15px; }
    .container, .narrow, .narrow-wide { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 70px 0; }
    h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
    h2 { font-size: clamp(2.4rem, 12vw, 3.4rem); }
    .brand { min-width: 0; }
    .brand small { display: none; }
    .home-hero { padding-top: 128px; padding-bottom: 65px; }
    .home-hero-grid { gap: 50px; }
    .home-hero-copy h1 { font-size: clamp(3.2rem, 16vw, 4.8rem); }
    .hero-note { font-size: .64rem; }
    .hero-note-top { top: 4%; right: -5px; }
    .hero-note-bottom { left: -5px; }
    .trust-strip { gap: 9px 16px; }
    .page-hero { padding: 135px 0 55px; }
    .page-hero-grid { gap: 20px; }
    .page-hero-art { height: 180px; }
    .page-hero-art img { max-width: 320px; }
    .service-grid, .why-grid, .values-grid, .benefit-grid, .policy-grid, .visit-grid, .quote-grid, .form-grid { grid-template-columns: 1fr; }
    .service-body > p:not(.eyebrow) { min-height: 0; }
    .benefit-feature { min-height: 380px; padding: 38px 30px; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid li::after { display: none; }
    .cta-card { padding: 55px 25px; }
    .treatment-list-card, .treatment-list-card:nth-child(even) { grid-template-columns: 1fr; }
    .treatment-list-image { min-height: 250px; }
    .treatment-list-content { padding: 30px 25px; }
    .treatment-hero { padding-top: 135px; }
    .treatment-summary { padding: 30px 24px; }
    .treatment-visual, .treatment-visual img { min-height: 300px; }
    .treatment-facts { margin-bottom: 28px; }
    .price-row, .price-row.four-col { grid-template-columns: 1fr 1fr; padding: 18px; gap: 8px 20px; }
    .price-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; }
    .price-head { display: none; }
    .master-price-table .price-row strong { grid-column: 1 / -1; }
    .form-card, .booking-form { padding: 30px 22px; }
    .form-heading h2, .form-step h2 { font-size: 2.4rem; }
    .contact-list dd { font-size: 1.25rem; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
    .demo-toast { border-radius: 18px; text-align: center; }
}

/* Miltassia booking and service refinements */
.hidden { display: none !important; }
.hero-eligibility { margin: -15px 0 28px; color: var(--ink-deep); font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.9rem); font-weight: 600; }
.hero-eligibility span { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 7px; text-decoration-color: #9d7baa; }
.treatment-facts-four { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 20px; }
.treatment-facts-four div { min-height: 78px; }
.best-for { margin: 0 0 28px; padding: 16px 18px; border-left: 3px solid #9d7baa; border-radius: 0 12px 12px 0; background: rgba(255,255,255,.58); color: var(--muted); font-size: .87rem; }
.best-for strong { color: var(--ink); }
.booking-layout-wide { grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr); }
.form-alert { margin-bottom: 28px; padding: 18px 20px; border-radius: 16px; }
.form-alert strong { display: block; margin-bottom: 4px; }
.form-alert p { margin: 0; }
.form-alert-error { border: 1px solid #d9a9b7; background: #fff0f3; color: #7a3d51; }
.form-alert-warning { border: 1px solid #dbc999; background: #fff9e9; color: #67572b; }
.couple-note { margin-top: -4px; padding: 13px 15px; border-radius: 12px; background: var(--sage-pale); }
.booking-calendar { margin: 28px 0 10px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, #fbfcfa, #f4eff6); }
.calendar-toolbar { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 14px; margin-bottom: 20px; text-align: center; }
.calendar-toolbar p, .calendar-toolbar h3 { margin: 0; }
.calendar-toolbar h3 { font-family: var(--serif); font-size: 2rem; }
.calendar-nav { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; box-shadow: var(--shadow-soft); }
.calendar-nav:hover:not(:disabled) { color: #fff; background: var(--sage-dark); }
.calendar-nav:disabled { opacity: .35; cursor: not-allowed; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 7px; }
.calendar-weekdays { margin-bottom: 7px; color: var(--muted); font-size: .68rem; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .07em; }
.calendar-day { display: grid; min-height: 48px; place-items: center; border: 1px solid transparent; border-radius: 12px; background: rgba(255,255,255,.5); color: #a0a9a3; font-weight: 600; }
button.calendar-day { cursor: pointer; }
.calendar-day.is-available { border-color: #cbdac7; background: #fff; color: var(--ink); box-shadow: 0 6px 16px rgba(52,70,62,.06); }
.calendar-day.is-available:hover, .calendar-day.is-selected { border-color: var(--sage-dark); color: #fff; background: var(--sage-dark); }
.calendar-day:disabled { cursor: not-allowed; opacity: .55; }
.calendar-day-blank { background: transparent; }
.calendar-message { grid-column: 1 / -1; margin: 10px 0; padding: 20px; border-radius: 14px; color: var(--muted); background: rgba(255,255,255,.65); text-align: center; }
.time-picker { display: grid; grid-template-columns: .42fr 1.58fr; gap: 25px; align-items: start; margin-top: 26px; padding-top: 25px; border-top: 1px solid var(--line); }
.time-picker p, .time-picker h3 { margin-bottom: 0; }
.time-picker h3 { font-family: var(--serif); font-size: 1.7rem; }
.time-slots { display: flex; flex-wrap: wrap; gap: 9px; }
.time-slot { min-width: 92px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer; font-size: .79rem; font-weight: 700; }
.time-slot:hover, .time-slot.is-selected { border-color: var(--sage-dark); color: #fff; background: var(--sage-dark); }
.partner-details, .declaration-panel { margin: 34px 0; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: #fbfcfa; }
.partner-details legend, .declaration-panel legend { padding: 0 10px; color: var(--ink-deep); font-family: var(--serif); font-size: 1.8rem; font-weight: 600; }
.declaration-panel > .form-note { margin-bottom: 22px; }
.declaration-selects { grid-template-columns: repeat(2, minmax(0,1fr)); }
.declaration-consents { margin: 22px 0; padding: 18px; border-radius: 14px; background: var(--lavender-pale); }
.signature-field { margin-top: 26px; }
.signature-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 9px; }
.signature-heading span, .signature-heading small { display: block; }
.signature-heading span { font-size: .78rem; font-weight: 700; }
.signature-heading small { color: var(--muted); }
.text-button { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: .76rem; font-weight: 700; }
.signature-field canvas { display: block; width: 100%; height: 150px; border: 1px dashed #9aab9b; border-radius: 14px; background: #fff; cursor: crosshair; touch-action: none; }
.health-notice { margin-bottom: 25px; padding: 18px 20px; border-left: 4px solid #b17186; border-radius: 0 14px 14px 0; background: var(--pink-pale); color: var(--muted); }
.health-notice strong { color: var(--ink); }
.payment-summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin: 34px 0 20px; padding: 24px; border-radius: 18px; color: #fff; background: var(--ink); }
.payment-summary p, .payment-summary h3 { margin-bottom: 0; }
.payment-summary .eyebrow { color: #d8e6d2; }
.payment-summary h3 { color: #fff; font-family: var(--serif); font-size: 2rem; }
.payment-summary [data-summary-description] { color: rgba(255,255,255,.7); font-size: .78rem; }
.payment-summary > strong { white-space: nowrap; font-family: var(--serif); font-size: 2.5rem; }
.final-consent { margin-bottom: 24px !important; }
.availability-card-dark { position: relative; margin: 24px 0; color: #fff; background: rgba(255,255,255,.08); }
.availability-card-dark p { color: rgba(255,255,255,.65); }
.confirmation-card { display: grid; grid-template-columns: 78px 1fr; gap: 28px; padding: 45px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.confirmation-icon { display: grid; width: 72px; height: 72px; place-items: center; border-radius: 50%; color: #fff; background: var(--sage-dark); font-size: 2rem; }
.confirmation-card h2 { font-size: 3.3rem; }
.form-error { color: #8d4059; }

@media (max-width: 950px) {
    .booking-layout-wide { grid-template-columns: 1fr; }
    .time-picker { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .booking-calendar { padding: 18px 12px; }
    .calendar-toolbar { grid-template-columns: 38px 1fr 38px; }
    .calendar-nav { width: 38px; height: 38px; }
    .calendar-weekdays, .calendar-days { gap: 3px; }
    .calendar-day { min-height: 41px; border-radius: 9px; font-size: .78rem; }
    .declaration-panel, .partner-details { padding: 20px 16px; }
    .declaration-selects { grid-template-columns: 1fr; }
    .payment-summary, .confirmation-card { grid-template-columns: 1fr; display: grid; }
    .payment-summary > strong { font-size: 2rem; }
    .signature-field canvas { height: 125px; }
}


/* Live service-area map and booking availability states */
.area-map-live { position: relative; display: block; min-height: 560px; padding: 0; overflow: hidden; background: var(--sage-pale); }
.area-map-frame { display: block; width: 100%; min-height: 560px; height: 100%; border: 0; }
.map-radius-label { position: absolute; left: 22px; bottom: 20px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; color: var(--ink-deep); background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); font-size: .73rem; font-weight: 700; backdrop-filter: blur(10px); }
.map-radius-label span { color: #9d7baa; font-size: 1rem; }
.booking-disclaimer { margin: 18px 0 25px; }
.time-slot:disabled, .time-slot.is-unavailable { border-color: #ead5dc; color: #9c7f88; background: #f8eef1; cursor: not-allowed; opacity: .78; text-decoration: line-through; }
.time-slot:disabled:hover { border-color: #ead5dc; color: #9c7f88; background: #f8eef1; }
@media(max-width:680px){.area-map-live,.area-map-frame{min-height:430px}.map-radius-label{left:12px;right:12px;bottom:12px;justify-content:center;border-radius:14px;text-align:center}}

/* Booking payment choices and customer booking management */
.payment-method-panel { margin: 0 0 26px; padding: 0; border: 0; }
.payment-method-panel legend { margin-bottom: 14px; color: var(--ink-deep); font-family: var(--serif); font-size: 1.8rem; font-weight: 600; }
.payment-method-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.payment-method-option { position: relative; display: grid !important; grid-template-columns: 50px minmax(0,1fr) 24px; align-items: center; gap: 14px; min-height: 142px; margin: 0 !important; padding: 18px; overflow: hidden; border: 1px solid #d8e0d5; border-radius: 17px; background: #fbfcfa; cursor: pointer; transition: border .2s, box-shadow .2s, transform .2s, background .2s; }
.payment-method-option:hover { transform: translateY(-2px); border-color: #aebdae; box-shadow: var(--shadow-soft); }
.payment-method-option:focus-within { outline: 3px solid rgba(101,117,101,.18); outline-offset: 3px; }
.payment-method-option:has(.payment-method-radio:checked) { border-color: var(--sage-dark); background: var(--sage-pale); box-shadow: 0 0 0 3px rgba(101,117,101,.1); }
.form-card .payment-method-radio { position: absolute; width: 1px !important; min-height: 0 !important; height: 1px !important; margin: 0 !important; padding: 0 !important; overflow: hidden; border: 0 !important; opacity: 0; pointer-events: none; }
.payment-method-option > span { margin: 0 !important; }
.payment-method-icon { display: grid !important; width: 50px; height: 50px; place-items: center; border-radius: 15px; color: var(--sage-dark); background: #edf2eb; transition: color .2s, background .2s, transform .2s; }
.payment-method-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.payment-method-option:has(.payment-method-radio:checked) .payment-method-icon { color: #fff; background: var(--sage-dark); transform: scale(1.03); }
.payment-method-copy { display: block !important; min-width: 0; }
.payment-method-copy strong, .payment-method-copy small { display: block; }
.payment-method-copy strong { color: var(--ink-deep); font-size: .86rem; line-height: 1.35; }
.payment-method-copy small { margin-top: 7px; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.payment-method-check { display: grid !important; width: 24px; height: 24px; place-items: center; border: 1px solid #cbd5c8; border-radius: 50%; color: transparent; background: #fff; font-size: .78rem; font-weight: 800; transition: color .2s, border .2s, background .2s; }
.payment-method-option:has(.payment-method-radio:checked) .payment-method-check { border-color: var(--sage-dark); color: #fff; background: var(--sage-dark); }
.booking-management-card { padding: 36px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-soft); }
.booking-management-card + .booking-management-card { margin-top: 22px; }
.booking-management-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; margin-top: 26px; }
.booking-management-action { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fbfcfa; }
.booking-management-action h3 { font-size: 2rem; }
.booking-management-action textarea { width: 100%; min-height: 120px; margin: 12px 0; padding: 13px 15px; border: 1px solid #d8e0d5; border-radius: 12px; background: #fff; }
.booking-management-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px 25px; margin: 25px 0 0; }
.booking-management-meta div { padding: 13px 0; border-bottom: 1px solid var(--line); }
.booking-management-meta dt { color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.booking-management-meta dd { margin: 5px 0 0; }
@media(max-width:850px){.payment-method-grid{grid-template-columns:1fr}.payment-method-option{min-height:112px}.booking-management-actions,.booking-management-meta{grid-template-columns:1fr}}
.form-alert-success { border: 1px solid #bcd7b4; background: #eef8eb; color: #356032; }
.button-danger { border-color: #a3526a; background: #a3526a; }
