@charset "UTF-8";
/* =========================================================
   Massage by Laura — site stylesheet
   ---------------------------------------------------------
   Palette sourced from the brand logo (eucalyptus wreath +
   champagne ring) — see massage-by-laura-icon.png.

     Primary  Forest green     #2F4A2A   (CTA buttons, primary surfaces)
     Mid      Sage green       #7C9061   (eyebrows, secondary text, focus rings)
     Soft     Eucalyptus       #C8D2B5   (section/card highlights)
     Pale     Eucalyptus fog   #E8EFD9   (alt section backgrounds)
     Accent   Champagne gold   #D6B870   (pills, tags, badges, small highlights)
     Light    Champagne soft   #F0E2B5   (gentle accents on dark surfaces)
     Bg       Parchment        #FBF9EE   (page-wash off-white)
     Ink      Deep ink-green   #1E2A1A   (headings, dark surface, footer)
     Body     Neutral graphite #3D4538   (body copy)
     Muted    Slate            #6B7563   (helper text)

   Typography: Poppins (UI), Merriweather (headings) — unchanged.
   ========================================================= */

:root {
    /* Brand greens */
    --forest: #2F4A2A;
    --forest-dark: #233A1F;
    --sage: #7C9061;
    --sage-dark: #5C6F4A;
    --eucalyptus: #C8D2B5;
    --eucalyptus-fog: #E8EFD9;

    /* Brand gold accents (used sparingly) */
    --gold: #D6B870;
    --gold-dark: #B8964F;
    --gold-soft: #F0E2B5;

    /* Neutrals */
    --parchment: #FBF9EE;          /* warm off-white page wash */
    --cream: #F4EFD9;              /* slightly deeper cream (legacy alias) */
    --cream-translucent: rgba(251, 249, 238, 0.6);
    --ink: #1E2A1A;                /* deep ink-green for headings */
    --body: #3D4538;               /* neutral graphite for body */
    --muted: #6B7563;              /* helper / meta text */
    --white: #FFFFFF;
    --surf-dark: #1E2A1A;          /* footer / dark CTA / top bar */
    --border: #E1E4D6;             /* hairline border, sage-tinted */

    /* Shadows — tinted with ink-green so they don't read grey on cream */
    --shadow-sm: 0 2px 8px rgba(30, 42, 26, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 42, 26, 0.08);
    --shadow-lg: 0 20px 50px rgba(30, 42, 26, 0.12);

    --radius: 12px;
    --radius-lg: 20px;
    --container: 1180px;
    --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--body);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 0.6em;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.97rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
    text-align: center;
}
.btn-primary {
    background: var(--forest);
    color: var(--parchment);
    border-color: var(--forest);
}
.btn-primary:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--parchment);
}
.btn-ghost {
    background: var(--white);
    color: var(--ink);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--forest);
    color: var(--forest);
}

/* ---------- Header ---------- */
.top-bar {
    background: var(--surf-dark);
    color: var(--cream);
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar a {
    color: var(--gold-soft);
    text-decoration: none;
}
.top-bar a:hover { color: var(--white); }
.top-bar .tb-left, .top-bar .tb-right {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: stretch;
    gap: 24px;
    padding: 0;
    min-height: 72px;
}
.brand {
    display: flex;
    align-items: stretch;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
    padding: 0;
    margin-right: auto; /* pushes nav + CTA to the right */
}
.brand img {
    height: 72px;
    width: auto;
    display: block;
    margin: 0;
    align-self: stretch;
    object-fit: contain;
}
.brand-text { line-height: 1.1; align-self: center; }
.brand-name {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}
.brand-sub {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    align-items: stretch;
    gap: 2px;
}
.main-nav a {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    padding: 0 18px;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a.is-active {
    background: var(--eucalyptus-fog);
    color: var(--forest);
    border-bottom-color: var(--forest);
}
.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: var(--transition);
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav { display: none; }
    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px;
        gap: 4px;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
    .main-nav.is-open a {
        width: 100%;
        padding: 12px 16px;
        border-bottom: 0;
        border-radius: 8px;
    }
    .main-nav.is-open a:hover,
    .main-nav.is-open a.is-active { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 80px 0 90px;
    background:
        linear-gradient(180deg, var(--parchment) 0%, var(--white) 100%),
        radial-gradient(circle at 18% 0%, rgba(124, 144, 97, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 95% 100%, rgba(214, 184, 112, 0.10) 0%, transparent 50%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--sage-dark);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--eucalyptus);
    margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero-lede {
    font-size: 1.1rem;
    color: var(--body);
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-meta {
    margin-top: 28px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}
.hero-meta strong { color: var(--ink); }

/* Hero trust badges: Google rating pill + checkmark items */
.hero-badges {
    margin-top: 32px;
    display: flex;
    gap: 14px 22px;
    flex-wrap: wrap;
    align-items: center;
}
.badge-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--eucalyptus);
    border-radius: 999px;
    padding: 8px 14px 8px 12px;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.92rem;
    box-shadow: 0 1px 2px rgba(31, 42, 26, 0.04);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.badge-rating:hover {
    border-color: var(--sage);
    box-shadow: 0 3px 10px rgba(31, 42, 26, 0.08);
    transform: translateY(-1px);
}
.badge-stars {
    display: inline-flex;
    gap: 1px;
    color: var(--gold-dark);
    line-height: 0;
}
.badge-rating strong { font-weight: 600; color: var(--ink); }
.badge-sub { color: var(--muted); }
.badge-sub::before { content: "·"; margin: 0 6px; color: var(--border); }

.badge-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--body);
    font-size: 0.92rem;
    font-weight: 500;
}
.badge-check svg { color: var(--sage-dark); flex-shrink: 0; }
.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--cream);
}
.hero-visual img {
    width: 100%; height: 100%; object-fit: cover;
}
@media (max-width: 900px) {
    .hero { padding: 50px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Section ---------- */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--parchment);
}
.section-dark {
    background: var(--surf-dark);
    color: var(--eucalyptus);
}
.section-dark h2, .section-dark h3 { color: var(--parchment); }
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section-eyebrow {
    color: var(--sage-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    margin-bottom: 14px;
}
.section-head p {
    color: var(--body);
    font-size: 1.05rem;
}

/* ---------- Service cards (home / services index) ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--forest);
    box-shadow: var(--shadow-md);
    color: inherit;
}
.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}
.service-card p {
    color: var(--body);
    font-size: 0.95rem;
    margin: 0 0 16px;
    flex: 1;
}
/* Static cards (e.g. About-page values) don't lift on hover */
.service-card-static {
    cursor: default;
}
.service-card-static:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: none;
}
.service-link {
    color: var(--forest);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link::after { content: "\2192"; transition: transform var(--transition); }
.service-card:hover .service-link::after { transform: translateX(4px); }

.service-card-foot {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
}
.service-card-price {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
}

/* ---------- Pricing list ---------- */
.price-list {
    display: grid;
    gap: 18px;
}
.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.price-row:hover { border-color: var(--forest); box-shadow: var(--shadow-sm); }
.price-row-body h3 { margin: 0 0 4px; font-size: 1.1rem; }
.price-row-body p { margin: 0; font-size: 0.92rem; color: var(--muted); }
.price-row-tiers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
    font-size: 0.95rem;
}
.price-row-tiers span { white-space: nowrap; }
.price-row-tiers strong { color: var(--ink); }
.price-row-cta {
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 6px;
    opacity: 0.85;
}
.price-row:hover .price-row-cta { opacity: 1; }
.price-badge {
    display: inline-block;
    background: var(--gold-soft);
    color: var(--gold-dark);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 8px;
}
@media (max-width: 700px) {
    .price-row { grid-template-columns: 1fr; }
    .price-row-tiers { align-items: flex-start; text-align: left; }
    .price-row-cta { display: none; }
}

/* ---------- Add-on cards ---------- */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.addon-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.addon-card:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.addon-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}
.addon-head h3 {
    margin: 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--ink);
}
.addon-price {
    font-weight: 600;
    color: var(--forest);
    white-space: nowrap;
}
.addon-duration {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--muted);
    background: var(--eucalyptus-fog);
    padding: 2px 8px;
    border-radius: 999px;
    margin-bottom: 10px;
    font-weight: 500;
}
.addon-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--body);
    line-height: 1.55;
}

/* ---------- Service detail page ---------- */
.service-hero {
    background: linear-gradient(180deg, var(--parchment) 0%, var(--white) 100%);
    padding: 70px 0 50px;
}
.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
    background: var(--eucalyptus-fog);
}
.service-hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .service-hero-grid { grid-template-columns: 1fr; } }

.service-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    padding: 60px 0;
}
.service-content h2 { margin-top: 1.5em; }
.service-content h2:first-child { margin-top: 0; }
.service-content ul { padding-left: 22px; }
.service-content li { margin-bottom: 8px; }
.service-content strong { color: var(--ink); }

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.sidebar-card {
    background: var(--eucalyptus-fog);
    border: 1px solid var(--eucalyptus);
    border-radius: var(--radius);
    padding: 26px;
    margin-bottom: 18px;
}
.sidebar-card h3 { margin: 0 0 12px; font-size: 1.1rem; }
.sidebar-card p { margin: 0 0 14px; font-size: 0.92rem; }
.sidebar-card .btn { width: 100%; margin-bottom: 8px; }
.sidebar-card .btn:last-child { margin-bottom: 0; }

.problem-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.problem-pills a {
    display: inline-block;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--ink);
}
.problem-pills a:hover { border-color: var(--forest); color: var(--forest); background: var(--eucalyptus-fog); }

@media (max-width: 900px) {
    .service-content { grid-template-columns: 1fr; }
    .sidebar { position: static; }
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 800px;
    margin: 0 auto;
}
.faq details {
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.faq details[open] summary { color: var(--forest); }
.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 4px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "\002B";
    font-size: 1.4rem;
    color: var(--forest);
    transition: transform var(--transition);
    line-height: 1;
}
.faq details[open] summary::after {
    content: "\2212";
}
.faq-body { padding-top: 12px; color: var(--body); }

/* ---------- Problem (symptom) page ---------- */
.problem-hero {
    background: var(--eucalyptus-fog);
    padding: 60px 0;
    text-align: center;
}
.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 30px 0;
}
.symptom-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 0.95rem;
    color: var(--ink);
}

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 2 / 3;
    background: #000;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}
.about-media video,
.about-media img {
    width: 100%; height: 100%; object-fit: cover;
}
.therapist-card {
    background: var(--eucalyptus-fog);
    border-left: 4px solid var(--forest);
    padding: 22px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--ink);
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
    background: var(--eucalyptus-fog);
    border-radius: var(--radius);
    padding: 30px;
}
.contact-info-card h3 { margin: 0 0 6px; font-size: 1rem; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 0.05em;}
.contact-info-card + .contact-info-card { margin-top: 16px; }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--transition);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(47, 74, 42, 0.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .help { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.form-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    display: none;
    font-size: 0.9rem;
}
.form-status.success { background: #E9FBE5; color: #14532D; display: block; }
.form-status.error { background: #FCF0EF; color: #7F1D1D; display: block; }

/* ---------- About page hero ---------- */
.about-hero {
    background:
        linear-gradient(180deg, var(--parchment) 0%, var(--white) 100%),
        radial-gradient(circle at 50% 0%, rgba(124, 144, 97, 0.14) 0%, transparent 55%);
    padding: 70px 0 60px;
    text-align: center;
}
.about-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about-hero-logo {
    max-width: 360px;
    width: 80%;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}
.about-hero h1 {
    margin: 0 0 16px;
}
.about-hero-quote {
    font-style: italic;
    color: var(--sage-dark);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}
.about-media video,
.about-media img {
    width: 100%; height: 100%; object-fit: cover;
}
.about-media video {
    background: #000;
}
@media (max-width: 600px) {
    .about-hero-logo { max-width: 280px; }
}

/* ---------- Contact form wrapper + cf-form (bundled module) blending ---------- */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}
.contact-form-wrap h2 { color: var(--ink); }

/* The _contact-form module emits .cf-form in 'auto' styling mode.
   It inherits the site's input/button styles automatically; the rules below
   are small scoped tweaks so spacing + the submit button match the site. */
.cf-form { font-family: inherit; }
.cf-form [data-cf-field] { margin-bottom: 18px; }
.cf-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.cf-form input[type="text"],
.cf-form input[type="email"],
.cf-form input[type="tel"],
.cf-form input[type="url"],
.cf-form textarea,
.cf-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.cf-form input:focus,
.cf-form textarea:focus,
.cf-form select:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(47, 74, 42, 0.18);
}
.cf-form textarea { min-height: 140px; resize: vertical; }
.cf-form button[type="submit"] {
    background: var(--forest);
    color: var(--parchment);
    border: none;
    padding: 14px 24px;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background var(--transition), transform var(--transition);
}
.cf-form button[type="submit"]:hover { background: var(--forest-dark); transform: translateY(-1px); }
.cf-form button[type="submit"][disabled] { opacity: 0.6; cursor: wait; transform: none; }
.cf-form .cf-error,
.cf-form [data-cf-error] {
    color: #7F1D1D;
    font-size: 0.85rem;
    margin-top: 4px;
}
.cf-form .cf-status-success,
.cf-form [data-cf-status="success"] {
    background: #E9FBE5;
    color: #14532D;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 14px;
    font-size: 0.95rem;
}
.cf-form .cf-status-error,
.cf-form [data-cf-status="error"] {
    background: #FCF0EF;
    color: #7F1D1D;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 14px;
    font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--surf-dark);
    color: var(--cream);
    padding: 70px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h4 {
    color: var(--gold-soft);
    margin: 0 0 16px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.92rem;
    opacity: 0.85;
    transition: opacity var(--transition);
}
.footer-col a:hover { color: var(--gold-soft); opacity: 1; }

.footer-brand img {
    height: 64px;
    width: auto;
    margin-bottom: 14px;
    background: var(--cream-translucent);
    border-radius: 10px;
    padding: 8px 14px;
}
.footer-brand p { font-size: 0.92rem; opacity: 0.8; }

.footer-bottom {
    border-top: 1px solid rgba(240, 230, 197, 0.12);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    opacity: 0.7;
}
.footer-bottom a { color: var(--cream); }

/* Thin credits bar below footer (mirrors the top bar styling) */
.footer-credits {
    background: var(--ink);
    color: rgba(251, 249, 238, 0.7);
    padding: 12px 0;
    font-size: 0.78rem;
    text-align: center;
}
.footer-credits p { margin: 0; line-height: 1.6; }
.footer-credits a {
    color: rgba(251, 249, 238, 0.85);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-credits a:hover { color: var(--gold-soft); }
.footer-credits .sep { opacity: 0.4; margin: 0 6px; }
@media (max-width: 600px) {
    .footer-credits { font-size: 0.74rem; padding: 14px 16px; }
    .footer-credits .sep { display: block; height: 4px; opacity: 0; margin: 0; }
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(240, 230, 197, 0.3);
    transition: all var(--transition);
}
.social-icons a:hover { background: var(--gold); border-color: var(--gold); color: var(--surf-dark); }

/* ---------- Booking strip / CTA banner ---------- */
.cta-banner {
    background:
        linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%),
        radial-gradient(circle at 80% 0%, rgba(214, 184, 112, 0.25) 0%, transparent 60%);
    background-blend-mode: normal;
    color: var(--parchment);
    padding: 50px 0;
    text-align: center;
    position: relative;
}
.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 0%, rgba(214, 184, 112, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--parchment); margin-bottom: 12px; }
.cta-banner p { color: rgba(251, 249, 238, 0.92); margin-bottom: 22px; }
.cta-banner .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cta-banner .btn-primary:hover { background: var(--parchment); color: var(--ink); border-color: var(--parchment); }

/* ---------- Trust strip ---------- */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}
.trust-item {
    flex: 1 1 200px;
    max-width: 240px;
}
.trust-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--eucalyptus-fog);
    color: var(--forest);
    margin: 0 auto 10px;
}
.trust-item .icon svg { display: block; }
.trust-item strong { display: block; color: var(--ink); margin-bottom: 2px; }
.trust-item span { color: var(--muted); font-size: 0.9rem; }

/* Stat-style variant — big number/text headline above the strong label */
.trust-strip-stats .trust-item {
    flex: 1 1 200px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.trust-stat {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}
.trust-stat-stars {
    color: var(--gold-dark);
    font-size: 1rem;
    gap: 2px;
}

/* Inline icons that sit inside buttons, top-bar items, or text links */
.btn-icon,
.tb-icon {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
    flex-shrink: 0;
}
.top-bar span,
.top-bar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    padding: 18px 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs .sep { margin: 0 6px; opacity: 0.6; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Reviews ---------- */
.reviews-summary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--eucalyptus);
    border-radius: 999px;
    padding: 10px 20px;
    margin-bottom: 18px;
    box-shadow: 0 1px 3px rgba(31, 42, 26, 0.05);
}
.reviews-summary .stars {
    display: inline-flex;
    color: var(--gold-dark);
    gap: 1px;
    line-height: 0;
}
.reviews-summary .summary-text { font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.reviews-summary .summary-text strong { font-weight: 600; }
.reviews-summary .summary-text .muted { color: var(--muted); margin-left: 4px; }

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(31, 42, 26, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.review-card::before {
    content: "\201C";
    position: absolute;
    top: 6px;
    right: 18px;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--eucalyptus);
    opacity: 0.55;
}
.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(31, 42, 26, 0.08);
}
.review-card .review-stars {
    display: inline-flex;
    gap: 1px;
    color: var(--gold-dark);
    line-height: 0;
    margin-bottom: 14px;
}
.review-card blockquote {
    font-size: 0.97rem;
    line-height: 1.65;
    color: var(--body);
    margin: 0 0 18px;
    flex: 1;
    quotes: none;
}
.review-card blockquote::before,
.review-card blockquote::after { content: none; }
.review-card .review-meta {
    border-top: 1px solid var(--border);
    padding-top: 14px;
    font-size: 0.86rem;
    line-height: 1.5;
}
.review-card .review-name {
    font-weight: 600;
    color: var(--ink);
    display: block;
}
.review-card .review-sub {
    color: var(--muted);
    font-size: 0.8rem;
}
.review-card .review-service {
    display: inline-block;
    margin-top: 6px;
    background: var(--eucalyptus-fog);
    color: var(--forest);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    border-radius: 999px;
}

.reviews-cta {
    text-align: center;
    margin-top: 32px;
}

/* ---------- Conditions hub ---------- */
.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 36px;
}
.condition-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.condition-card:hover {
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.condition-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.condition-card h3 a { color: var(--ink); text-decoration: none; }
.condition-card h3 a:hover { color: var(--forest); }
.condition-lede {
    font-size: 0.94rem;
    color: var(--body);
    line-height: 1.55;
    margin: 0 0 18px;
}
.condition-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
}
.condition-symptoms { margin-bottom: 16px; }
.condition-symptoms ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    color: var(--body);
    line-height: 1.6;
}
.condition-symptoms li {
    padding-left: 18px;
    position: relative;
}
.condition-symptoms li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--sage);
}
.condition-treatments { margin-bottom: 16px; }
.condition-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.condition-pills a {
    display: inline-block;
    background: var(--eucalyptus-fog);
    color: var(--forest);
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
}
.condition-pills a:hover { background: var(--forest); color: var(--white); }
.condition-cta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}
.condition-cta:hover { color: var(--forest-dark); }

/* ---------- Areas hub ---------- */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 30px;
}
.area-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.area-card:hover {
    border-color: var(--forest);
    background: var(--eucalyptus-fog);
    transform: translateY(-1px);
}
.area-card .area-arrow {
    color: var(--forest);
    font-size: 0.85rem;
    opacity: 0.7;
    transition: transform var(--transition), opacity var(--transition);
}
.area-card:hover .area-arrow {
    opacity: 1;
    transform: translateX(2px);
}
.area-card.area-unpublished {
    cursor: default;
    opacity: 0.55;
    pointer-events: none;
}
.area-card .area-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 600;
}

/* ---------- Credentials list (About page) ---------- */
.trust-stat-small {
    font-size: 1.3rem;
    text-transform: none;
    letter-spacing: 0;
}
.credentials-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}
.credential-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
}
.credential-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--eucalyptus-fog);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
}
.credential-body { display: flex; flex-direction: column; }
.credential-body strong { color: var(--ink); font-size: 1rem; }
.credential-body span { color: var(--muted); font-size: 0.88rem; margin-top: 2px; }

.credentials-callout {
    margin-top: 30px;
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.credentials-callout strong { color: var(--ink); }
.credentials-callout span { color: var(--body); font-size: 0.92rem; line-height: 1.6; }

/* ---------- Service detail page: extras ---------- */
.sidebar-other-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-other-list li { margin: 0; }
.sidebar-other-list a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--ink);
    font-size: 0.92rem;
    transition: background var(--transition), color var(--transition);
}
.sidebar-other-list a:hover {
    background: var(--eucalyptus-fog);
    color: var(--forest);
}
.sidebar-other-icon {
    flex-shrink: 0;
    color: var(--sage-dark);
    opacity: 0.7;
}
.sidebar-other-list a:hover .sidebar-other-icon {
    color: var(--forest);
    opacity: 1;
}

/* Mid-page service image — a wide, breathing-room image inside the article */
.service-mid-image {
    margin: 36px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(31, 42, 26, 0.10);
}
.service-mid-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Service body — content style helpers when SERVICE_BODY HTML is provided.
   Avoids reliance on Markdown rendering and keeps content readable. */
.service-content article h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.15rem;
    margin: 32px 0 12px;
    color: var(--ink);
}
.service-content article .lead {
    font-size: 1.05rem;
    color: var(--body);
    line-height: 1.7;
}
.service-content article .pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin: 14px 0 20px;
    padding: 0;
    list-style: none;
}
.service-content article .pill-grid li {
    background: var(--eucalyptus-fog);
    color: var(--forest);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
}
.service-content article .callout {
    background: var(--parchment);
    border-left: 4px solid var(--sage);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.96rem;
    color: var(--body);
    line-height: 1.65;
}

/* ---------- Service page long-content typography ---------- */
.service-content article h2 {
    font-size: 1.7rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--ink);
}
.service-content article h2:first-of-type { margin-top: 16px; }
.service-content article p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--body);
    margin: 0 0 16px;
}
.service-content article p strong { color: var(--ink); }
/* Inline text links inside paragraphs and list items in the article body.
   Buttons (.btn) and pill links (.problem-pills a) keep their own styling. */
.service-content article p a:not(.btn),
.service-content article li a:not(.btn) {
    color: var(--forest);
    text-decoration: underline;
    text-decoration-color: var(--eucalyptus);
    text-underline-offset: 3px;
    transition: color var(--transition), text-decoration-color var(--transition);
}
.service-content article p a:not(.btn):hover,
.service-content article li a:not(.btn):hover {
    color: var(--forest-dark);
    text-decoration-color: var(--forest);
}

/* Check-list — replaces bullets with subtle sage check marks for benefit lists */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.check-list li {
    position: relative;
    padding: 6px 0 6px 32px;
    line-height: 1.65;
    color: var(--body);
}
.check-list li + li { margin-top: 2px; }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    background: var(--eucalyptus-fog);
    border-radius: 50%;
}
.check-list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 13px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--forest);
    border-bottom: 2px solid var(--forest);
    transform: rotate(-45deg);
}

/* Inline content image (between paragraphs) */
.content-image {
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(31, 42, 26, 0.12);
}
.content-image img {
    width: 100%;
    height: auto;
    display: block;
}
.content-image-full {
    /* Full-width within the article column */
}
