@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/public-sans-latin-400-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/public-sans-latin-ext-400-700.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --bg: #f6f4ed;
  --panel: #fffef9;
  --panel-2: #eef5ed;
  --ink: #21262c;
  --muted: #5c6666;
  --line: rgba(33, 38, 44, 0.14);
  --accent: #167a72;
  --accent-strong: #12665f;
  --brand-charcoal: #21262c;
  --brand-peach: #f8d2ba;
  --brand-cream: #faedc3;
  --brand-lime: #dff1ae;
  --brand-mint: #ace8c5;
  --brand-turquoise: #79ded1;
  --brand-gradient: linear-gradient(135deg, var(--brand-peach) 0%, var(--brand-cream) 30%, var(--brand-lime) 56%, var(--brand-mint) 76%, var(--brand-turquoise) 100%);
  --shadow: 0 24px 70px rgba(33, 38, 44, 0.12);
  --font-sans: "Public Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 10% -10%, rgba(121, 222, 209, 0.2), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(248, 210, 186, 0.22), transparent 30rem),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(18, 102, 95, 0.35);
  outline-offset: 4px;
}
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--brand-charcoal);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background-color: rgba(255, 254, 249, 0.94);
  backdrop-filter: blur(18px);
}
.site-header.header-enhanced {
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}
.site-header.header-enhanced.header-at-top:not(.menu-open) {
  border-color: transparent;
  background-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.site-header.header-enhanced.is-scrolled,
.site-header.header-enhanced.menu-open {
  border-bottom-color: rgba(33, 38, 44, 0.16);
  background-color: rgba(238, 245, 237, 0.98);
  box-shadow: 0 10px 30px rgba(33, 38, 44, 0.1);
  backdrop-filter: blur(18px);
}

.nav, main, .footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand, .nav-links, .hero-actions, .social, .filters { display: flex; align-items: center; gap: 14px; }
.brand { font-weight: 650; }
.brand-mark, .brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--ink);
  background: var(--brand-gradient);
  box-shadow: 0 16px 38px rgba(121, 222, 209, 0.2);
}
.brand-logo { object-fit: cover; border-radius: 50%; background: none; }

.nav-links { flex-wrap: wrap; color: var(--muted); font-weight: 600; font-size: 0.94rem; }
.nav-links a { position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"], .social a:hover { color: var(--accent); }
.nav-links a[href="/contact"] { padding: 9px 15px; border-radius: 999px; background: var(--brand-charcoal); color: #fff; }
.nav-links a[href="/contact"]:hover { background: var(--accent-strong); color: #fff; }
.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 22px; height: 2px; margin: auto; border-radius: 999px; background: currentColor; content: ""; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; left: 0; }
.nav-toggle span::after { position: absolute; top: 7px; left: 0; }
.site-header.menu-open .nav-toggle span { background: transparent; }
.site-header.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.button, .filters button {
  border: 1px solid var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand-charcoal);
  color: #fff;
  font-weight: 650;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(33, 38, 44, 0.18);
  cursor: pointer;
}
.button-secondary, .filters button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: none;
}
.button:hover, .filters button:hover { transform: translateY(-1px); }
.filters button[aria-pressed="true"] { background: var(--accent-strong); color: #fff; }
[hidden] { display: none !important; }

.hero, .page-hero {
  padding: 68px 0 50px;
}
.showcase-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.68fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}
.hero-copy { max-width: 790px; }
.question-led-hero {
  min-height: 0;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(38px, 5vh, 60px);
  padding-bottom: clamp(38px, 5vh, 60px);
}
.question-led-hero .hero-copy { max-width: 760px; }
.question-led-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 3.15vw, 2.65rem);
  line-height: 1.08;
}
.hero-heading-line { display: block; }
.hero-heading-line + .hero-heading-line { margin-top: 0.16em; }
.question-led-hero .hero-text {
  max-width: 660px;
  margin-top: 20px;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}
.hero-text-sentence { display: block; }
.hero-text-sentence + .hero-text-sentence { margin-top: 0.55em; }
.hero-question-panel {
  align-self: center;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(255, 254, 249, 0.98), rgba(121, 222, 209, 0.13));
  box-shadow: var(--shadow);
}
.hero-question-panel h2 { max-width: 440px; font-size: clamp(1.45rem, 2vw, 1.9rem); }
.hero-question-panel ul { display: grid; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; }
.hero-question-panel li { padding: 12px 0; border-top: 1px solid var(--line); font-weight: 600; line-height: 1.4; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 650;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1, h2, h3 { margin: 0; line-height: 1.17; letter-spacing: 0; font-weight: 650; text-wrap: balance; }
h1 { max-width: 980px; font-size: clamp(2.65rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 2.6vw, 2.65rem); }
h3 { font-size: 1.32rem; }
.hero-text, .page-hero p, .intro p, .lede { color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.32rem); max-width: 760px; }
.hero-text { margin: 24px 0 0; color: var(--ink); font-size: clamp(1.22rem, 1.8vw, 1.55rem); line-height: 1.45; }
.hero-support { max-width: 680px; margin: 16px 0 0; color: var(--muted); font-size: 1.02rem; }
.hero-actions, .filters { flex-wrap: wrap; margin-top: 24px; }
.credibility-line { margin: 16px 0 0; color: var(--muted); font-size: 0.82rem; font-weight: 600; }
.offer-shortcuts { display: none; }

.hero-card, .card, .resource-card, .post {
  border: 1px solid var(--line);
  background: rgba(255, 254, 249, 0.9);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.hero-card { display: grid; gap: 18px; padding: clamp(26px, 4vw, 38px); }
.offer-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 254, 249, 0.98) 0%, rgba(255, 254, 249, 0.96) 58%, rgba(172, 232, 197, 0.2) 82%, rgba(121, 222, 209, 0.34) 100%) padding-box,
    var(--brand-gradient) border-box;
  color: var(--brand-charcoal);
  border: 1px solid transparent;
  box-shadow: 0 28px 70px rgba(33, 38, 44, 0.15);
}
.offer-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -130px;
  border-radius: 50%;
  background: rgba(121, 222, 209, 0.12);
  box-shadow: inset 0 0 56px rgba(255, 255, 255, 0.62);
}
.offer-card::after { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--brand-gradient); }
.offer-card h2 { max-width: 430px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.offer-card .card-kicker { color: #305d59; }
.card-kicker, .section-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.offer-list { display: grid; gap: 0; padding: 0; margin: 4px 0 0; list-style: none; }
.offer-list li { border-top: 1px solid rgba(33, 38, 44, 0.15); }
.offer-list a { display: grid; grid-template-columns: 34px 1fr; gap: 2px 12px; padding: 15px 0; }
.offer-list a:hover strong, .offer-link:hover { color: #12665f; }
.offer-list span { grid-row: 1 / 3; color: #305d59; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.04em; }
.offer-list strong { font-size: 1rem; line-height: 1.35; }
.offer-list small { color: #4d5d5c; font-size: 0.82rem; line-height: 1.4; }
.offer-link { justify-self: start; color: var(--brand-charcoal); font-size: 0.86rem; font-weight: 700; }
.stat { display: block; font-size: 2.65rem; font-weight: 700; letter-spacing: 0; }
.stat-label, .resource-card p, .resource-card small, .card p, .footer p, .post p, .post li { color: var(--muted); }

.section { padding: 76px 0; }
.intro { max-width: 1080px; margin-left: 0; }
.intro h2 { margin: 16px 0 24px; }
.intro p:not(.section-label) { font-size: clamp(1.22rem, 2.1vw, 1.65rem); line-height: 1.48; max-width: 1040px; }
.grid, .showcase-grid { display: grid; gap: 22px; }
.three-columns, .showcase-grid { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.two-columns { grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); }
.card { padding: 30px; }
.card h2 { font-size: 1.55rem; margin-bottom: 12px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-heading h2 { max-width: 850px; }
.text-link { flex: 0 0 auto; color: var(--accent); font-weight: 700; }
.text-link:hover { color: var(--ink); }
.service-card { min-height: 280px; display: flex; flex-direction: column; align-items: flex-start; }
.service-card, .offer-grid .card { position: relative; overflow: hidden; }
.service-card::before, .offer-grid .card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--brand-gradient); }
.service-card:nth-child(2)::before, .offer-grid .card:nth-child(2)::before { background: linear-gradient(90deg, var(--brand-cream), var(--brand-lime), var(--brand-mint)); }
.service-card:nth-child(3)::before, .offer-grid .card:nth-child(3)::before { background: linear-gradient(90deg, var(--brand-lime), var(--brand-mint), var(--brand-turquoise)); }
.service-card h3 { margin: auto 0 12px; font-size: clamp(1.45rem, 2vw, 1.9rem); }
.services-overview .service-card h3 { margin: 26px 0 12px; }
.service-card p { margin-bottom: 0; }
.service-index { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
.offer-grid .card { scroll-margin-top: 100px; }
.offer-grid .card h2 { margin: 26px 0 16px; }
.offer-grid .card ul { margin: 20px 0 0; padding-left: 20px; color: var(--muted); }

.resource-card { overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.resource-card:hover { transform: translateY(-5px); border-color: rgba(22, 122, 114, 0.42); }
.resource-card a {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 14px;
  height: 100%;
  padding: 14px 14px 20px;
}
.resource-card img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; border-radius: 20px; border: 1px solid var(--line); }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 118px;
  height: 30px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(223, 241, 174, 0.72), rgba(121, 222, 209, 0.42));
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.resource-card p { margin: 0; }
.resource-card small { margin-top: auto; }
.resource-card h2 { font-size: 1.36rem; }

.article-page { padding: 54px 0 96px; }
.article-heading { max-width: 1040px; margin: 44px 0 34px; }
.article-heading h1 { font-size: clamp(2.25rem, 4vw, 3.6rem); }
.article-heading .lede { max-width: 900px; margin-top: 24px; }
.article-feature { width: 100%; max-height: 620px; aspect-ratio: 16 / 7; object-fit: cover; border: 1px solid var(--line); border-radius: 32px; box-shadow: var(--shadow); }
.article-layout, .legacy-page-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 320px); gap: clamp(52px, 8vw, 110px); align-items: start; min-width: 0; }
.article-layout { margin-top: 62px; }
.article-body, .legacy-page-body { width: 100%; max-width: min(75ch, 100%); color: var(--ink); font-size: 1.08rem; line-height: 1.82; }
.article-body > :first-child, .legacy-page-body > :first-child { margin-top: 0; }
.article-body h2, .legacy-page-body h2 { margin: 2.2em 0 0.72em; font-size: clamp(1.42rem, 2vw, 1.82rem); line-height: 1.22; scroll-margin-top: 100px; }
.article-body h3, .legacy-page-body h3 { margin: 1.9em 0 0.68em; font-size: 1.22rem; line-height: 1.3; letter-spacing: 0; scroll-margin-top: 100px; }
.article-body p, .legacy-page-body p { margin: 0 0 1.25em; }
.article-body a, .legacy-page-body a { color: var(--accent); font-weight: 650; text-decoration: underline; text-decoration-thickness: 0.08em; text-underline-offset: 0.17em; }
.article-body a:hover, .legacy-page-body a:hover { color: var(--brand-charcoal); }
.article-body, .legacy-page-body { overflow-wrap: anywhere; }
.article-body *, .legacy-page-body * { max-width: 100%; }
.article-body ul, .legacy-page-body ul { margin: 0 0 1.5em; padding-left: 1.4em; }
.article-body li, .legacy-page-body li { margin: 0.48em 0; }
.article-body blockquote, .legacy-page-body blockquote { margin: 2em 0; padding: 1.2em 1.5em; border-left: 6px solid var(--brand-turquoise); border-radius: 0 18px 18px 0; background: rgba(121, 222, 209, 0.13); font-size: 1.15rem; font-weight: 600; }
.article-body pre, .legacy-page-body pre { max-width: 100%; overflow-x: auto; margin: 0 0 1.6em; padding: 20px; border-radius: 18px; background: var(--brand-charcoal); color: #fff; font-size: 0.9rem; line-height: 1.6; tab-size: 2; }
.article-body pre code, .legacy-page-body pre code { font-family: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace; white-space: pre; }
.article-body :not(pre) > code, .legacy-page-body :not(pre) > code { padding: 0.12em 0.34em; border-radius: 0.35em; background: rgba(20, 58, 58, 0.09); font-family: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace; font-size: 0.9em; }
.article-aside { position: sticky; top: 100px; display: grid; gap: 22px; min-width: 0; }
.article-aside > div { padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 254, 249, 0.9); box-shadow: var(--shadow); }
.article-aside ol { display: grid; gap: 12px; margin: 16px 0 0; padding-left: 1.2em; color: var(--muted); }
.article-aside ol a:hover { color: var(--accent); }
.article-aside h2 { margin: 12px 0; font-size: 1.75rem; }
.article-aside p { color: var(--muted); }
.article-aside .button { margin-top: 8px; text-align: center; }
.aside-cta { background: linear-gradient(155deg, rgba(255, 254, 249, 0.98), rgba(121, 222, 209, 0.22)) !important; }
.legacy-page-hero { max-width: 1080px; }
.legacy-page-layout { padding-top: 54px; }
.booking-grid { grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); }
.booking-grid .service-card h2 { margin: auto 0 12px; }
.site-search { max-width: 760px; margin-top: 28px; }
.site-search label { display: block; margin-bottom: 8px; font-weight: 700; }
.site-search > div { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.site-search input { min-width: 0; padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font: inherit; }
.site-search input:focus { outline: 3px solid rgba(22, 122, 114, 0.2); border-color: var(--accent); }
.search-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr)); gap: 20px; }
.search-result { border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 254, 249, 0.9); box-shadow: var(--shadow); }
.search-result a { display: grid; gap: 13px; height: 100%; padding: 24px; }
.search-result h2 { font-size: 1.5rem; }
.search-result p, .search-result small { margin: 0; color: var(--muted); }

.decision-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: center;
  margin: 70px auto 96px;
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(33, 38, 44, 0.12);
  border-radius: 34px;
  background: var(--brand-gradient);
  box-shadow: var(--shadow);
}
.decision-strip h2 { margin-top: 14px; }
.decision-strip > div:last-child { color: var(--muted); font-size: 1.08rem; }
.decision-strip .button { margin-top: 18px; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.leader-section > div:last-child { max-width: 72ch; }
.leader-section > div:last-child p { margin: 0 0 1.2em; color: var(--muted); font-size: 1.08rem; }
.rich-list { color: var(--muted); font-size: 1.12rem; }
.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.7fr);
  gap: 26px;
  align-items: start;
}
.faq-index {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 132px);
  overflow: auto;
}
.faq-index h2 { font-size: 1.25rem; }
.faq-index ol { margin: 16px 0 0; padding-left: 22px; color: var(--muted); }
.faq-index li + li { margin-top: 10px; }
.faq-index a { color: var(--accent-strong); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.faq {
  display: grid;
  gap: 18px;
}
.faq-item {
  scroll-margin-top: 108px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.74);
  box-shadow: 0 18px 44px rgba(33, 38, 44, 0.07);
}
.faq-item h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
.faq-item p { margin: 12px 0 0; color: var(--muted); font-size: 1.05rem; }

.post { max-width: 900px; margin: 56px auto; padding: clamp(22px, 4vw, 44px); }
.back { color: var(--accent); font-weight: 700; }
.post-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 24px; margin: 24px 0; border: 1px solid var(--line); }
.post h1 { font-size: clamp(2.25rem, 5vw, 4.2rem); }
.post h2 { font-size: 1.8rem; margin-top: 34px; }
.post .button { margin-top: 16px; }

.footer {
  padding: 36px 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer strong { color: var(--ink); }
.footer > div:first-child { max-width: 590px; }
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-logo { width: 64px; height: 64px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.footer-brand p { margin: 6px 0 0; }
.footer-brand .footer-legal-disclosure { max-width: 68ch; margin-top: 12px; font-size: 0.78rem; line-height: 1.5; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 14px; }
.footer-links a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.cookie-settings-link, .inline-cookie-settings, .cookie-manage-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.social { align-items: flex-start; flex-wrap: wrap; }
.social-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--brand-charcoal);
  font-weight: 650;
}
.social-icon svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: currentColor;
}
.social-icon img { width: 39px; height: 39px; object-fit: contain; }
.legal-page .article-heading { max-width: 860px; }
.legal-page .article-body { max-width: 82ch; }
.storage-list { display: grid; gap: 14px; margin: 0 0 2em; }
.storage-list > div { padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 254, 249, 0.78); }
.storage-list dt { font-weight: 700; }
.storage-list dd { margin: 5px 0 0; color: var(--muted); }
.cookie-banner {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(33, 38, 44, 0.2);
  border-radius: 28px;
  background: rgba(255, 254, 249, 0.98);
  box-shadow: 0 30px 90px rgba(33, 38, 44, 0.28);
}
.cookie-banner h2, .cookie-dialog h2 { font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.cookie-banner p { margin: 10px 0; color: var(--muted); }
.cookie-banner-copy > a { color: var(--accent-strong); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: grid; gap: 10px; }
.cookie-banner-actions .button { width: 100%; text-align: center; }
.cookie-manage-link { justify-self: center; padding: 8px; }
@media (min-width: 921px) {
  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 16px 20px;
    border-radius: 20px;
  }
  .cookie-banner h2 { margin: 0; font-size: 1.3rem; }
  .cookie-banner p { margin: 4px 0; font-size: .9rem; line-height: 1.4; }
  .cookie-banner-copy .eyebrow { margin: 0 0 2px; font-size: .7rem; }
  .cookie-banner-copy > a { font-size: .88rem; }
  .cookie-banner-actions {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 6px 10px;
  }
  .cookie-banner-actions .button { width: auto; padding: 11px 16px; white-space: nowrap; }
  .cookie-manage-link { grid-column: 1 / -1; padding: 2px 8px; }
}
.cookie-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(33, 38, 44, 0.35);
}
.cookie-dialog::backdrop { background: rgba(33, 38, 44, 0.56); backdrop-filter: blur(4px); }
.cookie-dialog form { padding: clamp(24px, 5vw, 40px); }
.cookie-dialog-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.cookie-dialog-heading .eyebrow { margin-bottom: 8px; }
.cookie-dialog-close { width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font: 400 1.7rem/1 var(--font-sans); cursor: pointer; }
.cookie-dialog > form > p { color: var(--muted); }
.cookie-option { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; margin-top: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(238, 245, 237, 0.65); }
.cookie-option p { margin: 5px 0 0; color: var(--muted); }
.cookie-option span { color: var(--accent-strong); font-size: .9rem; font-weight: 700; }
.cookie-option input { width: 48px; height: 26px; accent-color: var(--accent-strong); cursor: pointer; }
.cookie-dialog-note { font-size: .94rem; }
.cookie-dialog-note a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.cookie-dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.contact-form-section { border-top: 1px solid var(--line); }
.enquiry-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: 28px; background: var(--panel); box-shadow: var(--shadow); }
.form-field, .form-field-wide { display: grid; gap: 8px; }
.form-field-wide, .form-acknowledgement { grid-column: 1 / -1; }
.form-field label, .form-field-wide label { font-weight: 700; }
.form-field label span { color: var(--muted); font-weight: 400; }
.form-field input, .form-field-wide input, .form-field select, .form-field-wide textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); font: inherit; }
.form-field input:focus, .form-field-wide input:focus, .form-field select:focus, .form-field-wide textarea:focus { outline: 3px solid rgba(25, 122, 108, .22); outline-offset: 2px; border-color: var(--accent-strong); }
.form-field-wide textarea { resize: vertical; }
.form-acknowledgement { display: flex; align-items: flex-start; gap: 12px; }
.form-acknowledgement input { width: 22px; height: 22px; flex: 0 0 22px; }
.form-acknowledgement a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.form-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-submit p { margin: 0; color: var(--muted); }
.form-submit .form-status { min-height: 1.5em; font-weight: 700; }
.form-submit .form-status.is-success { color: #176447; }
.form-submit .form-status.is-error { color: #9f2d20; }
.form-submit .button:disabled { cursor: wait; opacity: .68; }
.form-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; white-space: nowrap; }
.contact-alternatives { border-top: 1px solid var(--line); }
.email-contact .public-email { overflow-wrap: anywhere; color: var(--ink); font-weight: 700; }
.copy-email-status { min-height: 1.5em; color: var(--muted); font-size: .92rem; }

.route-preview {
  position: relative;
  overflow: hidden;
  border-color: transparent;
  background:
    linear-gradient(155deg, rgba(255, 254, 249, 0.98), rgba(255, 254, 249, 0.94) 64%, rgba(121, 222, 209, 0.26)) padding-box,
    var(--brand-gradient) border-box;
}
.route-preview::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--brand-gradient); }
.route-preview h2 { font-size: clamp(1.65rem, 2.7vw, 2.35rem); }
.route-preview ol { display: grid; gap: 10px; margin: 4px 0 0; padding: 0; list-style: none; }
.route-preview li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.route-preview li span { color: var(--accent); font-size: .76rem; font-weight: 700; }
.route-preview li strong { font-size: 1.04rem; }

.customer-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.customer-question-grid li {
  position: relative;
  padding: 20px 22px 20px 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 254, 249, .8);
}
.customer-question-grid li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-lime), var(--brand-turquoise));
  box-shadow: 0 0 0 5px rgba(121, 222, 209, .12);
}
.customer-question-grid li:last-child { grid-column: 1 / -1; }
.customer-questions-summary { max-width: 940px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.1rem, 1.8vw, 1.3rem); }

.situation-grid, .route-questions, .consequence-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.situation-grid li, .route-questions li, .consequence-list li {
  position: relative;
  padding: 20px 22px 20px 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 254, 249, .8);
}
.situation-grid li::before, .route-questions li::before, .consequence-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-lime), var(--brand-turquoise));
  box-shadow: 0 0 0 5px rgba(121, 222, 209, .12);
}
.situation-grid li:last-child { grid-column: 1 / -1; }

.route-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  counter-reset: route-step;
}
.route-steps li { display: inline-flex; align-items: center; min-height: 48px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 254, 249, .88); font-weight: 650; }
.route-steps li:not(:last-child)::after { content: "→"; margin-left: 16px; color: var(--accent); }
.route-questions { margin-top: 28px; }
.consequence-section { padding-top: 38px; }
.starting-point-card { display: flex; min-height: 300px; flex-direction: column; align-items: flex-start; }
.starting-point-card h3 { margin: 34px 0 12px; font-size: clamp(1.65rem, 2.4vw, 2.2rem); }
.starting-point-card .button { margin-top: auto; }
.capability-lead { max-width: 900px; margin-top: 30px; padding: 30px; border-top: 1px solid var(--line); color: var(--muted); }
.capability-lead p { margin: 0; }
.experience-section { scroll-margin-top: 100px; }
.section-support { max-width: 700px; margin: 12px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.approved-claims .approved-claim { min-height: 210px; }

.assessment-boundary { margin-top: 22px; padding: 18px 20px; border-left: 5px solid var(--brand-turquoise); border-radius: 0 16px 16px 0; background: rgba(121, 222, 209, .1); font-size: 1rem !important; }
.page-hero.route-check-hero { padding-bottom: 20px; }
.section.route-check-section { max-width: 980px; padding-top: 30px; }
.route-check-form { display: grid; gap: 18px; }
.route-question { margin: 0; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 254, 249, .9); box-shadow: 0 12px 34px rgba(33, 38, 44, .06); }
.route-question legend {
  float: left;
  display: flex;
  width: 100%;
  align-items: flex-start;
  margin: 0 0 18px;
  padding: 0;
  font-size: 1.14rem;
  font-weight: 650;
  line-height: 1.35;
}
.route-question legend span { display: inline-block; min-width: 36px; color: var(--accent); font-size: .76rem; letter-spacing: .04em; }
.route-options { clear: both; display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 0 36px; }
.route-options label { display: inline-flex; gap: 9px; align-items: center; min-height: 44px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); cursor: pointer; }
.route-options label:has(input:checked) { border-color: var(--accent); background: rgba(121, 222, 209, .16); }
.route-options input { width: 18px; height: 18px; accent-color: var(--accent); }
.route-question.is-missing { border-color: #a23f35; box-shadow: 0 0 0 3px rgba(162, 63, 53, .12); }
.route-check-actions, .route-result-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 12px; }
.route-check-error { min-height: 1.6em; margin: 0; color: #8a3028; font-weight: 650; }
.route-results { margin-top: 42px; padding: clamp(28px, 5vw, 54px); border: 1px solid var(--line); border-radius: 30px; background: var(--brand-gradient); box-shadow: var(--shadow); }
.route-result h2 { margin: 10px 0 18px; }
.route-result p:not(.eyebrow) { max-width: 72ch; font-size: 1.14rem; }
.text-button { min-height: 44px; padding: 8px 10px; border: 0; background: transparent; color: var(--accent); font: inherit; font-weight: 700; text-decoration: underline; cursor: pointer; }
.review-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.review-sections .card { box-shadow: 0 14px 42px rgba(33, 38, 44, .08); }
.review-sections .card ul { margin-bottom: 0; padding-left: 20px; color: var(--muted); }
.review-sections .review-boundary { grid-column: 1 / -1; background: linear-gradient(155deg, rgba(255, 254, 249, .98), rgba(121, 222, 209, .13)); }

@media (min-width: 1280px) {
  .question-led-hero .hero-heading-line { white-space: nowrap; }
}

@media (max-width: 920px) {
  .footer { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 12px 0; }
  .nav-links { grid-column: 1 / -1; width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 4px 0 8px; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; padding: 9px 12px; border-radius: 12px; }
  .site-header.nav-enhanced .nav-toggle { display: block; }
  .site-header.nav-enhanced .nav-links { display: none; }
  .site-header.nav-enhanced.menu-open .nav-links { display: grid; }
  .showcase-hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr); gap: clamp(28px, 4vw, 48px); }
  .question-led-hero { grid-template-columns: 1fr; gap: 30px; }
  .decision-strip { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
  .hero { min-height: auto; }
  .showcase-hero { min-height: auto; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  h1 { font-size: clamp(2.5rem, 9vw, 3.6rem); }
  .article-layout, .legacy-page-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-index { position: static; max-height: none; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .showcase-hero { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .nav, main, .footer { width: min(1240px, calc(100% - 28px)); }
  .nav-links { grid-template-columns: 1fr; }
  .hero, .page-hero { padding: 42px 0 36px; }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(2.15rem, 9.5vw, 2.75rem); }
  .hero-text { font-size: 1.25rem; }
  .question-led-hero h1 { font-size: clamp(2.15rem, 9.5vw, 2.75rem); }
  .question-led-hero .hero-text { font-size: 1.1rem; }
  .hero-question-panel { padding: 22px; border-radius: 24px; }
  .showcase-hero { gap: 30px; }
  .offer-shortcuts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 20px; }
  .offer-shortcuts a { display: grid; place-items: center; min-height: 54px; padding: 7px; border: 1px solid var(--line); border-radius: 14px; background: var(--brand-peach); color: var(--brand-charcoal); font-size: 0.74rem; font-weight: 700; line-height: 1.25; text-align: center; }
  .offer-shortcuts a:nth-child(2) { background: var(--brand-lime); }
  .offer-shortcuts a:nth-child(3) { background: var(--brand-turquoise); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { border-radius: 24px; }
  .decision-strip { margin: 44px auto 70px; border-radius: 24px; }
  .article-page { padding: 38px 0 68px; }
  .article-heading { margin: 30px 0 24px; }
  .article-heading h1 { font-size: clamp(2rem, 9vw, 2.65rem); }
  .article-feature { aspect-ratio: 16 / 10; border-radius: 22px; }
  .article-layout { margin-top: 40px; }
  .article-body, .legacy-page-body { font-size: 1.02rem; line-height: 1.78; }
  .site-search > div { grid-template-columns: 1fr; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); max-height: calc(100vh - 20px); overflow: auto; border-radius: 22px; }
  .cookie-option { grid-template-columns: 1fr; }
  .cookie-dialog-actions { display: grid; }
  .enquiry-form { grid-template-columns: 1fr; }
  .form-field-wide, .form-acknowledgement { grid-column: auto; }
  .customer-question-grid, .situation-grid, .route-questions, .consequence-list, .capability-lead, .review-sections { grid-template-columns: 1fr; }
  .customer-question-grid li:last-child, .situation-grid li:last-child, .review-sections .review-boundary { grid-column: auto; }
  .route-options { display: grid; margin-left: 0; }
  .route-steps { display: grid; }
  .route-steps li { justify-content: space-between; border-radius: 16px; }
  .section.route-check-section { padding-top: 20px; }
}

@media print {
  .site-header, .footer, .cookie-banner, .cookie-dialog, .route-check-hero, .route-check-form, .route-result-actions { display: none !important; }
  body { background: #fff; color: #000; }
  main, .route-check-section { width: 100%; max-width: none; margin: 0; padding: 0; }
  .route-results { display: block !important; margin: 0; padding: 0; border: 0; background: #fff; box-shadow: none; }
  .route-result[hidden] { display: none !important; }
  .route-result a { color: #000; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; }
  .site-header.header-enhanced { transition: none; }
}
