/* =========================================================================
   East Yorkshire Foot Health — brand stylesheet
   Palette drawn from the logo: sage/olive green, warm cream, soft charcoal.
   ========================================================================= */

:root {
    --cream:       #f7f3ea;
    --cream-2:     #efe8d9;
    --paper:       #fffdf8;
    --sage:        #8a9a5b;
    --sage-soft:   #a7b47e;
    --sage-dark:   #5f6f3c;
    --green-deep:  #3b472d;
    --gold:        #c0a45e;
    --text:        #36392e;
    --muted:       #6f7560;
    --line:        #e3dccb;
    --shadow:      0 14px 40px rgba(59, 71, 45, 0.10);
    --shadow-sm:   0 6px 18px rgba(59, 71, 45, 0.08);
    --radius:      18px;
    --radius-sm:   10px;
    --wrap:        1140px;
    --font-head:   'Cormorant Garamond', Georgia, serif;
    --font-body:   'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: break-word;   /* break long emails/URLs/IPs only when they'd overflow */
}

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

a { color: var(--sage-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green-deep); }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--green-deep);
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 .5em;
    letter-spacing: .2px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.12em; }

.skip-link {
    position: absolute; left: -999px; top: 0; background: var(--green-deep);
    color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .55em;
    background: var(--sage-dark); color: #fff;
    padding: .85em 1.6em; border-radius: 999px; border: 0;
    font-family: var(--font-body); font-weight: 700; font-size: .98rem;
    cursor: pointer; transition: transform .15s, background .2s, box-shadow .2s;
    box-shadow: 0 8px 20px rgba(95, 111, 60, .22); line-height: 1;
    white-space: nowrap;   /* button labels never wrap / break mid-word */
}
.btn:hover { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
/* Gold is a light button — use dark text for contrast (white fails AA on gold). */
.btn--accent { background: var(--gold); color: var(--green-deep); box-shadow: 0 8px 20px rgba(192,164,94,.28); }
.btn--accent:hover { background: #b89647; color: var(--green-deep); }
.btn--ghost {
    background: transparent; color: var(--sage-dark);
    border: 1.5px solid var(--sage); box-shadow: none;
}
.btn--ghost:hover { background: var(--sage-dark); color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.28); }
.btn--whatsapp:hover { background: #1eb955; color: #fff; }
.btn--small { padding: .6em 1.15em; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Topbar + header --------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 200; }
.topbar {
    background: var(--green-deep); color: #e9ecdf; font-size: .82rem;
}
.topbar__inner { display: flex; align-items: center; gap: 18px; padding: 7px 22px; }
.topbar__spacer { flex: 1; }
.topbar__item { color: #e9ecdf; display: inline-flex; align-items: center; gap: 6px; }
.topbar__item:hover { color: #fff; }
@media (max-width: 620px) {
    .topbar__inner { font-size: .76rem; gap: 12px; }
    .topbar__item:first-child { display: none; }
}

/* Full-width nav background: white→transparent at the top of the page,
   turning solid once the user scrolls (toggled via .is-scrolled in JS). */
.nav-bar {
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.40) 0%,
        rgba(255, 255, 255, 0.10) 45%,
        rgba(255, 255, 255, 0) 85%,
        rgba(255, 255, 255, 0) 100%);
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
/* On scroll: a soft, semi-transparent frosted background — gentler than solid. */
.site-header.is-scrolled .nav-bar {
    background: rgba(255, 253, 248, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 14px rgba(59, 71, 45, 0.06);
    border-bottom-color: var(--line);
}
.nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 22px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-size: 1.45rem; color: var(--green-deep); font-weight: 700; }
.brand__sub { font-family: var(--font-body); font-size: .7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--sage-dark); margin-top: 3px; }

.nav__menu ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__menu a {
    display: block; padding: .55em .9em; border-radius: 8px;
    color: var(--text); font-weight: 600; font-size: .96rem;
}
.nav__menu a:hover { background: var(--cream-2); color: var(--green-deep); }
.nav__menu a.is-active { color: var(--sage-dark); }
.nav__menu a.is-active::after {
    content: ''; display: block; height: 2px; background: var(--sage);
    border-radius: 2px; margin-top: 2px;
}
.nav__cta { color: #fff !important; margin-left: 8px; }
.nav__cta:hover { color: #fff !important; }

/* ---- Dropdown submenus -------------------------------------------------- */
.nav__menu li.has-children { position: relative; }
.nav__menu a .caret { width: 1em; height: 1em; vertical-align: -0.15em; margin-left: 2px; opacity: .7; transition: transform .2s; }
.nav__menu li.has-children:hover > a .caret { transform: rotate(180deg); }
.submenu {
    list-style: none; margin: 0; padding: 8px;
    position: absolute; top: calc(100% + 4px); left: 0; min-width: 210px;
    background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .2s, transform .2s, visibility .2s; z-index: 250;
}
.nav__menu li.has-children:hover > .submenu,
.nav__menu li.has-children:focus-within > .submenu { opacity: 1; visibility: visible; transform: none; }
/* Force a vertical list (override the horizontal flex inherited from .nav__menu ul). */
.nav__menu .submenu { display: block; gap: 0; }
.submenu li { width: 100%; display: block; }
.submenu a { display: block; white-space: nowrap; padding: .55em .8em; border-radius: 8px; font-size: .92rem; }
.submenu a:hover { background: var(--cream-2); }
.submenu-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--green-deep); padding: 6px; }
.submenu-toggle svg { width: 1.2rem; height: 1.2rem; transition: transform .2s; }

/* ---- Live search -------------------------------------------------------- */
.nav__search-toggle { background: none; border: 0; cursor: pointer; color: var(--green-deep); padding: 8px; margin-left: 8px; display: inline-flex; align-items: center; border-radius: 8px; }
.nav__search-toggle:hover { background: var(--cream-2); color: var(--sage-dark); }
.nav__search-toggle .ico { width: 1.3rem; height: 1.3rem; }
.site-search { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.site-search__bar { display: flex; align-items: center; gap: 12px; padding: 14px 22px; }
.site-search__icon { width: 1.3rem; height: 1.3rem; color: var(--sage-dark); flex: none; }
.site-search__bar input { flex: 1; border: 0; background: none; font: inherit; font-size: 1.1rem; color: var(--text); padding: 6px 0; }
.site-search__bar input:focus { outline: none; }
.site-search__close { background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 0 4px; }
.site-search__close:hover { color: var(--green-deep); }
.site-search__results { padding: 0 22px 18px; max-height: 60vh; overflow-y: auto; }
.search-grp { margin-top: 14px; }
.search-grp__h { font-family: var(--font-body); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--sage-dark); margin-bottom: 6px; }
.search-res { display: block; padding: 9px 12px; border-radius: 10px; }
.search-res:hover, .search-res.is-active { background: var(--cream-2); }
.search-res strong { display: block; color: var(--green-deep); font-family: var(--font-head); font-size: 1.05rem; }
.search-res span { display: block; color: var(--muted); font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-empty { padding: 18px 12px; color: var(--muted); }
.search-empty a { color: var(--sage-dark); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--green-deep); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav__toggle { display: flex; }
    .brand__logo { width: 60px; height: 60px; }
    .brand__name { font-size: 1.25rem; }
    .nav__menu {
        position: absolute; left: 0; right: 0; top: 100%;
        background: var(--paper); border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .3s ease;
        box-shadow: var(--shadow);
    }
    .nav__menu.open { max-height: 80vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
    .nav__menu ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 14px 18px; }
    .nav__menu a { padding: .8em .6em; border-bottom: 1px solid var(--line); border-radius: 0; }
    .nav__cta { margin: 12px 0 0; text-align: center; justify-content: center; }

    /* Submenus become inline accordions on mobile. */
    .nav__menu li.has-children { display: flex; flex-wrap: wrap; align-items: center; }
    .nav__menu li.has-children > a { flex: 1; }
    .nav__menu a .caret { display: none; }
    .submenu-toggle { display: inline-flex; }
    .submenu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 16px;
        width: 100%; min-width: 0; max-height: 0; overflow: hidden; transition: max-height .28s ease;
    }
    .nav__menu li.has-children.open > .submenu { max-height: 420px; }
    .nav__menu li.has-children.open .submenu-toggle svg { transform: rotate(180deg); }
    .submenu a { border-bottom: 1px solid var(--line); border-radius: 0; }
}

/* ---- Flash messages ---------------------------------------------------- */
.flash { max-width: var(--wrap); margin: 18px auto 0; padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; }
.flash--success { background: #e7efd9; color: #41591f; border: 1px solid #cdddb0; }
.flash--error   { background: #f6e0dc; color: #8a3324; border: 1px solid #e7c2ba; }

/* ---- Sections + helpers ------------------------------------------------ */
.section { padding: 76px 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--sage  { background: linear-gradient(160deg, #eef1e3, #e3e9d2); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section__head .eyebrow { display: inline-block; }
.section__head p { color: var(--muted); font-size: 1.06rem; }

.eyebrow {
    font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px;
    font-size: .76rem; font-weight: 700; color: var(--sage-dark);
    margin-bottom: 10px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before, .eyebrow.center::after { content: ''; width: 26px; height: 1.5px; background: var(--sage-soft); display: inline-block; }

.lead { font-size: 1.18rem; color: var(--muted); }

/* ---- Hero -------------------------------------------------------------- */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(150deg, #f7f3ea 0%, #eef0e2 55%, #e4ead4 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 80px 0 90px; }
.hero__title { margin-bottom: .35em; }
.hero__lead { font-size: 1.2rem; color: var(--muted); max-width: 32em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--sage-dark); }
.hero__trust .ico { color: var(--sage); width: 1.15em; height: 1.15em; }
.hero__media { position: relative; }
.hero__media img { border-radius: 26px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero__badge {
    position: absolute; bottom: -22px; left: -22px; background: var(--paper);
    border-radius: var(--radius); box-shadow: var(--shadow); padding: 16px 20px;
    display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.hero__badge .ico { color: var(--sage); width: 2rem; height: 2rem; flex: none; }
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--green-deep); }
.hero__badge span { font-size: .82rem; color: var(--muted); }
.hero__leaf { position: absolute; opacity: .5; pointer-events: none; }

@media (max-width: 880px) {
    .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 54px 0 64px; text-align: center; }
    .hero__lead { margin-inline: auto; }
    .hero__cta, .hero__trust { justify-content: center; }
    .hero__media { max-width: 420px; margin: 0 auto; }
    .hero__badge { left: 12px; }
}

/* ---- Cards / grids ----------------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
    height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
    width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
    background: linear-gradient(150deg, #e8eed7, #dbe4c4); color: var(--sage-dark); margin-bottom: 16px;
}
.card__icon .ico { width: 1.7rem; height: 1.7rem; }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: .8em; }
.card__price { font-family: var(--font-head); font-size: 1.25rem; color: var(--sage-dark); font-weight: 700; }
.card__link { font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }

/* ---- Feature strip ----------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { text-align: center; padding: 20px; }
.feature .ico { width: 2.4rem; height: 2.4rem; color: var(--sage); margin-bottom: 10px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .25em; }
.feature p { color: var(--muted); font-size: .9rem; margin: 0; }
@media (max-width: 760px) { .features { grid-template-columns: repeat(2, 1fr); } }

/* ---- Split content ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: .5em; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 30px; } .split--reverse .split__media { order: 0; } }

.quote {
    font-family: var(--font-head); font-size: 1.6rem; font-style: italic; color: var(--green-deep);
    border-left: 4px solid var(--sage-soft); padding: 6px 0 6px 22px; margin: 26px 0; line-height: 1.35;
}

/* ---- Gallery ----------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
    background: var(--paper); border: 1px solid var(--line);
}
.gallery-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__cap {
    position: absolute; inset: auto 0 0 0; padding: 26px 16px 14px;
    background: linear-gradient(transparent, rgba(40,48,30,.82)); color: #fff;
}
.gallery-item__cap strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.gallery-item__cap span { font-size: .82rem; opacity: .9; }
.gallery-item__tag {
    position: absolute; top: 12px; left: 12px; background: rgba(255,253,248,.92);
    color: var(--sage-dark); font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}

/* ---- Testimonials ------------------------------------------------------ */
.testimonial {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm); height: 100%;
}
.testimonial__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial__stars .ico { width: 1.05rem; height: 1.05rem; }
.testimonial p { font-family: var(--font-head); font-size: 1.22rem; font-style: italic; color: var(--green-deep); line-height: 1.4; }
.testimonial__author { font-weight: 700; color: var(--sage-dark); margin-top: 12px; font-family: var(--font-body); font-size: .95rem; }
.testimonial__author span { color: var(--muted); font-weight: 400; }

/* ---- CTA band ---------------------------------------------------------- */
.cta-band {
    background: linear-gradient(150deg, var(--sage-dark), var(--green-deep)); color: #fff;
    border-radius: var(--radius); padding: 50px; text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #e6ead9; max-width: 40em; margin: 0 auto 24px; }
.cta-band a { color: #fff; text-decoration: underline; }
.cta-band a:hover { color: #fff; opacity: .85; }
.cta-band .btn { background: var(--paper); color: var(--green-deep); }
.cta-band .btn:hover { background: #fff; color: var(--green-deep); }
/* Outline (ghost) buttons on the dark band must stay transparent w/ white text. */
.cta-band .btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ---- Pricing card ------------------------------------------------------ */
.price-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 44px 40px; text-align: center; max-width: 620px; margin: 0 auto;
}
.price-amount { font-family: var(--font-head); font-weight: 700; color: var(--green-deep); font-size: clamp(3.2rem, 10vw, 4.8rem); line-height: 1; }
.price-unit { color: var(--sage-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; margin-top: 8px; }
.price-extra { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; background: #eef2e2; color: var(--sage-dark); font-weight: 700; font-size: .9rem; padding: 7px 16px; border-radius: 999px; }
.price-extra .ico { width: 1.05rem; height: 1.05rem; }
.price-extra--gold { background: #f4eedd; color: #9a7d2e; }
.badge-soon { display: inline-block; vertical-align: middle; background: var(--gold); color: #3a2f12; font-family: var(--font-body); font-weight: 800; font-size: .58em; letter-spacing: .5px; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.notice-soon { display: flex; align-items: center; gap: 12px; background: #f4eedd; border: 1px solid #e6d6a8; color: #7a5f1e; border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 22px; font-weight: 600; }
.notice-soon .ico { width: 1.4rem; height: 1.4rem; flex: none; }
.card .tag-soon { display: inline-block; background: var(--gold); color: #3a2f12; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 3px 9px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }
.price-card .prose { color: var(--muted); margin: 18px auto 26px; max-width: 40em; }
.price-card .prose p { margin-bottom: 0; }

/* ---- Included checklist ------------------------------------------------- */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; max-width: 880px; margin: 0 auto; }
@media (max-width: 640px) { .included-grid { grid-template-columns: 1fr; } }
.included-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.included-item .tick { width: 30px; height: 30px; flex: none; border-radius: 50%; background: linear-gradient(150deg,#e8eed7,#dbe4c4); color: var(--sage-dark); display: grid; place-items: center; }
.included-item .tick .ico { width: 1.05rem; height: 1.05rem; }
.included-item h3 { font-size: 1.08rem; margin: 2px 0 2px; }
.included-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---- Forms ------------------------------------------------------------- */
.form-card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 36px; box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; color: var(--green-deep); }
.field .req { color: #b4694e; }
.input, .textarea, .select {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    font: inherit; color: var(--text); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.input:focus, .textarea:focus, .select:focus {
    outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(138,154,91,.18);
}
.textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px;
    border: 1.5px solid var(--line); cursor: pointer; font-weight: 600; transition: .2s;
}
.radio-pill input:checked + span { border-color: var(--sage); background: #eef2e2; color: var(--sage-dark); }
.form-note { font-size: .85rem; color: var(--muted); }

/* ---- Page hero (interior) --------------------------------------------- */
.page-hero {
    background: linear-gradient(150deg, #eef1e3, #e3e9d2); text-align: center; padding: 64px 0 56px;
    border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: .2em; }
.page-hero p { color: var(--muted); max-width: 40em; margin: 0 auto; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--sage-dark); }

/* ---- Contact aside ----------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 36px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list .ico { width: 1.5rem; height: 1.5rem; color: var(--sage); flex: none; margin-top: 3px; }
.info-list strong { display: block; color: var(--green-deep); font-family: var(--font-head); font-size: 1.1rem; }
.info-list a { color: var(--muted); }
.info-list a:hover { color: var(--sage-dark); }

/* ---- Treatment-page enquiry sidebar ------------------------------------ */
.treatment-side { position: sticky; top: 96px; }
.treatment-side .field { margin-bottom: 12px; }
.treatment-side .field-row { gap: 12px; }
@media (max-width: 880px) { .treatment-side { position: static; } }

/* ---- Voucher showcase -------------------------------------------------- */
.voucher-show img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---- Accordion (FAQ) --------------------------------------------------- */
.accordion__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: 0; cursor: pointer; text-align: left; padding: 18px 22px;
    font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--green-deep);
}
.accordion__q:hover { color: var(--sage-dark); }
.accordion__chev { width: 24px; height: 24px; flex: none; color: var(--sage); transition: transform .25s; }
.accordion__q[aria-expanded="true"] .accordion__chev { transform: rotate(180deg); }
.accordion__a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---- Site search ------------------------------------------------------- */
.search-form { display: flex; gap: 10px; max-width: 540px; margin: 0 auto; }
.search-form .input { flex: 1; }
.search-result { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.search-result h3 { margin-bottom: 4px; }
.search-result .tag { font-size: .72rem; font-weight: 700; color: var(--sage-dark); text-transform: uppercase; letter-spacing: .5px; }
.search-result p { color: var(--muted); margin: 6px 0 0; }
.nav-search { display: flex; align-items: center; }

/* ---- Cookie banner ----------------------------------------------------- */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; width: 100%;
    background: var(--green-deep); color: #eef1e3;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .18);
}
.cookie-banner__inner { display: flex; align-items: center; gap: 16px; padding: 16px 22px; max-width: var(--wrap); margin: 0 auto; }
.cookie-banner p { margin: 0; font-size: .86rem; }
.cookie-banner .btn { background: var(--paper); color: var(--green-deep); flex: none; }
.cookie-banner .btn:hover { background: #fff; color: var(--green-deep); }
@media (max-width: 480px) { .cookie-banner__inner { flex-direction: column; align-items: stretch; text-align: center; } }

/* ---- Misc -------------------------------------------------------------- */
.pill {
    display: inline-block; background: #eef2e2; color: var(--sage-dark);
    font-size: .76rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin: 3px 3px 0 0;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.prose p { color: var(--muted); }
.prose h2, .prose h3 { margin-top: 1.4em; }

/* ---- Footer ------------------------------------------------------------ */
.site-footer { background: #2f3a24; color: #cfd6bf; margin-top: 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding: 60px 0 40px; }
@media (max-width: 920px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__logo { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 14px; }
.footer__brand { padding-right: 15%; }
.footer__brand p { color: #b9c2a4; font-size: .92rem; max-width: 32em; }
@media (max-width: 920px) { .footer__brand { padding-right: 0; } }
.footer__badges { margin-top: 14px; }
.footer__badges .pill { background: rgba(255,255,255,.08); color: #d7dec5; }
.site-footer h3 { color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.footer__links, .footer__contact { list-style: none; padding: 0; margin: 0; }
.footer__links li, .footer__contact li { padding: 6px 0; }
.footer__sublinks { list-style: none; margin: 2px 0 4px; padding: 0 0 0 14px; border-left: 1px solid rgba(255,255,255,.12); }
.footer__sublinks li { padding: 4px 0; }
.footer__sublinks a { color: #b9c2a4; font-size: .92rem; }
.footer__sublinks a:hover { color: #fff; }
.footer__links a, .footer__contact a, .footer__contact span { color: #cfd6bf; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact .ico { color: var(--sage-soft); }
.footer__cta { margin-top: 16px; }
.footer__areas { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; font-size: .85rem; color: #9aa483; text-align: center; }
.footer__areas strong { color: #cfd6bf; margin-right: 6px; }
.footer__areas a { color: #b9c2a4; }
.footer__areas a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; justify-content: space-between; gap: 14px; padding: 18px 22px; font-size: .8rem; color: #9aa483; flex-wrap: wrap; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Reveal on scroll -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- Small-phone refinements ------------------------------------------- */
@media (max-width: 600px) {
    body { font-size: 16px; }
    .wrap { padding: 0 16px; }
    .section { padding: 52px 0; }
    .section__head { margin-bottom: 32px; }
    .page-hero { padding: 44px 0 38px; }
    .cta-band { padding: 34px 22px; }
    .form-card { padding: 24px 20px; }
    .quote { font-size: 1.35rem; }
    .hero__badge { padding: 12px 14px; max-width: 210px; }
    .hero__badge .ico { width: 1.6rem; height: 1.6rem; }
    .footer__bar-inner { flex-direction: column; gap: 6px; text-align: center; }
}
