:root {
  --sage-900: #2f4a3f;
  --sage-800: #3a5a4c;
  --sage-700: #4a6d5c;
  --sage-500: #789a89;
  --sage-100: #dde8e0;
  --sage-50:  #eef3ef;
  --clay:      #c07a5b;
  --clay-dark: #9D5739;
  --clay-50:   #f7ece5;
  --paper:   #f6f2ea;
  --paper-2: #efe9dd;
  --white:   #ffffff;
  --ink:     #23302c;
  --muted:   #55635b;
  --line:    #e0d9cb;
  --line-2:  #cfc6b4;

  --shadow-xs: 0 1px 2px rgba(35, 48, 44, .05);
  --shadow-sm: 0 4px 16px -8px rgba(35, 48, 44, .28);
  --shadow-md: 0 18px 40px -24px rgba(35, 48, 44, .45);

  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --r-bubble: 24px 24px 24px 6px;

  --maxw: 1120px;
  --maxw-text: 68ch;

  --font-head: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 400; line-height: 1.18; letter-spacing: -.005em; }
h1 { font-size: clamp(2.1rem, 7.2vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 5.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3.6vw, 1.45rem); }

a { color: inherit; text-decoration: none; }
p a, .prose a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 3px; }
p a:hover, .prose a:hover { color: var(--sage-900); }

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

strong { font-weight: 700; }

:focus-visible { outline: 3px solid var(--clay-dark); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 500;
  background: var(--sage-900); color: #fff;
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700; transition: top .2s ease;
}
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 58px 0; }
.section.tight { padding: 42px 0; }
.bg-2 { background: var(--paper-2); }
.bg-sage { background: var(--sage-50); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay-dark); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--clay); border-radius: 2px; flex: 0 0 22px; }

.section-head { max-width: 62ch; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

.lead { font-family: var(--font-head); font-size: clamp(1.12rem, 3.4vw, 1.32rem); line-height: 1.55; color: var(--sage-800); }

.prose { max-width: var(--maxw-text); }
.prose p { margin-top: 14px; color: var(--muted); }
.prose h3 { margin-top: 30px; color: var(--sage-900); }
.prose ul { margin: 14px 0 0 0; padding-left: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; color: var(--muted); }
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: .62em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--clay); opacity: .8;
}

.narrow { max-width: 940px; margin-left: auto; margin-right: auto; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.center { text-align: center; }

.breath { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 0 18px; }
.breath span { display: block; height: 1px; width: 42px; background: var(--line-2); }
.breath i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px;
  font-family: inherit; font-size: 1rem; font-weight: 600; line-height: 1.2;
  cursor: pointer; border: 2px solid transparent; text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sage-800); box-shadow: var(--shadow-md); }
.btn-clay { background: var(--clay-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-clay:hover { background: #8e4d31; }
.btn-outline { background: transparent; color: var(--sage-900); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--sage-700); background: var(--sage-50); }
.btn-quiet { background: transparent; color: var(--muted); border-color: transparent; padding: 10px 14px; min-height: 44px; }
.btn-quiet:hover { color: var(--sage-900); background: var(--sage-50); }
.btn-sm { padding: 10px 18px; font-size: .92rem; min-height: 44px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }

.head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 242, 234, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: box-shadow .25s ease;
}
.head.scrolled { box-shadow: 0 6px 18px -14px rgba(35, 48, 44, .6); }
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 0; min-width: 0; }

.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand-text { min-width: 0; }
.brand-name { display: block; font-family: var(--font-head); font-size: 1.32rem; line-height: 1.05; color: var(--sage-900); }
.brand-sub { display: block; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 3px; }

.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 13px; border-radius: 999px; font-size: .95rem; font-weight: 500; color: var(--ink);
  transition: background-color .2s ease, color .2s ease;
}
.nav-links a:hover { background: var(--sage-50); color: var(--sage-900); }
.nav-links a[aria-current="page"] { color: var(--sage-900); font-weight: 700; background: var(--sage-100); }
.head-cta { display: none; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  background: var(--sage-50); border: 1px solid var(--line); cursor: pointer;
  width: 48px; height: 48px; align-items: center; border-radius: 14px; flex: 0 0 48px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--sage-900); border-radius: 2px; display: block; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(86vw, 330px); background: var(--paper);
  border-left: 1px solid var(--line);
  transform: translateX(101%); transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  padding: 78px 22px 26px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: -24px 0 50px -30px rgba(35, 48, 44, .7);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1.06rem; color: var(--ink); }
.drawer a[aria-current="page"] { color: var(--clay-dark); font-weight: 700; }
.drawer .btn { margin-top: 20px; }
.drawer-close {
  position: absolute; top: 18px; right: 18px;
  width: 46px; height: 46px; min-width: 44px; min-height: 44px;
  border-radius: 14px; border: 1px solid var(--line); background: var(--sage-50);
  color: var(--sage-900); font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.backdrop { position: fixed; inset: 0; background: rgba(35, 48, 44, .45); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.backdrop.open { opacity: 1; visibility: visible; }

.hero { padding: 34px 0 6px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.hero-copy { min-width: 0; }
.hero h1 { color: var(--sage-900); max-width: 15ch; }
.hero .hero-lead { margin-top: 18px; color: var(--muted); font-size: 1.06rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-note { margin-top: 18px; font-size: .9rem; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.hero-note svg { flex: 0 0 18px; color: var(--sage-700); margin-top: 3px; }

.hero-media { position: relative; min-width: 0; }
.frame {
  border-radius: var(--r-bubble); overflow: hidden; border: 1px solid var(--line);
  background: linear-gradient(150deg, var(--sage-100), var(--clay-50));
  box-shadow: var(--shadow-md);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame.r16 { aspect-ratio: 16 / 10; }
.frame.r43 { aspect-ratio: 4 / 3; }
.frame.r34 { aspect-ratio: 3 / 4; }

.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px; font-size: .82rem; font-weight: 600; color: var(--sage-800);
  box-shadow: var(--shadow-xs); margin-bottom: 16px;
}
.hero-chip i { width: 8px; height: 8px; border-radius: 50%; background: #4f8a5f; flex: 0 0 8px; }

.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 12px; margin-top: 26px; }
.fact { min-width: 0; }
.fact strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--sage-900); line-height: 1; }
.fact span { display: block; font-size: .84rem; color: var(--muted); margin-top: 5px; }

.pagehead { background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 34px 0 38px; }
.crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 12px; }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.pagehead h1 { color: var(--sage-900); }
.pagehead p { color: var(--muted); margin-top: 14px; max-width: 58ch; font-size: 1.04rem; }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-bubble); padding: 24px 22px;
  box-shadow: var(--shadow-xs); min-width: 0;
}
.grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.grid > * { min-width: 0; }

.svc { display: flex; flex-direction: column; }
.svc .svc-top { display: flex; align-items: flex-start; gap: 12px; }
.svc .ico { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 13px; background: var(--sage-50); color: var(--sage-800); display: flex; align-items: center; justify-content: center; border: 1px solid var(--sage-100); }
.svc h3 { color: var(--sage-900); }
.svc .svc-meta { font-size: .82rem; color: var(--clay-dark); font-weight: 700; letter-spacing: .04em; margin-top: 3px; }
.svc p { color: var(--muted); margin-top: 12px; font-size: .97rem; }
.svc ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.svc ul li { display: flex; gap: 9px; align-items: flex-start; font-size: .93rem; color: var(--muted); }
.svc ul li svg { flex: 0 0 16px; color: var(--sage-700); margin-top: 5px; }
.svc .svc-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price { font-family: var(--font-head); font-size: 1.6rem; color: var(--sage-900); line-height: 1; }
.price small { display: block; font-family: var(--font-body); font-size: .78rem; color: var(--muted); margin-top: 5px; }

.steps { list-style: none; display: grid; gap: 0; counter-reset: stepBox; }
.steps li { position: relative; padding: 0 0 26px 52px; counter-increment: stepBox; }
.steps li::before {
  content: counter(stepBox); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--sage-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .92rem; font-weight: 700; font-family: var(--font-body);
}
.steps li::after { content: ""; position: absolute; left: 16px; top: 40px; bottom: 4px; width: 2px; background: var(--sage-100); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.14rem; color: var(--sage-900); margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: .96rem; }
.steps .stepBox-time { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--clay-dark); letter-spacing: .05em; text-transform: uppercase; margin-top: 6px; }

.guide {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  overflow: hidden;
}
.guide-head { padding: 24px 20px 20px; border-bottom: 1px solid var(--line); background: var(--sage-50); }
.guide-head h2 { color: var(--sage-900); font-size: clamp(1.45rem, 5vw, 2rem); }
.guide-head p { color: var(--muted); margin-top: 10px; font-size: .98rem; max-width: 56ch; }

.guide-warn {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--clay-50); border: 1px solid #e8cdbd;
  border-radius: var(--r-sm); padding: 12px 14px; margin-top: 16px;
  font-size: .89rem; color: #6d3a22;
}
.guide-warn svg { flex: 0 0 18px; margin-top: 3px; color: var(--clay-dark); }

.guide-body { padding: 22px 20px 26px; }

.guide-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.guide-bar { flex: 1 1 auto; height: 6px; border-radius: 999px; background: var(--sage-100); overflow: hidden; min-width: 0; }
.guide-bar i { display: block; height: 100%; background: var(--sage-700); border-radius: 999px; transition: width .3s ease; }
.guide-count { font-size: .8rem; font-weight: 700; color: var(--muted); white-space: nowrap; }

.guide fieldset { border: 0; }
.guide legend { font-family: var(--font-head); font-size: clamp(1.25rem, 4.4vw, 1.6rem); color: var(--sage-900); line-height: 1.25; }
.guide .q-help { color: var(--muted); font-size: .92rem; margin-top: 8px; }

.opts { display: grid; gap: 10px; margin-top: 18px; }
.opt { position: relative; display: block; min-width: 0; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt span.box {
  display: block; border: 1.5px solid var(--line-2); border-radius: var(--r-md);
  padding: 14px 16px 14px 48px; background: var(--white); cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.opt span.box::before {
  content: ""; position: absolute; left: 16px; top: 17px;
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--line-2); background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.opt b { display: block; font-size: 1rem; font-weight: 600; color: var(--ink); }
.opt em { display: block; font-style: normal; font-size: .88rem; color: var(--muted); margin-top: 3px; }
.opt span.box:hover { border-color: var(--sage-500); background: var(--sage-50); }
.opt input:checked + span.box { border-color: var(--sage-700); background: var(--sage-50); box-shadow: inset 0 0 0 1px var(--sage-700); }
.opt input:checked + span.box::before { border-color: var(--sage-700); box-shadow: inset 0 0 0 4px var(--sage-700); }
.opt input:focus-visible + span.box { outline: 3px solid var(--clay-dark); outline-offset: 3px; }

.guide-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

.result { display: grid; gap: 18px; }
.result-top {
  border: 1.5px solid var(--sage-700); border-radius: var(--r-md);
  background: var(--sage-50); padding: 20px 18px;
}
.result-top .eyebrow { margin-bottom: 8px; }
.result-top h3 { font-size: clamp(1.35rem, 4.6vw, 1.8rem); color: var(--sage-900); }
.result-top p { color: var(--muted); margin-top: 10px; font-size: .98rem; }

.result-rows { list-style: none; display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.result-rows li { display: flex; flex-wrap: wrap; gap: 4px 12px; justify-content: space-between; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--white); min-width: 0; }
.result-rows li:last-child { border-bottom: 0; }
.result-rows li:nth-child(odd) { background: #fcfaf6; }
.result-rows .k { color: var(--muted); font-size: .93rem; min-width: 0; }
.result-rows .v { font-weight: 700; color: var(--sage-900); font-size: .97rem; text-align: right; min-width: 0; }
.result-rows .v.big { font-family: var(--font-head); font-size: 1.2rem; font-weight: 400; }

.result-why { border-left: 3px solid var(--clay); padding: 4px 0 4px 16px; }
.result-why h4 { font-size: 1.05rem; color: var(--sage-900); margin-bottom: 6px; }
.result-why p { color: var(--muted); font-size: .96rem; }
.result-why p + p { margin-top: 10px; }

.result-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.result-note { font-size: .87rem; color: var(--muted); background: var(--paper-2); border-radius: var(--r-sm); padding: 12px 14px; }

.person { display: grid; grid-template-columns: 1fr; gap: 16px; }
.person .frame { max-width: 260px; }
.person h3 { color: var(--sage-900); }
.person .role { font-size: .86rem; color: var(--clay-dark); font-weight: 700; letter-spacing: .04em; margin-top: 4px; }
.person p { color: var(--muted); margin-top: 12px; font-size: .97rem; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tags span { font-size: .78rem; background: var(--sage-50); border: 1px solid var(--sage-100); color: var(--sage-800); border-radius: 999px; padding: 4px 11px; font-weight: 600; }

.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gal figure { margin: 0; min-width: 0; }
.gal .frame { aspect-ratio: 4 / 3; box-shadow: var(--shadow-xs); border-radius: var(--r-md); }
.gal figcaption { font-size: .82rem; color: var(--muted); margin-top: 7px; }

.rev { display: flex; flex-direction: column; }
.rev blockquote { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.rev blockquote::before { content: "„"; font-size: 2.6rem; line-height: .1; color: var(--clay); display: block; margin-bottom: 16px; }
.rev .rev-who { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.rev .ava { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; background: var(--sage-100); color: var(--sage-900); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.05rem; }
.rev .rev-who strong { display: block; font-size: .95rem; color: var(--sage-900); }
.rev .rev-who span { display: block; font-size: .84rem; color: var(--muted); }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white); -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .95rem; }
caption { text-align: left; padding: 14px 16px 0; color: var(--muted); font-size: .88rem; }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--sage-50); color: var(--sage-900); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
tbody tr:last-child td { border-bottom: 0; }
td.num { white-space: nowrap; font-weight: 700; color: var(--sage-900); }

.faq { display: grid; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 15px 46px 15px 18px; font-weight: 600; color: var(--sage-900);
  position: relative; list-style: none; min-height: 48px; display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--sage-700); border-bottom: 2px solid var(--sage-700);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq .faq-body { padding: 0 18px 18px; color: var(--muted); font-size: .96rem; }
.faq .faq-body p + p { margin-top: 10px; }

.callout {
  display: flex; gap: 12px; align-items: flex-start;
  border-radius: var(--r-md); padding: 16px 18px; font-size: .95rem;
}
.callout svg { flex: 0 0 20px; margin-top: 3px; }
.callout.warn { background: var(--clay-50); border: 1px solid #e8cdbd; color: #6d3a22; }
.callout.warn svg { color: var(--clay-dark); }
.callout.info { background: var(--sage-50); border: 1px solid var(--sage-100); color: var(--sage-900); }
.callout.info svg { color: var(--sage-700); }
.callout strong { display: block; margin-bottom: 3px; }

.crisis { background: var(--sage-900); color: #e6eee8; border-radius: var(--r-lg); padding: 26px 22px; }
.crisis h2 { color: #fff; font-size: clamp(1.4rem, 4.6vw, 1.9rem); }
.crisis > p { color: rgba(230, 238, 232, .82); margin-top: 12px; font-size: .98rem; max-width: 60ch; }
.crisis-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
.crisis-item { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--r-md); padding: 15px 16px; min-width: 0; }
.crisis-item strong { display: block; font-size: 1.32rem; font-family: var(--font-head); color: #fff; }
.crisis-item span { display: block; font-size: .88rem; color: rgba(230, 238, 232, .82); margin-top: 4px; }
.crisis-item a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.crisis-note { margin-top: 16px; font-size: .84rem; color: rgba(230, 238, 232, .7); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.info-list { list-style: none; display: grid; gap: 16px; margin-top: 22px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.info-list svg { flex: 0 0 20px; color: var(--sage-700); margin-top: 4px; }
.info-list strong { display: block; font-size: .93rem; color: var(--sage-900); }
.info-list span, .info-list a { font-size: .93rem; color: var(--muted); word-break: break-word; }
.info-list a { color: var(--clay-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 20px; box-shadow: var(--shadow-md); }
.form-card h3 { color: var(--sage-900); }
.form-card .form-sub { color: var(--muted); font-size: .94rem; margin-top: 8px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-width: 0; }
.field label { font-size: .87rem; font-weight: 600; color: var(--sage-900); }
.field .req { color: var(--clay-dark); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 13px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  background: #fdfcf9; width: 100%; max-width: 100%; min-width: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 104px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-700); box-shadow: 0 0 0 3px rgba(74, 109, 92, .18);
}
.field .hint { font-size: .8rem; color: var(--muted); }
.check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; font-size: .88rem; color: var(--muted); }
.check input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; accent-color: var(--sage-700); }
.form-msg { display: none; margin-top: 16px; border-radius: var(--r-sm); padding: 14px 16px; font-size: .95rem; background: var(--sage-50); border: 1px solid var(--sage-100); color: var(--sage-900); }
.form-msg.show { display: block; }
.prefill-note { display: none; margin-bottom: 16px; font-size: .88rem; background: var(--clay-50); border: 1px solid #e8cdbd; color: #6d3a22; border-radius: var(--r-sm); padding: 11px 14px; }
.prefill-note.show { display: block; }

.cta-band { background: var(--sage-900); color: #e6eee8; border-radius: var(--r-lg); padding: 28px 22px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(230, 238, 232, .82); margin-top: 12px; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta-band .btn-outline:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.cta-band .btn-primary { background: var(--clay-dark); }
.cta-band .btn-primary:hover { background: #8e4d31; }

footer { background: var(--paper-2); border-top: 1px solid var(--line); padding: 42px 0 104px; margin-top: 8px; }
.foot-disclaimer {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 15px 17px; font-size: .87rem; color: var(--muted); margin-bottom: 30px;
}
.foot-disclaimer svg { flex: 0 0 19px; color: var(--clay-dark); margin-top: 3px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.foot-brand p { margin-top: 13px; font-size: .92rem; color: var(--muted); max-width: 42ch; }
.foot-col h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-900); font-weight: 700; margin-bottom: 12px; }
.foot-col a, .foot-col p { display: block; font-size: .93rem; color: var(--muted); padding: 4px 0; }
.foot-col a:hover { color: var(--clay-dark); }
.foot-bottom { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 18px; font-size: .84rem; color: var(--muted); }

.callbar {

  position: fixed; bottom: var(--frontage-h, 0px); left: 0; right: 0; z-index: 90;
  background: var(--sage-900); color: #fff;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 20px -10px rgba(35, 48, 44, .6);
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-weight: 700; font-size: .97rem; min-height: 48px; }
.callbar a.call { background: var(--clay-dark); }
.callbar a svg { width: 18px; height: 18px; flex: 0 0 18px; }

@media (min-width: 640px) {
  .section { padding: 72px 0; }
  .grid.g2 { grid-template-columns: repeat(2, 1fr); }
  .gal { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .crisis-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .person { grid-template-columns: 220px 1fr; gap: 22px; align-items: start; }
  .person .frame { max-width: none; }
  .guide-head, .guide-body { padding-left: 30px; padding-right: 30px; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .crisis, .cta-band { padding: 34px 30px; }
}

@media (min-width: 900px) {
  html { scroll-padding-top: 92px; }
  .section { padding: 88px 0; }
  .nav-links { display: flex; }
  .head-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .callbar { display: none; }
  footer { padding-bottom: 46px; }
  .hero { padding: 52px 0 10px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 46px; }
  .grid.g3 { grid-template-columns: repeat(3, 1fr); }
  .grid.g2 { gap: 24px; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
  .opts.two { grid-template-columns: repeat(2, 1fr); }
  .result-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
  .guide-head, .guide-body { padding-left: 38px; padding-right: 38px; }
  .pagehead { padding: 48px 0 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
