/* ===== Design tokens ===== */
:root {
  /* Brand */
  --brand-primary: #84C8A3;             /* mint */
  --brand-primary-deep: #4FA274;        /* darkened for >= 4.5:1 vs white text */
  --brand-secondary: #462F29;           /* dark brown */
  --brand-cream: #FBF7F0;
  --brand-cream-2: #F2EBDD;

  /* Neutrals */
  --ink: #1B1410;                       /* warm near-black */
  --ink-2: #3A2E27;
  --ink-3: #6B5C53;
  --rule: #E8DFCF;
  --rule-2: #D8CCB6;
  --bg: #FFFFFF;
  --bg-soft: #FBF7F0;

  /* Status */
  --ok: #2D8A57;
  --closed: #B0432A;

  /* Type */
  --font-serif: "Source Serif Pro", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Radius / shadow */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(70,47,41,.06), 0 2px 6px rgba(70,47,41,.04);
  --shadow: 0 4px 14px rgba(70,47,41,.08), 0 1px 3px rgba(70,47,41,.04);
  --shadow-lg: 0 18px 50px -12px rgba(70,47,41,.22);

  /* Layout */
  --container: 1180px;
  --gutter: 24px;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-sans); color: var(--ink); background: var(--bg); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-secondary); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--brand-primary-deep); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.01em; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li + li { margin-top: .35em; }
button { font: inherit; cursor: pointer; }
hr { border: 0; height: 1px; background: var(--rule); margin: 2.5rem 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--brand-secondary); color: #fff; padding: 12px 18px; z-index: 1000; }
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--brand-primary-deep); outline-offset: 3px; border-radius: 4px; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .8em 1.4em; border-radius: 999px; font-weight: 600; font-size: .98rem; text-decoration: none; border: 1.5px solid transparent; transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease; line-height: 1; min-height: 44px; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand-primary-deep); color: #fff; border-color: var(--brand-primary-deep); }
.btn--primary:hover { background: var(--brand-secondary); border-color: var(--brand-secondary); color: #fff; }
.btn--secondary { background: var(--brand-secondary); color: #fff; border-color: var(--brand-secondary); }
.btn--secondary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--outline { background: transparent; color: var(--brand-secondary); border-color: var(--brand-secondary); }
.btn--outline:hover { background: var(--brand-secondary); color: #fff; }
.btn--ghost { background: transparent; color: var(--brand-secondary); border-color: var(--rule-2); }
.btn--ghost:hover { background: var(--brand-cream); color: var(--brand-secondary); border-color: var(--brand-secondary); }
.btn--lg { padding: 1.05em 1.8em; font-size: 1.05rem; }

/* ===== Top bar ===== */
.topbar { background: var(--brand-secondary); color: #F2EBDD; font-size: .85rem; padding: .5em 0; }
.topbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.topbar__open { display: inline-flex; align-items: center; gap: .45em; font-weight: 600; }
.topbar__open .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(45,138,87,.25); }
.topbar__open[data-status="closed"] .dot { background: #E8A075; box-shadow: 0 0 0 3px rgba(232,160,117,.25); }
.topbar__open[data-status="unavailable"] .dot { background: #aaa; box-shadow: none; }
.topbar__item { display: inline-flex; align-items: center; gap: .4em; color: #F2EBDD; text-decoration: none; }
.topbar__item:hover { color: #fff; text-decoration: underline; }
.topbar__hours { margin-left: auto; opacity: .85; }
@media (max-width: 720px) { .topbar { font-size: .8rem; } .topbar__addr, .topbar__hours { display: none; } }

/* ===== Header ===== */
.header { background: #fff; border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
.header__inner { display: flex; align-items: center; gap: 1.25rem; padding: 14px 0; }
.header__logo { display: inline-block; line-height: 0; flex-shrink: 0; }
.header__logo img { height: 64px; width: auto; max-height: 76px; }
@media (max-width: 600px) { .header__logo img { height: 52px; } }
.header__nav { margin-left: auto; }
.nav { list-style: none; display: flex; gap: 1.25rem; padding: 0; margin: 0; align-items: center; }
.nav a, .nav__toggle { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem; padding: .5em 0; position: relative; background: none; border: 0; display: inline-flex; align-items: center; gap: .3em; white-space: nowrap; }
.nav a:hover, .nav__toggle:hover, .nav a[aria-current="page"] { color: var(--brand-primary-deep); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--brand-primary-deep); border-radius: 2px; }
.nav__dropdown { position: relative; }
.nav__menu { position: absolute; top: 100%; left: -16px; min-width: 280px; background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; margin-top: 10px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .15s, transform .15s, visibility .15s; }
.nav__dropdown:hover .nav__menu, .nav__dropdown:focus-within .nav__menu, .nav__toggle[aria-expanded="true"] + .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a { display: block; padding: .55em .85em; border-radius: 8px; font-size: .95rem; }
.nav__menu a:hover { background: var(--brand-cream); color: var(--brand-secondary); }
.nav__menu a[role="menuitem"]::after { display: none; }
.header__ctas { display: flex; gap: .6rem; align-items: center; }
.header__menu-btn { display: none; background: transparent; border: 1.5px solid var(--rule-2); color: var(--ink); width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.header__menu-btn:hover { background: var(--brand-cream); border-color: var(--brand-secondary); color: var(--brand-secondary); }

@media (max-width: 1180px) {
  .header__inner { gap: .9rem; }
  .nav { gap: .9rem; }
  .nav a, .nav__toggle { font-size: .9rem; }
  .header__ctas .btn { padding: .55em 1em; font-size: .9rem; }
}
@media (max-width: 900px) {
  .header__nav, .header__ctas { display: none; }
  .header__menu-btn { display: inline-flex; margin-left: auto; }
}

/* ===== Drawer ===== */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(27,20,16,.5); z-index: 80; opacity: 0; visibility: hidden; transition: opacity .15s, visibility .15s; }
.drawer-backdrop[data-open="true"] { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: #fff; z-index: 90; transform: translateX(100%); transition: transform .2s ease-out; overflow-y: auto; display: flex; flex-direction: column; padding: 18px 20px 32px; box-shadow: var(--shadow-lg); }
.drawer[data-open="true"] { transform: translateX(0); }
.drawer[hidden] { display: flex; }
@media (prefers-reduced-motion: reduce) { .drawer { transition: none; } .drawer-backdrop { transition: none; } }
.drawer__header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.drawer__logo img { height: 38px; }
.drawer__close { background: transparent; border: 1.5px solid var(--rule-2); color: var(--ink); width: 44px; height: 44px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; }
.drawer__nav { display: flex; flex-direction: column; padding: 12px 0; gap: 2px; }
.drawer__nav a, .drawer__group-toggle { padding: 14px 8px; font-size: 1.05rem; font-weight: 500; color: var(--ink); text-decoration: none; border-radius: 8px; display: block; }
.drawer__nav a:hover, .drawer__group-toggle:hover { background: var(--brand-cream); color: var(--brand-secondary); }
.drawer__group-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: 0; text-align: left; }
.drawer__group-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__group ul { list-style: none; padding: 4px 0 4px 12px; margin: 0; border-left: 2px solid var(--rule); }
.drawer__group li { margin: 0; }
.drawer__group a { padding: 10px 12px; font-size: .98rem; }
.drawer__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--rule); }
.drawer__ctas .btn { width: 100%; }
.drawer__hours { font-size: .9rem; color: var(--ink-3); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rule); }

/* ===== Hero ===== */
.hero { position: relative; padding: 96px 0 112px; overflow: hidden; isolation: isolate; background-color: #2b1d15; background-image: url("/images/hero-store-sepia.jpg"); background-size: cover; background-position: center 35%; background-repeat: no-repeat; }
.hero__bg-overlay { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: linear-gradient(105deg, rgba(38,24,17,.88) 0%, rgba(38,24,17,.72) 38%, rgba(38,24,17,.35) 70%, rgba(38,24,17,.55) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.hero__content { max-width: 38em; color: #fdf6ec; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5em; font-size: .85rem; font-weight: 600; color: var(--brand-secondary); background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.6); padding: .4em 1em; border-radius: 999px; margin-bottom: 24px; text-shadow: none; backdrop-filter: blur(4px); }
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-primary-deep); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: .6rem; color: #fff8e8; }
.hero__sub { font-family: var(--font-serif); font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-style: italic; color: #f5e6cf; margin-bottom: 1.6rem; }
.hero__copy { color: #f1e3cb; font-size: 1.08rem; margin-bottom: 2rem; max-width: 36em; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__ctas .btn--outline { color: #fff8e8; border-color: rgba(255,248,232,.6); background: rgba(0,0,0,.18); }
.hero__ctas .btn--outline:hover { background: rgba(255,248,232,.12); border-color: #fff8e8; color: #fff; }
.hero__trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 480px; padding-top: 22px; border-top: 1px solid rgba(255,248,232,.25); }
.hero__trust-item { font-size: .9rem; color: rgba(255,248,232,.85); }
.hero__trust-item strong { display: block; color: #fff8e8; font-size: 1.6rem; font-family: var(--font-serif); font-weight: 600; line-height: 1; margin-bottom: 4px; }
.hero__sticker-wrap { display: flex; justify-content: flex-end; align-items: center; }
.hero__sticker { background: var(--brand-secondary); color: var(--brand-cream); border-radius: 100%; width: 168px; height: 168px; display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; padding: 12px; box-shadow: var(--shadow-lg); transform: rotate(-6deg); }
.hero__sticker strong { display: block; font-style: normal; font-size: 2.4rem; line-height: 1; color: var(--brand-primary); }

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; background-position: center center; }
  .hero__bg-overlay { background: linear-gradient(180deg, rgba(38,24,17,.85) 0%, rgba(38,24,17,.7) 50%, rgba(38,24,17,.8) 100%); }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__sticker-wrap { justify-content: center; }
  .hero__sticker { width: 130px; height: 130px; font-size: 1rem; }
  .hero__sticker strong { font-size: 1.8rem; }
}

/* ===== Section primitives ===== */
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--brand-cream); }
.section__head { max-width: 720px; margin: 0 0 40px; }
.section__head--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section__eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-primary-deep); margin-bottom: 12px; }
.section__title { margin: 0 0 .35em; color: var(--brand-secondary); }
.section__lede { font-size: 1.1rem; color: var(--ink-2); margin: 0; }
@media (max-width: 700px) { .section { padding: 48px 0; } }

/* ===== Services grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px; transition: border-color .15s, box-shadow .15s, transform .15s; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; }
.service-card:hover { border-color: var(--brand-primary-deep); box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.service-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-cream); color: var(--brand-primary-deep); display: inline-flex; align-items: center; justify-content: center; }
.service-card__title { font-size: 1.15rem; font-family: var(--font-serif); font-weight: 600; color: var(--brand-secondary); margin: 0; }
.service-card__desc { color: var(--ink-3); font-size: .95rem; margin: 0; flex: 1; }
.service-card__arrow { font-size: .9rem; color: var(--brand-primary-deep); font-weight: 600; display: inline-flex; align-items: center; gap: .3em; margin-top: 4px; }
.service-card--list .service-card__arrow { display: none; }

/* ===== Hours / tables ===== */
.hours-table { width: 100%; border-collapse: collapse; font-size: 1rem; background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.hours-table th, .hours-table td { padding: 14px 18px; text-align: left; }
.hours-table tr + tr { border-top: 1px solid var(--rule); }
.hours-table th { font-weight: 600; color: var(--brand-secondary); width: 40%; background: var(--bg-soft); }
.hours-table td { color: var(--ink-2); }
.hours-table tr[data-today="true"] th, .hours-table tr[data-today="true"] td { background: var(--brand-cream); color: var(--brand-secondary); font-weight: 600; }

.hours-mini { width: 100%; font-size: .9rem; border-collapse: collapse; }
.hours-mini th { font-weight: 500; color: var(--brand-cream); padding: 4px 12px 4px 0; text-align: left; width: 60px; }
.hours-mini td { color: var(--brand-cream); opacity: .85; }

/* ===== Trust strip ===== */
.trust-strip { background: var(--brand-secondary); color: var(--brand-cream); padding: 28px 0; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; }
.trust-strip__item { display: flex; gap: 12px; align-items: center; }
.trust-strip__icon { color: var(--brand-primary); flex-shrink: 0; }
.trust-strip__label { font-size: .9rem; line-height: 1.35; }
.trust-strip__label strong { display: block; font-family: var(--font-serif); font-size: 1.05rem; color: #fff; }
@media (max-width: 900px) { .trust-strip__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-strip__inner { grid-template-columns: 1fr; } }

/* ===== Soda fountain feature ===== */
.soda-feature { background: linear-gradient(180deg, #fff 0%, var(--brand-cream) 100%); }
.soda-feature__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.soda-feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.soda-feature__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.soda-feature__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(70,47,41,0) 60%, rgba(70,47,41,.15) 100%); pointer-events: none; }
.soda-feature__copy .section__eyebrow { display: inline-block; margin-bottom: 12px; }
.soda-feature__copy .section__title { margin-bottom: .6rem; }
.soda-feature__copy .section__lede { margin-bottom: 1.4rem; max-width: 32em; }
.soda-feature__list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 12px; }
.soda-feature__list li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.5; }
.soda-feature__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-primary); box-shadow: 0 0 0 4px rgba(155,201,170,.25); }
.soda-feature__list strong { color: var(--brand-secondary); font-weight: 600; }
.soda-feature__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .soda-feature__inner { grid-template-columns: 1fr; gap: 32px; }
  .soda-feature__media { aspect-ratio: 5/3; }
}

/* Patient portal feature */
.portal-feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.portal-feature__copy .section__eyebrow { display: inline-block; margin-bottom: 12px; }
.portal-feature__copy .section__title { margin-bottom: .6rem; }
.portal-feature__copy .section__lede { margin-bottom: 1.4rem; max-width: 34em; }
.portal-feature__list { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: 12px; }
.portal-feature__list li { position: relative; padding-left: 28px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.5; }
.portal-feature__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-primary); box-shadow: 0 0 0 4px rgba(155,201,170,.25); }
.portal-feature__list strong { color: var(--brand-secondary); font-weight: 600; }
.portal-feature__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.portal-feature__media { display: flex; justify-content: center; }
.portal-feature__phones { position: relative; display: flex; align-items: center; justify-content: center; gap: 0; background: radial-gradient(120% 120% at 50% 0%, var(--brand-cream) 0%, #fff 75%); border: 1px solid var(--rule-2); border-radius: var(--radius-lg); padding: 36px 24px; width: 100%; }
.portal-feature__phone { width: 46%; height: auto; display: block; border-radius: 30px; filter: drop-shadow(0 22px 36px rgba(70,47,41,.22)); }
.portal-feature__phone--back { transform: translateY(-22px) rotate(-4deg); z-index: 1; }
.portal-feature__phone--front { transform: translateY(22px) translateX(-12px) rotate(4deg); z-index: 2; }
.portal-feature__install { margin-top: 56px; text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; background: var(--brand-cream); border: 1px solid var(--rule-2); border-radius: var(--radius-lg); padding: 36px 32px; }
.portal-feature__install h3 { font-family: var(--font-serif); color: var(--brand-secondary); font-size: 1.55rem; margin: 0 0 .6rem; }
.portal-feature__install p { color: var(--ink-2); margin: 0 auto 1.4rem; max-width: 52ch; line-height: 1.6; }
@media (max-width: 900px) {
  .portal-feature__inner { grid-template-columns: 1fr; gap: 36px; }
  .portal-feature__media { order: -1; }
  .portal-feature__phones { max-width: 420px; margin: 0 auto; }
}

/* ===== About / story ===== */
.story { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.story__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story p:first-of-type::first-letter { font-family: var(--font-serif); font-size: 3.6em; float: left; line-height: .9; padding-right: .08em; color: var(--brand-primary-deep); font-weight: 600; margin-top: 2px; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Reviews ===== */
.reviews-cta { background: linear-gradient(135deg, var(--brand-primary-deep) 0%, #3F8862 100%); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.reviews-cta h2 { color: #fff; }
.reviews-cta p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 28px; font-size: 1.08rem; }
.reviews-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.reviews-cta .btn--outline { color: #fff; border-color: rgba(255,255,255,.6); }
.reviews-cta .btn--outline:hover { background: #fff; color: var(--brand-primary-deep); }
.reviews-cta .btn--secondary { background: var(--brand-secondary); border-color: var(--brand-secondary); }

/* ===== Map ===== */
.map-embed { width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 0; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--brand-secondary); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: ""; width: 14px; height: 14px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s; flex-shrink: 0; margin-top: -6px; }
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq__body { padding: 0 0 22px; color: var(--ink-2); }
.faq__body p { margin-bottom: .6em; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info p { margin: 0 0 .6em; }
.contact-info a { color: var(--brand-secondary); }
.contact-info__block { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.contact-info__block:last-of-type { border-bottom: 0; }
.contact-info__label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-primary-deep); margin-bottom: 6px; }
.contact-info__value { font-size: 1.15rem; font-family: var(--font-serif); color: var(--brand-secondary); }
.contact-info__value a { text-decoration: none; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Page header (interior pages) ===== */
.page-header { background: var(--bg-soft); padding: 48px 0 28px; border-bottom: 1px solid var(--rule); }
.page-header__inner { max-width: 760px; }
.page-header__crumbs { font-size: .85rem; color: var(--ink-3); margin-bottom: 12px; }
.page-header__crumbs a { color: var(--ink-3); text-decoration: none; }
.page-header__crumbs a:hover { color: var(--brand-secondary); text-decoration: underline; }
.page-header__crumbs span { margin: 0 .5em; opacity: .5; }
.page-header h1 { color: var(--brand-secondary); margin: 0 0 .35em; }
.page-header__lede { font-size: 1.15rem; color: var(--ink-2); margin: 0; max-width: 38em; }

/* Service detail hero band */
.service-hero { position: relative; height: 320px; overflow: hidden; border-bottom: 1px solid var(--rule); }
.service-hero img { width: 100%; height: 100%; object-fit: cover; }
.service-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,20,16,.35) 0%, rgba(27,20,16,.85) 100%); z-index: 1; }
.service-hero__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: 40px; color: #fff; z-index: 2; }
.service-hero__crumbs { font-size: .9rem; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.service-hero__crumbs a { color: inherit; text-decoration: none; }
.service-hero__crumbs a:hover { text-decoration: underline; }
.service-hero__crumbs span { margin: 0 .5em; opacity: .7; }
.service-hero h1 { color: #fff; margin: 0; text-shadow: 0 2px 16px rgba(0,0,0,.35); }

.prose { max-width: 740px; }
.prose h2 { margin-top: 2em; color: var(--brand-secondary); }
.prose h3 { margin-top: 1.6em; }
.prose ul li, .prose ol li { color: var(--ink-2); }
.prose blockquote { border-left: 4px solid var(--brand-primary-deep); padding: .4em 0 .4em 1.2em; color: var(--ink-2); font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; margin: 1.5em 0; }
.prose .lead { font-size: 1.18rem; color: var(--ink-2); line-height: 1.6; }
.prose .cols-list { columns: 2; column-gap: 40px; padding-left: 1.1em; }
@media (max-width: 560px) { .prose .cols-list { columns: 1; } }
.prose .menu-table { width: 100%; border-collapse: collapse; margin: 1.2em 0; max-width: 420px; }
.prose .menu-table th { text-align: left; font-weight: 600; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--rule); font-family: var(--font-sans); }
.prose .menu-table td { text-align: right; color: var(--brand-secondary); font-weight: 700; padding: 12px 0; border-bottom: 1px solid var(--rule); white-space: nowrap; }
.prose .menu-table tr:last-child th, .prose .menu-table tr:last-child td { border-bottom: none; }
.prose .menu-table em { font-style: italic; font-weight: 400; color: var(--ink-2); font-size: .9em; }
.prose .fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 1.8em 0; }
.prose .fact { background: var(--brand-cream); border: 1px solid var(--rule-2); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; }
.prose .fact__num { font-family: var(--font-serif); font-size: 1.55rem; line-height: 1.1; color: var(--brand-secondary); font-weight: 700; }
.prose .fact__label { font-size: .92rem; line-height: 1.45; color: var(--ink-2); }
@media (max-width: 640px) { .prose .fact-grid { grid-template-columns: 1fr; } }

/* Pull quote section */
.pullquote { background: var(--brand-cream); padding: 64px 0; text-align: center; }
.pullquote blockquote { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.35; color: var(--brand-secondary); max-width: 760px; margin: 0 auto; font-style: italic; }
.pullquote blockquote::before { content: "\201C"; display: block; font-size: 4rem; line-height: .8; color: var(--brand-primary-deep); margin-bottom: 8px; }
.pullquote cite { display: block; font-style: normal; font-size: 1rem; color: var(--ink-3); margin-top: 20px; font-family: var(--font-sans); }

/* Team strip */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.team-card__img { aspect-ratio: 4/5; background: var(--bg-soft); }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 18px 20px 22px; }
.team-card__name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--brand-secondary); margin: 0; }
.team-card__role { font-size: .9rem; color: var(--ink-3); margin: 4px 0 0; }

/* Sidebar service CTA */
.service-cta-box { background: var(--brand-cream); border: 1px solid var(--rule-2); border-radius: var(--radius); padding: 28px; margin-top: 32px; }
.service-cta-box h3 { color: var(--brand-secondary); margin-top: 0; }
.service-cta-box p { color: var(--ink-2); margin-bottom: 18px; }

/* Two-col content */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .cols-2 { grid-template-columns: 1fr; gap: 24px; } }

/* Mobile CTA bar */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--rule); padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px)); display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-cta-bar__btn { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 12px; min-height: 56px; background: var(--brand-cream); border: 1.5px solid var(--rule-2); border-radius: 12px; color: var(--brand-secondary); text-decoration: none; font-weight: 600; font-size: .85rem; }
.mobile-cta-bar__btn--primary { background: var(--brand-primary-deep); color: #fff; border-color: var(--brand-primary-deep); }
@media (min-width: 1025px) { .mobile-cta-bar { display: none !important; } }

/* Cookie banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: var(--brand-secondary); color: var(--brand-cream); padding: 12px calc(12px + env(safe-area-inset-right,0px)) calc(12px + env(safe-area-inset-bottom,0px)) calc(12px + env(safe-area-inset-left,0px)); border-top: 3px solid var(--brand-primary); }
.cookie-banner__inner { display: flex; align-items: center; gap: 18px; }
.cookie-banner__copy { margin: 0; font-size: .92rem; flex: 1; }
.cookie-banner__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cookie-banner__link { color: var(--brand-cream); text-decoration: underline; font-size: .9rem; }
.cookie-banner .btn--ghost { background: transparent; color: var(--brand-cream); border-color: rgba(255,255,255,.4); }
.cookie-banner .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.cookie-banner .btn--primary { background: var(--brand-primary); color: var(--brand-secondary); border-color: var(--brand-primary); }
@media (max-width: 700px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }
}

/* Footer */
.footer { background: var(--brand-secondary); color: var(--brand-cream); padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__col h3 { color: #fff; font-family: var(--font-sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 18px; }
.footer__col p, .footer__col address { color: var(--brand-cream); opacity: .9; margin: 0 0 .6em; font-style: normal; font-size: .95rem; line-height: 1.6; }
.footer__col a { color: var(--brand-cream); text-decoration: none; opacity: .9; }
.footer__col a:hover { color: #fff; text-decoration: underline; opacity: 1; }
.footer__logo { display: inline-block; margin-bottom: 16px; }
.footer__logo img { height: auto; width: auto; max-height: 72px; max-width: 220px; display: block; }
.footer__fallback { font-family: var(--font-serif); font-size: 1.6rem; color: var(--brand-primary); }
.footer__tag { font-size: .95rem; color: var(--brand-cream); opacity: .85; max-width: 32ch; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; opacity: .85; }
.footer__social a:hover { background: var(--brand-primary); color: var(--brand-secondary); border-color: var(--brand-primary); opacity: 1; }
.footer__newpt { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.15); margin-top: 14px !important; font-size: .85rem !important; }
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li + li { margin-top: 8px; }
.footer__links a { font-size: .95rem; }
.footer__bottom { margin-top: 48px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom-inner small { color: var(--brand-cream); opacity: .7; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: .85rem; opacity: .85; }
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; } .footer__col--brand { grid-column: 1 / -1; } }
@media (max-width: 540px) { .footer__inner { grid-template-columns: 1fr; } .footer__bottom-inner { flex-direction: column; align-items: flex-start; } }

/* Bottom CTA when mobile bar present */
@media (max-width: 1024px) { body { padding-bottom: 72px; } }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Team page */
.section--team { padding: 88px 0; }
@media (max-width: 740px) { .section--team { padding: 56px 0; } }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 56px; align-items: start; }
@media (max-width: 740px) { .team-grid { grid-template-columns: 1fr; gap: 32px; } }
.team-card { padding: 0; background: #fff; border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.team-card--detailed { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; padding: 32px; gap: 4px; }
@media (max-width: 740px) { .team-card--detailed { flex-direction: column; } }
.team-card__img { flex-shrink: 0; background: var(--bg-soft); border-radius: 8px; overflow: hidden; }
.team-card--detailed .team-card__img { width: 220px; aspect-ratio: 384/460; align-self: flex-start; }
@media (max-width: 740px) { .team-card--detailed .team-card__img { width: 200px; margin: 24px auto 0; } }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card:not(.team-card--detailed) .team-card__img { width: 200px; aspect-ratio: 384/460; margin: 24px auto 0; }
.team-card__body { padding: 4px 8px 4px 28px; flex: 1; }
.team-card:not(.team-card--detailed) .team-card__body { padding: 24px 24px 28px; }
@media (max-width: 740px) { .team-card__body { padding: 24px; } }
.team-card__name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--brand-secondary); margin: 0 0 6px; }
.team-card__role { color: var(--brand-primary-deep); font-weight: 600; font-size: 1rem; margin: 0 0 16px; }
.team-card p { font-size: .98rem; line-height: 1.7; }
.team-card p + p { margin-top: 1em; }

/* Reviews page */
.review-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.quote-wall { list-style: none; padding: 0; margin: 0; columns: 3 280px; column-gap: 32px; }
.quote-wall .quote { break-inside: avoid; background: #fff; border-left: 3px solid var(--brand-primary); padding: 16px 18px; margin: 0 0 18px; font-style: italic; color: var(--ink); border-radius: 4px; box-shadow: 0 1px 3px rgba(70,47,41,.05); font-size: .97rem; line-height: 1.55; }

/* News page */
.news-item { padding: 28px 0; border-bottom: 1px solid var(--rule); }
.news-item:last-child { border-bottom: 0; }
.news-item--with-image { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; }
@media (max-width: 640px) { .news-item--with-image { grid-template-columns: 1fr; gap: 16px; } }
.news-item__media img { width: 100%; height: auto; border: 1px solid var(--rule); border-radius: 6px; display: block; }
.news-item__title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--brand-secondary); margin: 0 0 6px; }
.news-item__meta { font-size: .9rem; color: var(--muted); margin: 0 0 14px; text-transform: uppercase; letter-spacing: .04em; }
.news-item__summary { font-size: 1.05rem; line-height: 1.65; }
.news-item__link { color: var(--brand-primary-deep); font-weight: 600; }

/* Downloads block */
.downloads { background: #fff; border: 1px solid var(--rule); border-radius: 12px; padding: 20px 24px; margin: 28px 0; }
.downloads h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--brand-secondary); margin: 0 0 12px; }
.downloads ul { list-style: none; padding: 0; margin: 0; }
.downloads li { padding: 8px 0; border-top: 1px solid var(--rule); }
.downloads li:first-child { border-top: 0; }
.downloads a { display: flex; align-items: center; gap: 10px; color: var(--brand-primary-deep); font-weight: 500; }
.downloads a::before { content: ""; display: inline-block; width: 16px; height: 20px; background: var(--brand-primary); -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/></svg>') no-repeat center / contain; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/></svg>') no-repeat center / contain; flex-shrink: 0; }
.downloads small { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; margin-top: 2px; }

/* Migration top-up additions (newsletter, form embeds) */
.form-embed {
  margin-top: 24px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 24px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #d4cdc1;
  border-radius: 6px;
  font-family: inherit;
}
.newsletter-form input[type="email"]:focus {
  outline: 2px solid var(--color-primary, #2d6a4f);
  outline-offset: 1px;
}
.newsletter-form button { flex: 0 0 auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.photo-grid figure { margin: 0; border-radius: 8px; overflow: hidden; background: #f3efe7; aspect-ratio: 4/3; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
