:root {
  --orange: #e56717;
  --orange-hover: #c94e08;
  --green: #127149;
  --green-deep: #0a5135;
  --green-pale: #e5f1e9;
  --ink: #17231c;
  --muted: #56635b;
  --paper: #fcfaf5;
  --white: #ffffff;
  --soft: #f1f3ed;
  --line: #d7ddd7;
  --focus: #1769aa;
  --shadow-sm: 0 8px 24px rgba(24, 39, 30, 0.07);
  --shadow-lg: 0 24px 70px rgba(24, 39, 30, 0.14);
  --radius-sm: 0.7rem;
  --radius: 1.25rem;
  --max: 75rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: var(--green-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--orange-hover); }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.skip-link { position: fixed; top: -6rem; left: 1rem; z-index: 100; padding: .7rem 1rem; color: #fff; background: var(--ink); border-radius: .4rem; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2.25rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2.25rem), 50rem); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(252,250,245,.96); border-bottom: 1px solid rgba(215,221,215,.92); backdrop-filter: blur(12px); }
.header-inner { min-height: 5.35rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand img { width: 226px; height: auto; }
.header-right, .site-nav { display: flex; align-items: center; }
.header-right { gap: .65rem; }
.site-nav { gap: .1rem; }
.site-nav a { padding: .62rem .72rem; border-radius: .5rem; color: var(--ink); text-decoration: none; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--green-pale); color: var(--green-deep); }
.menu-button { display: none; padding: .55rem .75rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: .55rem; font-weight: 750; cursor: pointer; }
.button { display: inline-flex; min-height: 2.85rem; align-items: center; justify-content: center; gap: .45rem; padding: .72rem 1rem; border: 2px solid transparent; border-radius: .62rem; text-decoration: none; font-weight: 800; line-height: 1.2; cursor: pointer; transition: background-color .15s ease, border-color .15s ease, transform .15s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: #151b17; background: var(--orange); box-shadow: 0 8px 20px rgba(229,103,23,.18); }
.button-primary:hover { color: #151b17; background: #f2792f; }
.button-secondary { color: #fff; background: var(--green-deep); }
.button-secondary:hover { color: #fff; background: var(--green); }
.button-outline { color: var(--ink); background: #fff; border-color: #aeb8b1; }
.button-outline:hover { color: var(--green-deep); border-color: var(--green); }
.header-book { white-space: nowrap; }
.eyebrow { margin: 0 0 .8rem; color: var(--green-deep); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.12; letter-spacing: -.025em; }
h1 { margin-bottom: 1.25rem; font-size: clamp(2.45rem, 4.7vw, 3.95rem); max-width: 20ch; }
h2 { margin-bottom: 1rem; font-size: clamp(1.9rem, 3.5vw, 2.85rem); }
h3 { margin-bottom: .55rem; font-size: 1.35rem; }
p { margin-top: 0; }
.lead { max-width: 60ch; color: #38463d; font-size: clamp(1.08rem, 1.8vw, 1.24rem); }
.hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 9vw, 7.8rem) 0 4rem; background: linear-gradient(128deg, #faf6ed 0 64%, #e2eee5 64%); }
.hero::before { content: ""; position: absolute; width: 30rem; height: 30rem; right: -14rem; bottom: -16rem; border: 5.5rem solid rgba(229,103,23,.11); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(18rem,.75fr); gap: clamp(2.5rem, 7vw, 6.5rem); align-items: center; }
.location-pill { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem; padding: .4rem .7rem; color: var(--green-deep); background: rgba(255,255,255,.72); border: 1px solid #c9d9cd; border-radius: 100px; font-size: .88rem; font-weight: 800; }
.location-pill::before { content: ""; width: .55rem; height: .55rem; background: var(--green); border-radius: 50%; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.help-panel { padding: 1.7rem; color: #fff; background: var(--ink); border-top: .38rem solid var(--orange); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.help-panel h2 { font-size: 1.7rem; }
.help-panel > p { color: #dce5df; }
.problem-list { display: grid; gap: .62rem; margin-top: 1.2rem; }
.problem-item { display: flex; align-items: center; gap: .8rem; padding: .72rem; background: rgba(255,255,255,.07); border-radius: .62rem; }
.problem-item span { display: grid; place-items: center; flex: 0 0 1.85rem; height: 1.85rem; color: #111812; background: var(--orange); border-radius: 50%; font-weight: 900; }
.trust-strip { position: relative; z-index: 2; margin-top: 3.4rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); background: #fff; border: 1px solid var(--line); border-radius: 1rem; box-shadow: var(--shadow-sm); }
.trust-item { padding: 1.1rem 1.25rem; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { display: block; margin-bottom: .08rem; color: var(--green-deep); }
.trust-item span { color: var(--muted); font-size: .92rem; }
.section { padding: clamp(3.8rem, 6vw, 5.7rem) 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--ink); }
.section-dark .lead { color: #dce5df; }
.section-heading { max-width: 50rem; margin-bottom: 2.3rem; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.card { padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card p { margin-bottom: 0; color: var(--muted); }
.icon-card { position: relative; padding-top: 4.5rem; }
.service-icon { display: grid; place-items: center; width: 2.35rem; height: 2.35rem; padding: .45rem; color: var(--green-deep); background: var(--green-pale); border-radius: .65rem; }
.icon-card > .service-icon { position: absolute; top: 1.35rem; left: 1.5rem; }
.card-kicker { display: inline-block; margin-bottom: .8rem; color: var(--orange-hover); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link { display: inline-flex; margin-top: 1.15rem; font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,7vw,6rem); align-items: start; }
.feature-box { padding: clamp(1.5rem,4vw,2.2rem); background: #fff; border: 1px solid var(--line); border-left: .4rem solid var(--orange); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.tick-list { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.tick-list li { position: relative; margin: .72rem 0; padding-left: 1.65rem; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; counter-reset: steps; }
.step { position: relative; padding: 1.45rem 1.45rem 1.45rem 4.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before { counter-increment: steps; content: counter(steps); position: absolute; top: 1.35rem; left: 1.25rem; display: grid; place-items: center; width: 2.2rem; height: 2.2rem; color: #fff; background: var(--green-deep); border-radius: 50%; font-weight: 900; }
.step h3 { font-size: 1.2rem; }
.step p { margin-bottom: 0; color: var(--muted); }
.wide-cta { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.wide-cta h2 { margin-bottom: .35rem; max-width: 19ch; }
.wide-cta .cta-actions { margin-top: 0; }
.page-hero { padding: clamp(3.8rem,7vw,6rem) 0; background: linear-gradient(130deg,#f7f2e9,#e4efe7); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem,4.5vw,3.65rem); }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-card { position: relative; padding: 1.55rem 1.55rem 1.55rem 1.85rem; border-top: .28rem solid var(--green); }
.service-card:nth-child(3n+2) { border-top-color: var(--orange); }
.service-card h2 { font-size: 1.55rem; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-card .service-icon { margin-bottom: 1rem; }
.pathway-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.pathway-card { padding: clamp(1.6rem,4vw,2.2rem); background: #fff; border: 1px solid var(--line); border-top: .3rem solid var(--orange); border-radius: var(--radius); box-shadow: var(--shadow-sm); scroll-margin-top: 7rem; }
.pathway-card:nth-child(2) { border-top-color: var(--green); }
.pathway-card h2, .pathway-card h3 { font-size: clamp(1.55rem,3vw,2.15rem); }
.area-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(18rem,.85fr); gap: clamp(2.5rem,7vw,6rem); align-items: center; }
.area-note { max-width: 62ch; color: var(--muted); font-size: .92rem; }
.map-card { margin: 0; padding: 1.35rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.map-card img { width: 100%; max-height: 27rem; object-fit: contain; }
.map-card figcaption { margin-top: .8rem; color: var(--muted); font-size: .78rem; line-height: 1.45; text-align: left; }
.feedback-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.feedback-card { margin: 0; padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.feedback-card blockquote { margin: 0 0 1rem; color: #334138; font-family: Georgia,"Times New Roman",serif; font-size: 1.08rem; line-height: 1.55; }
.feedback-card figcaption { color: var(--green-deep); font-weight: 850; }
.local-band { padding: 2rem; color: #fff; background: var(--green-deep); border-radius: var(--radius); }
.local-band p { margin-bottom: 0; color: #e1eee6; }
.contact-grid { display: grid; grid-template-columns: minmax(16rem,.72fr) minmax(0,1.28fr); gap: clamp(2.5rem,7vw,6rem); }
.contact-call { padding: 1.4rem; background: var(--green-pale); border-radius: 1rem; }
.contact-call span { display: block; color: var(--muted); font-size: .88rem; font-weight: 750; }
.contact-call a { font-family: Georgia,"Times New Roman",serif; font-size: 1.65rem; font-weight: 800; }
.form-card { padding: clamp(1.4rem,4vw,2.35rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.form-card > h2 { font-size: 2rem; }
.local-note { margin-bottom: 1.4rem; padding: .85rem 1rem; color: #563b06; background: #fff3d6; border: 1px solid #d4a542; border-radius: .65rem; font-size: .92rem; }
.privacy-note { margin-bottom: 1.4rem; color: var(--muted); font-size: .92rem; }
.contact-trap { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.form-errors { margin-bottom: 1.4rem; padding: 1rem; color: #76210f; background: #fff0eb; border: 1px solid #c65b43; border-radius: .65rem; }
.form-errors h3 { margin-bottom: .5rem; font-family: inherit; font-size: 1rem; letter-spacing: 0; }
.form-errors ul { margin: 0; padding-left: 1.25rem; }
.result-card { padding: clamp(1.7rem,5vw,3rem); background: #fff; border: 1px solid var(--line); border-top: .35rem solid var(--green); border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1.15rem; }
.field label, .legend { display: block; margin-bottom: .38rem; font-weight: 800; }
.field-hint { display: block; margin-top: .3rem; color: var(--muted); font-size: .84rem; }
.required { color: #a52f06; }
input, textarea, select { width: 100%; padding: .76rem .82rem; color: var(--ink); background: #fff; border: 1.5px solid #7e8c83; border-radius: .55rem; }
textarea { min-height: 8.5rem; resize: vertical; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: #b52b12; box-shadow: 0 0 0 2px rgba(181,43,18,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error { min-height: 1.25rem; margin: .25rem 0 0; color: #98240d; font-size: .85rem; font-weight: 700; }
fieldset { margin: 0 0 1.2rem; padding: 0; border: 0; }
.choice-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .55rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; padding: .66rem .7rem; text-align: center; background: #fff; border: 1.5px solid #9aa69e; border-radius: .55rem; font-weight: 750; cursor: pointer; }
.choice input:checked + span { color: #fff; background: var(--green-deep); border-color: var(--green-deep); }
.choice input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 3px; }
.form-status { min-height: 1.65rem; margin: 1rem 0 0; color: var(--green-deep); font-weight: 800; }
.form-card button[disabled] { cursor: wait; opacity: .72; transform: none; }
.spaced-heading { margin-top: 2rem; }
.site-footer { padding: 3rem 0; color: #dce5df; background: #0d1711; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.footer-brand img { width: 190px; margin-bottom: .8rem; padding: .2rem; background: #fff; border-radius: .4rem; }
.footer-brand p { max-width: 34rem; margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .9rem; }
.footer-links a { color: #fff; }
.footer-meta { margin: 1rem 0 0; text-align: right; font-size: .88rem; }
.mobile-actions { display: none; }

@media (max-width: 980px) {
  .header-book { display: none; }
  .hero-grid, .split, .contact-grid, .area-grid { grid-template-columns: 1fr; }
  .hero { background: linear-gradient(150deg,#faf6ed 0 78%,#e2eee5 78%); }
  .cards { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  body { padding-bottom: 4.6rem; }
  .container, .narrow { width: min(calc(100% - 1.5rem), var(--max)); }
  .header-inner { min-height: 4.65rem; }
  .brand img { width: 176px; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: calc(100% + .45rem); left: .75rem; right: .75rem; flex-direction: column; align-items: stretch; padding: .6rem; background: #fff; border: 1px solid var(--line); border-radius: .8rem; box-shadow: var(--shadow-lg); }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .78rem; }
  .hero { padding: 3.7rem 0 2.5rem; }
  h1 { font-size: clamp(2.35rem,11.5vw,3.35rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .cta-actions .button { flex: 1 1 10rem; }
  .trust-strip { margin-top: 2.5rem; }
  .trust-grid, .cards, .steps, .service-grid, .pathway-grid, .feedback-grid, .form-row { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--line); }
  .wide-cta, .footer-grid { align-items: flex-start; flex-direction: column; display: flex; }
  .wide-cta .cta-actions { width: 100%; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { text-align: left; }
  .mobile-actions { position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; padding: .6rem max(.75rem,env(safe-area-inset-right)) calc(.6rem + env(safe-area-inset-bottom)) max(.75rem,env(safe-area-inset-left)); background: rgba(252,250,245,.97); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(24,39,30,.1); backdrop-filter: blur(12px); }
  .mobile-actions .button { min-height: 2.65rem; padding: .6rem; }
}

@media (max-width: 400px) {
  .choice-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
