/* West Canopy — shared styles
   Warm paper · deep forest green · pollen yellow as the single accent
   Instrument Serif for display, Instrument Sans for everything else (both self-hosted).
   Mobile-first. No framework. */

@font-face {
  font-family: "Instrument Serif";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/instrument-serif-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic; font-weight: 400; font-display: swap;
  src: url("fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("fonts/instrument-sans-latin-wght-normal.woff2") format("woff2-variations"), url("fonts/instrument-sans-latin-wght-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: italic; font-weight: 400 700; font-display: swap;
  src: url("fonts/instrument-sans-latin-wght-italic.woff2") format("woff2-variations"), url("fonts/instrument-sans-latin-wght-italic.woff2") format("woff2");
}

:root {
  --sun: #e3b341;        /* pollen yellow: the one accent */
  --sun-deep: #c9962a;
  --sun-ink: #a97d1c;    /* yellow as text on paper */
  --sun-pale: #f3dfa4;
  --sun-tint: #f8edcf;
  --forest: #24392e;     /* dark sections, header, footer */
  --forest-2: #1a2b22;
  --leaf: #2f4a3b;       /* UI green: labels, links, primary button */
  --paper: #f4efe6;
  --paper-2: #ece5d8;
  --paper-3: #e3dbcb;
  --card: #fbf8f2;
  --ink: #1e2320;
  --ink-2: #4b5450;
  --ink-3: #7a827d;
  --cream: #f4efe6;
  --line: rgba(30, 35, 32, 0.12);
  --line-strong: rgba(30, 35, 32, 0.24);
  --danger: #9b3b2f;

  --slab: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --serif: var(--slab);
  --sans: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --hard: none;
  --hard-sun: none;
  --shadow: 0 1px 2px rgba(30, 35, 32, 0.05), 0 24px 48px -28px rgba(30, 35, 32, 0.35);
  --max: 1180px;
  --gutter: 20px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
::selection { background: rgba(227,179,65,.4); color: var(--ink); }
:focus-visible { outline: 2px solid var(--leaf); outline-offset: 3px; border-radius: 4px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p a, li a, .faq__a a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--sun-deep); }
p a:hover, li a:hover { text-decoration-color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(3rem, 7.4vw, 6.3rem); line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 0.35em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.0; }
h3 { font-family: var(--sans); font-weight: 600; font-size: 1.12rem; line-height: 1.3; letter-spacing: -0.005em; }
h4 { font-family: var(--sans); font-weight: 600; font-size: 1rem; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--ink-2); max-width: 44ch; text-wrap: pretty; font-weight: 400; }
.muted { color: var(--ink-3); }
.small { font-size: 0.875rem; }
.kicker { font-size: 1.12rem; line-height: 1.6; color: var(--ink); }

/* Highlighted word: italic, in pollen yellow */
.hl { font-style: italic; color: var(--sun-ink); }
.hero .hl, .section--forest .hl, .footer .hl { color: var(--sun); }

/* Eyebrow: small caps with a pollen mark */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 20px;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; background: var(--sun); flex: none; }
.eyebrow .dot { opacity: .5; margin: 0 2px; }
.section--forest .eyebrow, .hero .eyebrow { color: rgba(244,239,230,.7); }
.section--sun .eyebrow { color: var(--forest); }
.section--sun .eyebrow::before { background: var(--forest); }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section + .section:not(.section--tone):not(.section--forest):not(.section--sun) { border-top: 1px solid var(--line); }
.section--tight { padding: 36px 0; }
.section--tone { background: var(--paper-2); }
.section--sun { background: var(--sun); color: var(--forest); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest .lede, .section--forest .muted, .section--forest .kicker { color: rgba(251, 247, 238, 0.8); }
.section-head { max-width: 62ch; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head h2 { margin-bottom: 0.4em; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; max-width: 54ch; line-height: 1.6; }
.section--forest .section-head p { color: rgba(251, 247, 238, 0.8); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--sun); color: var(--forest); padding: 8px 12px; border-radius: 6px; z-index: 100; font-weight: 700; }
.skip:focus { left: 8px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--forest);
  color: var(--cream);
  border-bottom: 1px solid rgba(251,247,238,.14);
}
.header .wrap { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--serif); font-size: 1.55rem; letter-spacing: -0.01em; color: inherit; line-height: 1; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__geo { display: none; font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,247,238,.6); border-left: 1px solid rgba(251,247,238,.25); padding-left: 12px; margin-left: 4px; }
.nav { display: none; gap: 26px; margin-left: 10px; font-size: 0.95rem; font-weight: 500; }
.nav a { text-decoration: none; color: rgba(251,247,238,.75); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--cream); border-bottom-color: var(--sun); }
.header__cta { margin-left: auto; }
.nav-toggle { margin-left: auto; background: none; border: 2px solid rgba(251,247,238,.35); border-radius: 6px; padding: 8px 12px; font: 700 0.85rem var(--sans); color: var(--cream); cursor: pointer; }
.header .mobile-nav { display: none; min-height: 0; border-top: 1px solid rgba(251,247,238,.15); background: var(--forest); }
.header .mobile-nav[data-open="true"] { display: block; }
.mobile-nav a { display: block; padding: 15px 0; text-decoration: none; border-bottom: 1px solid rgba(251,247,238,.12); font-size: 1.08rem; font-weight: 600; color: var(--cream); }
.mobile-nav a:last-child { border-bottom: 0; color: var(--sun); }

@media (min-width: 760px) {
  .brand__geo { display: inline; }
  .nav { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}
@media (max-width: 759px) {
  .header .header__cta { display: none; }
  body { padding-bottom: 76px; }
}

/* Mobile sticky CTA bar */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: var(--forest); color: var(--cream); border-top: 1px solid rgba(251,247,238,.14); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-cta span { font-size: 0.8rem; color: rgba(244,239,230,.7); line-height: 1.2; }
.mobile-cta .btn { flex: none; }
.mobile-cta[hidden] { display: none; }
@media (min-width: 760px) { .mobile-cta { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 4px; border: 1.5px solid transparent;
  font: 600 0.92rem/1 var(--sans); letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .08s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--leaf); color: var(--cream); border-color: var(--leaf); }
.btn--primary:hover { background: var(--forest-2); }
.btn--sun { background: var(--sun); color: var(--forest); border-color: var(--sun); }
.btn--sun:hover { background: var(--sun-deep); border-color: var(--sun-deep); }
.btn--primary::after, .btn--sun::after { content: "→"; font-weight: 700; transition: transform .2s ease; }
.btn--primary:hover::after, .btn--sun:hover::after { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--forest); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(251,247,238,.45); }
.btn--ghost-light:hover { border-color: var(--cream); }
.btn--paper { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.btn--paper:hover { background: var(--sun); border-color: var(--sun); }
.btn--lg { padding: 18px 30px; font-size: 0.98rem; }
.btn--sm { padding: 11px 16px; font-size: 0.84rem; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Hero (full-bleed photo) ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--forest); color: var(--cream);
  min-height: min(82vh, 780px);
  display: grid; align-items: end;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 45%; filter: saturate(.92) contrast(1.02); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(18, 38, 27, .92) 0%, rgba(18, 38, 27, .62) 32%, rgba(18, 38, 27, .18) 66%, rgba(18, 38, 27, .06) 100%),
    linear-gradient(to right, rgba(18, 38, 27, .62) 0%, rgba(18, 38, 27, .28) 42%, rgba(18, 38, 27, 0) 70%);
}
.hero .wrap { padding: clamp(64px, 10vw, 120px) 0 clamp(40px, 5vw, 64px); }
.hero__copy { max-width: 880px; }
.hero__copy h1 { color: var(--cream); max-width: 17ch; text-shadow: 0 1px 0 rgba(0,0,0,.1), 0 14px 40px rgba(0,0,0,.25); }
.hero__copy .lede { color: rgba(244, 239, 230, 0.88); max-width: 44ch; font-weight: 400; margin-top: 12px; }
.hero__copy .btn-row { margin-top: 30px; }
.hero__geo { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 36px 0 0; font-size: 0.7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(244,239,230,.65); }
.hero__geo span::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--sun); margin-right: 10px; vertical-align: middle; }

/* Proof strip under the hero */
.bar { background: var(--paper-2); color: var(--ink); border-bottom: 1px solid var(--line); }
.bar ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bar li { padding: 22px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bar li:nth-child(2n) { border-right: 0; }
.bar li:nth-last-child(-n+2) { border-bottom: 0; }
.bar strong { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.05; letter-spacing: -0.01em; }
.bar span { display: block; font-size: 0.82rem; margin-top: 6px; color: var(--ink-3); max-width: 30ch; }
@media (min-width: 760px) {
  .bar ul { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .bar li { border-bottom: 0; border-right: 1px solid var(--line); padding: 30px 28px; }
  .bar li:nth-child(2n) { border-right: 1px solid var(--line); }
  .bar li:last-child { border-right: 0; }
  .bar li:first-child { padding-left: 0; }
}

/* Render cards */
.render {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--paper-3); box-shadow: var(--shadow);
  aspect-ratio: 16 / 9; isolation: isolate;
}
.render img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); filter: saturate(.92) contrast(1.03) sepia(.06); }
.render[data-lightbox] { cursor: zoom-in; }
.render[data-lightbox]:hover img { transform: scale(1.03); }
.render::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(27,53,39,.1); border-radius: inherit; pointer-events: none; }
.render__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(to top, rgba(18, 38, 27, 0.8), rgba(18, 38, 27, 0));
  color: var(--cream); font-size: 0.84rem; display: flex; justify-content: space-between; gap: 12px;
}
.render__cap strong { font-weight: 700; }
.render__cap span { opacity: .8; }
.render--wide { aspect-ratio: 16 / 9; }
@media (min-width: 900px) { .render--wide { aspect-ratio: 21 / 10; } }
.render--frame { border-radius: var(--radius-sm); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 18px; }
.grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
.grid > * { min-width: 0; }
@media (min-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 2px; font-family: var(--serif); font-weight: 400; font-size: 1.6rem; line-height: 1.05; }
.card p { margin: 0; color: var(--ink-2); font-size: 0.95rem; line-height: 1.55; }
.card .price { font-family: var(--serif); font-size: 2rem; color: var(--ink); margin-top: 8px; font-variant-numeric: tabular-nums; line-height: 1.05; letter-spacing: -0.01em; }
.card .price small { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; color: var(--ink-3); margin-left: 6px; }
.card ul { margin: 14px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line); list-style: none; display: grid; gap: 8px; font-size: 0.92rem; color: var(--ink-2); }
.card li { padding-left: 20px; position: relative; }
.card li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; background: var(--sun); }
.card .btn { margin-top: 22px; align-self: flex-start; }
.card--feature { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.card--feature:hover { box-shadow: 0 24px 48px -28px rgba(18,38,27,.7); }
.card--feature p, .card--feature li { color: rgba(251, 247, 238, 0.8); }
.card--feature ul { border-top-color: rgba(251,247,238,.18); }
.card--feature .price { color: var(--sun); }
.card--feature .price small { color: rgba(251, 247, 238, 0.65); }
.card__tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sun-ink); margin-bottom: 12px; }
.card--feature .card__tag { color: var(--sun); }

/* ---------- Before / after compare ---------- */
.compare { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #2b2f2d; user-select: none; -webkit-user-select: none; touch-action: pan-y; --pos: 50%; }
.compare > svg, .compare > img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; }
.compare__after { clip-path: inset(0 0 0 var(--pos)); }
.compare__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: var(--cream); transform: translateX(-1.5px); pointer-events: none; }
.compare__handle::after { content: "⟷"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--sun); color: var(--forest); display: grid; place-items: center; font-size: 18px; font-weight: 600; box-shadow: 0 0 0 3px var(--cream), 0 8px 22px -6px rgba(0,0,0,.55); }
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: ew-resize; }
.compare__tag { position: absolute; top: 14px; padding: 6px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; background: rgba(20,24,22,.55); color: var(--cream); backdrop-filter: blur(6px); pointer-events: none; }
.compare__tag--before { left: 12px; }
.compare__tag--after { right: 14px; background: rgba(244,239,230,.88); color: var(--forest); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(18,38,27,.94); display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.lightbox[data-open="true"] { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(96vw, 1400px); max-height: 82vh; width: auto; height: auto; border-radius: 6px; border: 3px solid var(--cream); }
.lightbox figcaption { color: rgba(251,247,238,.85); font-size: .9rem; margin-top: 14px; text-align: center; }
.lightbox button { position: absolute; top: 18px; right: 18px; background: var(--sun); color: var(--forest); border: 2px solid var(--forest); border-radius: 6px; width: 44px; height: 44px; font-size: 22px; font-weight: 800; cursor: pointer; }

/* ---------- Steps (big slab numbers) ---------- */
.steps { counter-reset: step; display: grid; gap: 28px; }
.step { position: relative; padding-top: 18px; border-top: 1px solid rgba(251,247,238,.22); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-family: var(--serif); font-style: italic; font-size: clamp(2.6rem, 4.4vw, 3.8rem); color: var(--sun); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; color: var(--cream); }
.step p { margin: 0; color: rgba(244,239,230,.78); font-size: 0.96rem; line-height: 1.6; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 32px; } }
@media (min-width: 960px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 32px; } }
.steps__foot { margin-top: clamp(36px, 5vw, 56px); display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; font-weight: 500; color: rgba(244,239,230,.8); }
.steps__foot .btn { margin-right: 6px; }

/* ---------- Owner / who shows up ---------- */
.owner { display: grid; gap: 28px; align-items: center; }
.owner__photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); max-width: 440px; box-shadow: var(--shadow); }
.owner__photo img { width: 100%; height: 100%; object-fit: cover; }
.owner__photo--empty { display: grid; place-items: center; background: var(--forest); color: var(--cream); padding: 24px; }
.owner__photo--empty svg { width: min(58%, 200px); height: auto; }
.owner__photo--empty span { position: absolute; left: 28px; bottom: 26px; font-family: var(--sans); font-weight: 600; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sun); }
.owner__quote { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.02; letter-spacing: -0.015em; margin: 0 0 26px; text-wrap: balance; max-width: 18ch; }
.owner__quote .hl { color: var(--sun-ink); }
.owner__name { font-weight: 600; margin: 0 0 4px; }
.owner__role { color: var(--ink-3); font-size: 0.9rem; margin: 0 0 18px; }
.owner p.body { color: var(--ink-2); max-width: 52ch; }
@media (min-width: 860px) { .owner { grid-template-columns: 0.75fr 1.25fr; gap: 56px; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--forest); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { cursor: pointer; padding: 22px 0; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; line-height: 1.3; list-style: none; display: flex; justify-content: space-between; gap: 16px; color: var(--ink); }
.faq summary:hover { color: var(--leaf); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.3rem; color: var(--sun-deep); line-height: 1; flex: none; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { padding: 0 0 24px; color: var(--ink-2); max-width: 60ch; font-size: 1.02rem; line-height: 1.65; }

/* ---------- Forms ---------- */
.lead { display: grid; gap: 28px; }
@media (min-width: 900px) { .lead { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; } }
.lead__points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; font-weight: 400; color: var(--ink-2); }
.lead__points li { padding-left: 28px; position: relative; }
.lead__points li::before { content: ""; position: absolute; left: 0; top: .5em; width: 10px; height: 10px; background: var(--sun); }
.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
@media (min-width: 640px) { .form { padding: 36px; } }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.field label .opt-tag { font-weight: 500; color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  padding: 13px 14px; border-radius: 4px;
  border: 1px solid var(--line-strong); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa59f; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(245,196,67,.45); }
.field textarea { min-height: 96px; resize: vertical; }
.field .err { display: none; font-size: 0.8rem; color: var(--danger); font-weight: 600; }
.field[data-invalid="true"] .err { display: block; }
.field[data-invalid="true"] input, .field[data-invalid="true"] textarea { border-color: var(--danger); }
.field--row { display: grid; gap: 14px; margin-bottom: 0; }
@media (min-width: 560px) { .field--row { grid-template-columns: 1fr 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.86rem; color: var(--ink-2); margin: 6px 0 18px; }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--forest); flex: none; }
.consent[data-invalid="true"] { color: var(--danger); }
.form__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form__foot .small { color: var(--ink-3); font-weight: 600; }
.form__trust { margin: 18px 0 0; font-size: 0.86rem; color: var(--ink-2); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.form__trust::before { content: ""; width: 8px; height: 8px; background: var(--sun); flex: none; }
.form__status { margin-top: 12px; font-size: 0.9rem; color: var(--danger); display: none; font-weight: 600; }
.form__status[data-show="true"] { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.success { display: none; text-align: left; }
.success[data-show="true"] { display: block; }
.success h3 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; }
.success p { color: var(--ink-2); }
.success .check { width: 44px; height: 44px; color: var(--forest); margin-bottom: 12px; background: var(--sun); border-radius: 50%; padding: 8px; }
.form[data-done="true"] > form { display: none; }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: rgba(251,247,238,.75); padding: clamp(64px, 8vw, 104px) 0 28px; font-size: 0.92rem; }
.footer__tag { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem); color: var(--cream); margin: 16px 0 12px; line-height: 1.0; letter-spacing: -0.015em; max-width: 16ch; }
.footer__tag .hl { color: var(--sun); }
.footer__grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer h4 { font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sun); margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; color: var(--cream); font-weight: 600; }
.footer a:hover { color: var(--sun); }
.footer .brand { font-size: 1.4rem; color: var(--cream); }
.footer__legal { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(251,247,238,.18); font-size: 0.8rem; color: rgba(251,247,238,.6); display: grid; gap: 6px; }
.footer__legal p { margin: 0; max-width: 90ch; }

/* ---------- Misc ---------- */
.two-col { display: grid; gap: 28px; }
.two-col > * { min-width: 0; }
@media (min-width: 900px) { .two-col { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; } }
.divider { height: 2px; background: var(--forest); margin: 28px 0; }
.note-box { border-left: 4px solid var(--sun-deep); background: var(--sun-tint); padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.95rem; color: var(--ink-2); }
.note-box strong { color: var(--ink); }

/* Oak leaf ornament (inline SVG uses currentColor) */
.leaf { width: 26px; height: 26px; display: inline-block; vertical-align: middle; color: var(--leaf); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .render img, .card { transition: none; } }

/* ---------- Pollen calendar ---------- */
.pollen { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); }
.pollen__grid { min-width: 760px; display: grid; gap: 6px 0; }
.pollen__row { display: grid; grid-template-columns: 220px repeat(12, minmax(0, 1fr)); gap: 4px; align-items: stretch; }
.pollen__m { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); text-align: center; padding: 6px 0 8px; }
.pollen__label { padding: 6px 12px 6px 0; display: flex; flex-direction: column; justify-content: center; line-height: 1.25; }
.pollen__label strong { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.01em; }
.pollen__label span { font-size: .78rem; color: var(--ink-3); margin-top: 2px; }
.pollen__c { border-radius: 4px; min-height: 34px; background: rgba(27,53,39,.06); }
.pollen__c[data-level="1"] { background: rgba(227,179,65,.28); }
.pollen__c[data-level="2"] { background: rgba(227,179,65,.62); }
.pollen__c[data-level="3"] { background: #d9a52e; }
.pollen__row--win { margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--forest); }
.pollen__w { display: grid; place-items: center; min-height: 34px; }
.pollen__pill { display: inline-block; padding: 7px 11px; border-radius: 999px; background: var(--leaf); color: var(--cream); font-size: .72rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.pollen__pill--sm { padding: 3px 8px; font-size: .66rem; }
.pollen__legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px; font-size: .82rem; color: var(--ink-3); align-items: center; }
.pollen__legend span { display: inline-flex; align-items: center; gap: 8px; }
.pollen__legend i { width: 18px; height: 12px; border-radius: 3px; display: inline-block; }
.pollen__legend i[data-level="1"] { background: rgba(227,179,65,.28); }
.pollen__legend i[data-level="2"] { background: rgba(227,179,65,.62); }
.pollen__legend i[data-level="3"] { background: #d9a52e; }
.pollen__foot { margin: 22px 0 0; max-width: 70ch; color: var(--ink-2); font-size: .98rem; }
.pollen__hint { display: none; font-size: .78rem; color: var(--ink-3); margin: 10px 0 0; }
@media (max-width: 899px) {
  .pollen__grid { min-width: 0; }
  .pollen__row { grid-template-columns: 140px repeat(12, 46px); }
  .pollen__label { position: sticky; left: 0; z-index: 1; background: var(--paper-2); padding-right: 10px; box-shadow: 8px 0 12px -10px rgba(27,53,39,.3); }
  .pollen__label strong { font-size: .92rem; }
  .pollen__label span { display: none; }
  .pollen__hint { display: block; }
}
@media (min-width: 900px) { .pollen { margin: 0; padding: 0; } .pollen__c { min-height: 40px; } }
