/* ==========================================================================
   Organized by Janice. Design variant v1: "Warm editorial olive".
   A warm paper page, a deep olive field for heroes and feature bands, cream type
   on olive, one small apricot accent. Source Serif 4 (upright, 600 to 700) for display, Commissioner for text.
   Illustrations are inline SVG drawn in one 2px line weight (see images/PLACEHOLDERS.md).
   ========================================================================== */

:root {
  /* colour */
  --paper: #FAF7F0;          /* page background */
  --card: #FFFDF8;           /* raised cards on paper */
  --cream: #F3ECDC;          /* type and line art on olive */
  --cream-soft: #DCD7C4;     /* secondary type on olive (6.0:1 on olive-800) */
  --tint: #ECECDD;           /* pale olive band */
  --tint-2: #E2E4D0;         /* chips, icon wells */
  --olive-950: #2C3325;      /* footer */
  --olive-900: #363F2D;
  --olive-800: #44513A;      /* hero field, header */
  --olive-700: #4F5E43;      /* links, primary button base */
  --olive-600: #627254;
  --olive-400: #97A283;
  --ink: #23261D;            /* body text: 14.9:1 on paper */
  --ink-2: #52584A;          /* secondary text: 6.9:1 on paper, 6.0:1 on tint */
  --line: #DEDACB;           /* hairlines */
  --line-strong: #8C8F78;    /* control borders: 3.3:1 on card */
  --apricot: #D98E52;        /* the one warm accent: decoration only */
  --apricot-light: #EDB684;  /* accent type on olive (4.5:1 on olive-800) */
  --rust: #9A3F1E;           /* form errors */

  --art-bg: radial-gradient(130% 95% at 18% 0%, #5D6C4B 0%, #48563D 52%, #3D4934 100%);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 .97 0 0 0 0 .9 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  /* type */
  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-body: "Commissioner", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* shape and depth */
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(35, 38, 29, .06), 0 2px 8px -2px rgba(35, 38, 29, .06);
  --shadow: 0 1px 2px rgba(35, 38, 29, .05), 0 14px 34px -14px rgba(44, 51, 37, .22);
  --shadow-lg: 0 2px 6px rgba(28, 32, 22, .08), 0 36px 70px -30px rgba(28, 32, 22, .42);

  /* layout */
  --gutter: 20px;
  --maxw: 1200px;
  --section: 76px;
  --measure: 40em;
}
@media (min-width: 768px) { :root { --gutter: 40px; --section: 104px; } }
@media (min-width: 1200px) { :root { --gutter: 56px; --section: 128px; } }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 24px; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word; overflow-x: clip;
}
@media (min-width: 768px) { body { font-size: 18px; } }
main { display: block; min-width: 0; }
img, svg { max-width: 100%; }
figure { margin: 0; }
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
b, strong { font-weight: 600; }
h1, h2, h3 {
  font-family: var(--font-display); font-weight: 600; font-style: normal; font-optical-sizing: auto; line-height: 1.1; letter-spacing: -0.012em;
  font-feature-settings: "liga" 1, "dlig" 0, "swsh" 0, "calt" 0;
  margin: 0 0 .55em; color: inherit; text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(31px, 3.3vw, 46px); }
h3 { font-size: clamp(21px, 1.8vw, 24px); line-height: 1.22; letter-spacing: -0.01em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li + li { margin-top: .45em; }
a { color: var(--olive-700); text-decoration-thickness: 1px; text-underline-offset: .22em; text-decoration-color: rgba(79, 94, 67, .45); transition: color .15s, text-decoration-color .15s; }
a:hover { color: var(--olive-900); text-decoration-color: currentColor; }
:focus-visible { outline: 3px solid var(--olive-700); outline-offset: 3px; border-radius: 6px; }
.tel { white-space: nowrap; }
.lead { font-size: 1.14em; line-height: 1.6; }
.small { font-size: 15px; }
.hidden { display: none; }
body:not(.js) .conditional.hidden { display: block; }
@media (scripting: enabled) { body:not(.js) .conditional.hidden { display: none; } }

.container { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.skip-link { position: absolute; left: 16px; top: -120px; z-index: 100; background: var(--cream); color: var(--olive-900); padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 600; }
.skip-link:focus { top: 12px; }

/* standalone links get a quiet arrow */
.standalone-link { font-weight: 600; text-decoration: none; background-image: linear-gradient(currentColor, currentColor); background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%; padding-bottom: 2px; }
.standalone-link:hover { background-size: 100% 2px; }
p > .standalone-link:only-child, .section-link .standalone-link, .prose > .standalone-link, section > .standalone-link, .page-simple .standalone-link { display: inline; }

/* dark contexts */
.site-header, .hero, .page-hero, .band-olive, .cta-block > .container, .site-footer, .help-head { color: var(--cream); }
:is(.site-header, .hero, .page-hero, .band-olive, .cta-block, .site-footer, .help-head) a:not(.button) { color: var(--cream); text-decoration-color: rgba(243, 236, 220, .45); }
:is(.site-header, .hero, .page-hero, .band-olive, .cta-block, .site-footer) :focus-visible { outline-color: var(--apricot-light); }
.olive-field, .site-header, .hero, .page-hero, .band-olive, .site-footer {
  background-color: var(--olive-800);
  background-image: var(--grain);
}

/* ---------- buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1.2; letter-spacing: .01em;
  text-decoration: none; text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s;
}
.button--primary {
  color: #FBF7EC;
  background: linear-gradient(180deg, #62734F 0%, #4C5A40 55%, #435037 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 1px 2px rgba(30, 36, 22, .25), 0 10px 22px -10px rgba(44, 53, 34, .7);
}
.button--primary:hover { color: #FFFFFF; transform: translateY(-1px); background: linear-gradient(180deg, #5A6A48 0%, #45523A 55%, #3B4632 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 2px 4px rgba(30, 36, 22, .25), 0 16px 28px -12px rgba(44, 53, 34, .75); }
.button--secondary { color: var(--olive-800); background: rgba(255, 253, 248, .6); box-shadow: inset 0 0 0 1.5px var(--olive-600); }
.button--secondary:hover { color: var(--olive-900); background: var(--card); box-shadow: inset 0 0 0 1.5px var(--olive-800); }
:is(.site-header, .hero, .page-hero, .band-olive, .cta-block) .button--primary {
  color: var(--olive-900);
  background: linear-gradient(180deg, #FFFCF4 0%, #F4EDDC 60%, #EADFC7 100%);
  box-shadow: inset 0 1px 0 #FFFFFF, 0 1px 2px rgba(0, 0, 0, .18), 0 12px 26px -12px rgba(0, 0, 0, .55);
}
:is(.site-header, .hero, .page-hero, .band-olive, .cta-block) .button--primary:hover { color: var(--olive-950); background: linear-gradient(180deg, #FFFFFF 0%, #F7F1E3 60%, #EEE4CE 100%); }
:is(.hero, .page-hero, .band-olive, .cta-block) .button--secondary { color: var(--cream); background: rgba(243, 236, 220, .06); box-shadow: inset 0 0 0 1.5px rgba(243, 236, 220, .5); }
:is(.hero, .page-hero, .band-olive, .cta-block) .button--secondary:hover { background: rgba(243, 236, 220, .12); box-shadow: inset 0 0 0 1.5px var(--cream); }
.cta-group { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 14px; margin-top: 32px; }
.reassure { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 15px; color: var(--ink-2); flex-basis: 100%; }
.reassure::before { content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%; background: var(--olive-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.4l2.6 2.5L13 6.6' fill='none' stroke='%23F3ECDC' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px no-repeat; }
:is(.hero, .page-hero, .band-olive) .reassure { color: var(--cream-soft); }
.cta-block .reassure { color: var(--cream); }
:is(.hero, .page-hero, .band-olive, .cta-block) .reassure::before { background-color: var(--apricot); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.4l2.6 2.5L13 6.6' fill='none' stroke='%232C3325' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.cta-group .reassure { margin-top: 6px; }

/* ---------- header ---------- */
.site-header { position: relative; z-index: 40; }
.site-header__inner { display: flex; align-items: center; gap: 20px; min-height: 76px; padding-block: 10px; }
@media (min-width: 1024px) { .site-header__inner { min-height: 92px; } }
.wordmark { flex: none; white-space: nowrap; font-family: var(--font-display); font-size: 23px; font-weight: 600; letter-spacing: -0.01em; text-decoration: none; }
.site-header .wordmark, .site-header .wordmark:hover { color: var(--cream); background: none; padding: 0; }
@media (min-width: 1024px) { .wordmark { font-size: 26px; } }
#primary-nav { margin-left: auto; }
#primary-nav ul { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
#primary-nav li { margin: 0; }
#primary-nav a:not(.button) { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px; border-radius: 8px; font-size: 16px; font-weight: 500; text-decoration: none; white-space: nowrap; color: var(--cream); position: relative; }
#primary-nav a:not(.button)::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 8px; height: 1.5px; background: var(--apricot-light); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
#primary-nav a:not(.button):hover::after { transform: scaleX(1); }
#primary-nav .button { margin-left: 12px; min-height: 46px; padding: 12px 22px; }
.site-header__phone { display: none; flex: none; align-items: center; gap: 6px; min-height: 44px; margin-left: 8px; padding-left: 22px; border-left: 1px solid rgba(243, 236, 220, .22); font-size: 15px; text-decoration: none; white-space: nowrap; }
.site-header .site-header__phone { color: var(--cream-soft); }
.site-header__phone .tel { color: var(--cream); font-weight: 600; }
@media (min-width: 1280px) { .site-header__phone { display: inline-flex; } }
#menu-toggle { display: none; }
@media (max-width: 1023px) {
  .site-header__inner { flex-wrap: wrap; }
  #primary-nav { flex: 0 0 100%; margin-left: 0; }
  #primary-nav ul { display: grid; gap: 0; }
  #primary-nav a:not(.button) { width: 100%; font-size: 18px; padding: 12px 0; border-bottom: 1px solid rgba(243, 236, 220, .12); border-radius: 0; }
  #primary-nav a:not(.button)::after { display: none; }
  #primary-nav .button { margin: 18px 0 8px; }
}
@media (scripting: enabled) and (max-width: 1023px) {
  #menu-toggle {
    display: inline-grid; place-items: center; margin-left: auto; width: 46px; height: 46px; padding: 0; cursor: pointer;
    border: 1.5px solid rgba(243, 236, 220, .4); border-radius: 12px; background: rgba(243, 236, 220, .05);
    color: transparent; font-size: 0; position: relative;
  }
  #menu-toggle::before, #menu-toggle::after { content: ""; position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 2px; background: var(--cream); transition: transform .2s ease, box-shadow .2s; }
  #menu-toggle::before { top: 16px; box-shadow: 0 5.5px 0 var(--cream); }
  #menu-toggle::after { top: 27px; }
  #menu-toggle[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); box-shadow: none; }
  #menu-toggle[aria-expanded="true"]::after { top: 21px; transform: rotate(-45deg); }
  #primary-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 60; padding: 8px var(--gutter) 24px; background: var(--olive-800) var(--grain); box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .5); }
  #primary-nav.is-open { display: block; }
}

/* ---------- illustration slots ---------- */
.mount { position: relative; min-width: 0; }
.art-slot, .mount > picture, .intro-art, .deco-panel {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--art-bg); color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(243, 236, 220, .07), var(--shadow);
}
.art-slot { aspect-ratio: 1 / 1; }
.slot-empty--hero { aspect-ratio: 4 / 5; }
.art-slot::after, .intro-art::after, .deco-panel::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); pointer-events: none; }
/* a thin cream mat line inside every illustration panel */
.art-slot::before, .intro-art::before, .deco-panel::before { content: ""; position: absolute; z-index: 1; inset: 10px; border: 1px solid rgba(243, 236, 220, .16); border-radius: calc(var(--radius-lg) - 7px); pointer-events: none; }
.art-slot > .art { position: absolute; inset: 0; width: 100%; height: 100%; }
.art { display: block; width: 100%; height: auto; color: var(--cream); }
.art * { vector-effect: non-scaling-stroke; }
.art .o { fill: #506043; }
.art .f { fill: rgba(243, 236, 220, .13); }
.art .d { fill: rgba(16, 20, 10, .24); }
.art .s { fill: var(--cream); }
.art .a { fill: var(--apricot); }
.art .n { stroke: none; }
.art .ol { stroke: var(--olive-800); }
.art .a-s { stroke: var(--apricot); }
/* the label tag pinned to each illustration (and to a real photo later) */
.art-slot > .tag, .mount > .label {
  position: absolute; z-index: 2; top: 16px; left: 16px; margin: 0;
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 12px;
  background: linear-gradient(180deg, #FFFBF1, #F1E9D6); color: var(--olive-900); border-radius: 7px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; line-height: 1.2; letter-spacing: .01em;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .12), 0 6px 14px -6px rgba(0, 0, 0, .45); transform: rotate(-1.5deg);
}
.art-slot > .tag::before, .mount > .label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--apricot); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .25); }
.mount > picture img, .mount .photo { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.mount .photo--hero { aspect-ratio: 4 / 5; }
.caption { display: flex; gap: 12px; align-items: baseline; margin-top: 16px; font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 1.45; color: var(--ink-2); }
.caption::before { content: ""; flex: none; width: 22px; height: 1px; background: currentColor; opacity: .6; transform: translateY(-4px); }
:is(.hero, .page-hero, .band-olive) .caption { color: var(--cream-soft); }
.intro-art, .deco-panel { aspect-ratio: 1 / 1; }
.intro-art > .art, .deco-panel > .art { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- home hero ---------- */
.hero { position: relative; isolation: isolate; padding: 28px 0 88px; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: -1; width: 980px; height: 980px; right: -300px; top: 0; border-radius: 50%; background: radial-gradient(closest-side, rgba(128, 146, 104, .42), rgba(128, 146, 104, 0)); }
.hero::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(243, 236, 220, .1); }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero-grid > * { min-width: 0; }
.hero h1 { font-size: clamp(54px, 7.5vw, 112px); line-height: 1; letter-spacing: -0.03em; font-weight: 600; color: var(--cream); max-width: 6.4em; margin-bottom: 34px; }
.hero .lead { font-size: 20px; line-height: 1.6; color: var(--cream-soft); max-width: 31em; margin-bottom: 0; }
.hero .cta-group { margin-top: 36px; }
.hero__text > .reassure { margin-top: 22px; }
.hero__text > .small { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(243, 236, 220, .16); color: var(--cream-soft); max-width: 36em; font-size: 15px; letter-spacing: .01em; }
.hero .mount { width: 100%; max-width: 480px; justify-self: center; }
.hero .art-slot { box-shadow: inset 0 0 0 1px rgba(243, 236, 220, .12), 0 2px 6px rgba(20, 24, 14, .18), 0 50px 90px -40px rgba(12, 16, 8, .7); }
@media (min-width: 900px) {
  .hero { padding: 40px 0 128px; }
  .hero-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 80px; }
  .hero .mount { justify-self: end; }
  .hero .lead { font-size: 21px; }
}
@media (max-width: 899px) { .hero .mount { margin-right: 22px; } }

/* ---------- sections and bands ---------- */
.section { padding-block: var(--section); }
.band-tint { background: var(--tint); }
.band-olive { position: relative; }
.section-heading { margin-bottom: 0; }
.section-link { margin-top: 40px; }
.split { display: grid; gap: 36px; }
.split > * { min-width: 0; }
@media (min-width: 1024px) { .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 88px; align-items: start; } }
.split__aside h2 { margin-bottom: 0; }
.prose > p { max-width: var(--measure); }
.deco-panel { max-width: 360px; }
.split__aside .deco-panel { margin-top: 44px; aspect-ratio: 20 / 17; max-width: 400px; }
.split__aside .deco-panel--receipt { aspect-ratio: 10 / 9; }
@media (max-width: 1023px) { .split__aside .deco-panel { display: none; } }

/* help grid: the olive heading card and seven bins */
.help-grid { display: grid; gap: 14px; grid-template-columns: minmax(0, 1fr); }
.shelf { display: contents; }
@media (min-width: 700px) { .help-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1100px) { .help-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; } }
.help-head { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 30px 28px 26px; border-radius: var(--radius-lg); background: var(--art-bg); position: relative; overflow: hidden; box-shadow: var(--shadow); }
.help-head::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); pointer-events: none; }
.help-head h2 { font-size: clamp(32px, 2.9vw, 40px); line-height: 1.04; }
.help-art { margin: 0 -8px -6px; }
.bin { position: relative; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid rgba(68, 81, 58, .07); transition: box-shadow .2s ease, transform .2s ease; }
.help .bin:hover { box-shadow: 0 1px 2px rgba(35, 38, 29, .05), 0 22px 40px -18px rgba(44, 51, 37, .32); transform: translateY(-2px); }
.bin summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 104px minmax(0, 1fr); column-gap: 18px; row-gap: 6px; padding: 24px 58px 24px 22px; position: relative; border-radius: var(--radius-lg); }
.bin summary::-webkit-details-marker { display: none; }
.bin summary:focus-visible { outline-offset: -3px; }
.bin__art { grid-row: span 2; position: relative; display: block; width: 100%; aspect-ratio: 300 / 220; overflow: hidden; border-radius: 12px; background: var(--art-bg); color: var(--cream); box-shadow: inset 0 0 0 1px rgba(243, 236, 220, .08); }
.bin__art::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); pointer-events: none; }
.bin__art .art { position: absolute; inset: 0; width: 100%; height: 100%; }
.bin summary .label { font-family: var(--font-display); font-size: 21px; line-height: 1.2; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); align-self: end; }
.bin__line { font-size: 16px; line-height: 1.55; color: var(--ink-2); }
.bin__toggle { position: absolute; top: 22px; right: 18px; width: 32px; height: 32px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px var(--line-strong); transition: transform .25s ease, background .2s; }
.bin__toggle::before, .bin__toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.8px; margin: -0.9px 0 0 -6px; background: var(--olive-800); border-radius: 2px; }
.bin__toggle::after { transform: rotate(90deg); }
.bin[open] .bin__toggle { transform: rotate(45deg); background: var(--tint-2); }
.bin summary:hover .bin__toggle { background: var(--tint-2); }
.bin__inside { margin: 0 22px; padding: 18px 0 24px; border-top: 1px solid var(--line); font-size: 16px; line-height: 1.6; }
.bin__inside p { margin-bottom: 12px; }
@media (min-width: 700px) {
  .help .bin summary { grid-template-columns: minmax(0, 1fr); padding: 12px 12px 26px; row-gap: 8px; }
  .help .bin__art { grid-row: auto; margin-bottom: 14px; }
  .help .bin summary > .label, .help .bin summary > .bin__line { padding-inline: 14px; }
  .help .bin summary .label { font-size: 22px; }
  .help .bin__toggle { top: 22px; right: 22px; background: var(--cream); box-shadow: 0 2px 8px rgba(0, 0, 0, .28); }
  .help .bin[open] .bin__toggle { background: var(--cream); }
  .bin__inside { margin: 0 26px; }
}

/* how it goes */
.how h2 { margin-bottom: 48px; }
.numbered-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: step; }
.numbered-steps li { counter-increment: step; margin: 0; position: relative; padding: 26px 26px 26px 86px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); font-size: 17px; line-height: 1.6; }
.numbered-steps li::before { content: counter(step); position: absolute; left: 24px; top: 20px; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--olive-800); color: var(--cream); font-family: var(--font-display); font-size: 22px; font-weight: 600; }
@media (min-width: 1024px) {
  .numbered-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
  .numbered-steps li { padding: 88px 28px 30px; }
  .numbered-steps li::before { left: 28px; top: 28px; width: 48px; height: 48px; font-size: 24px; }
  .numbered-steps li:not(:last-child)::after { content: ""; position: absolute; top: 52px; left: 92px; right: -22px; height: 1px; background: repeating-linear-gradient(90deg, var(--olive-400) 0 4px, transparent 4px 9px); }
}

/* promises */
.promise-list { list-style: none; margin: 0; padding: 0; }
.promise-list li { position: relative; margin: 0; padding: 22px 0 22px 50px; border-top: 1px solid var(--line); font-size: 19px; line-height: 1.55; max-width: 36em; }
.promise-list li:last-child { border-bottom: 1px solid var(--line); }
.promise-list li::before { content: ""; position: absolute; left: 0; top: 24px; width: 30px; height: 30px; border-radius: 50%; background: var(--tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M9.5 15.4l3.6 3.5 7.4-7.6' fill='none' stroke='%2344513A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 30px no-repeat; }
@media (min-width: 768px) { .promise-list li { font-size: 20px; padding: 26px 0 26px 56px; } .promise-list li::before { top: 28px; } }

/* about band on olive */
.about-band { overflow: hidden; }
.about-band h2 { font-size: clamp(34px, 3.6vw, 50px); }
.about-band p { color: var(--cream-soft); font-size: 19px; line-height: 1.65; max-width: 34em; }
.about-band .standalone-link { display: inline-block; margin-top: 12px; }
.about-band .mount { max-width: 460px; width: 100%; }
@media (min-width: 900px) {
  .about-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 96px; }
  .about-grid > .mount { order: -1; }
}

/* cost */
.cost .prose > p:first-child { font-size: 20px; line-height: 1.6; }
#founding-offer-line { position: relative; margin: 32px 0; padding: 26px 28px 26px 30px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); max-width: var(--measure); }
#founding-offer-line strong { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 1em; color: var(--olive-800); }
#founding-offer-line strong::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--apricot); }

/* where */
.split--where { align-items: center; }
@media (min-width: 1024px) { .split--where { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.split--where .deco-panel { width: 100%; justify-self: end; max-width: 420px; }
@media (max-width: 1023px) { .split--where .deco-panel { max-width: 320px; } }

/* questions preview */
.questions h2 { margin-bottom: 44px; }
.faq-preview { display: grid; gap: 18px; }
@media (min-width: 768px) { .faq-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; } }
.faq-preview > div { background: var(--card); border-radius: var(--radius-lg); padding: 30px 30px 28px; box-shadow: var(--shadow); border: 1px solid rgba(68, 81, 58, .06); }
.faq-preview h3 { margin-bottom: 12px; }
.faq-preview h3 a { color: var(--ink); text-decoration: none; }
.faq-preview h3 a:hover { color: var(--olive-700); text-decoration: underline; text-decoration-thickness: 1px; }
.faq-preview p { color: var(--ink-2); font-size: 17px; }

/* closing call to action: an olive card on paper */
.cta-block { padding: 8px 0 var(--section); }
.page-body + .cta-block, .page-body--form + .cta-block { padding-top: 24px; }
.cta-block > .container { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius-xl); padding: 52px 28px 0; background: var(--art-bg); box-shadow: var(--shadow-lg); }
.cta-block > .container::after { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--grain); pointer-events: none; }
.cta-block h2 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 16px; max-width: 12em; }
.cta-block p { color: var(--cream); font-size: 19px; max-width: 30em; }
.cta-block .content-narrow > .button { margin-top: 30px; }
.cta-art { width: 100%; max-width: 320px; margin: 28px auto 0; }
@media (min-width: 900px) {
  .cta-block > .container { padding: 88px 88px 92px; }
  .cta-block .content-narrow, .cta-block > .container > h2, .cta-block > .container > p, .cta-block > .container > .cta-group { max-width: 600px; }
  .cta-art { position: absolute; right: 64px; bottom: 0; width: 38%; max-width: 380px; margin: 0; }
}

/* ---------- inner page hero ---------- */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 28px 0 80px; }
.page-hero::before { content: ""; position: absolute; z-index: -1; width: 820px; height: 820px; right: -240px; top: 0; border-radius: 50%; background: radial-gradient(closest-side, rgba(128, 146, 104, .38), rgba(128, 146, 104, 0)); }
.page-intro { display: grid; gap: 40px; align-items: center; }
.page-intro > * { min-width: 0; }
.page-hero h1 { font-size: clamp(38px, 4.7vw, 66px); font-weight: 600; margin-bottom: 26px; max-width: 12.5em; }
.page-hero .page-intro > div > p, .page-hero .form-intro > div > p { font-size: 19px; line-height: 1.62; color: var(--cream-soft); max-width: 34em; }
.page-hero .intro-art, .page-hero .mount { width: 100%; max-width: 420px; justify-self: center; }
.page-hero .slot-empty--hero { max-width: 390px; }
.page-hero .slot-empty--hero { max-width: 420px; }
.page-hero .art-slot, .page-hero .intro-art, .band-olive .art-slot { box-shadow: inset 0 0 0 1px rgba(243, 236, 220, .12), 0 2px 6px rgba(20, 24, 14, .18), 0 44px 80px -40px rgba(12, 16, 8, .7); }
@media (max-width: 899px) {
  .page-hero .intro-art { max-width: 300px; justify-self: start; margin-right: 18px; }
  .page-hero .mount { margin-right: 18px; justify-self: start; }
  .page-hero .form-intro__mount { max-width: 260px; }
}
@media (min-width: 900px) {
  .page-hero { padding: 40px 0 112px; }
  .page-intro, .page-hero .form-intro { grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 80px; }
  .page-hero .intro-art, .page-hero .mount { justify-self: end; }
  .page-hero .slot-empty--hero { width: 100%; }
}
.page-hero .form-intro { display: grid; gap: 40px; align-items: center; }

/* ---------- inner page body ---------- */
.page-body { padding-block: 88px 64px; }
@media (min-width: 1024px) { .page-body { padding-block: 120px 88px; } }
.page-body h2 { font-size: clamp(28px, 2.8vw, 40px); }
.page-body section { scroll-margin-top: 24px; }
.run-in { font-weight: 600; color: var(--olive-800); }
.page-body ul:not([class]) { list-style: none; padding: 0; }
.page-body ul:not([class]) li, .who-list li { position: relative; padding-left: 30px; }
.page-body ul:not([class]) li::before, .who-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--olive-600); }
.who-list { list-style: none; padding: 0; }
.who-list li + li { margin-top: 18px; }

/* sections that sit straight in the page body (moving, about, service area, pricing): editorial split */
.page-body > section, .page--single .page__content > section:not(.sessions) { padding-block: 56px; border-top: 1px solid var(--line); }
.page-body > section:first-child, .page--single .page__content > section:first-child { border-top: 0; padding-top: 0; }
.page-body > section > p, .page-body > section > ul, .page__content > section > p, .page__content > section > ul:not(.timeline) { max-width: var(--measure); }
#product > p:not(:last-of-type) { position: relative; padding: 20px 24px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(68, 81, 58, .07); margin-bottom: 12px; }
#product > p:last-of-type { margin-top: 22px; font-weight: 500; color: var(--olive-800); }
#where-things-go > p { margin: 0; padding: 14px 0; border-top: 1px solid var(--line); }
#where-things-go > p:last-child { border-bottom: 1px solid var(--line); }
#after > p { font-size: 1.04em; }
@media (min-width: 1024px) {
  .page-body > section, .page--single .page__content > section:not(.sessions) { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); column-gap: 72px; align-items: start; }
  .page-body > section > *, .page--single .page__content > section:not(.sessions) > * { grid-column: 2; }
  .page-body > section > h2, .page--single .page__content > section:not(.sessions) > h2 { grid-column: 1; grid-row: 1 / span 30; position: sticky; top: 32px; margin: 0; }
  .page-body > section > .room-layout { margin-top: 0; }
}
.room-layout { display: grid; gap: 32px; align-items: start; }
.room-layout > * { min-width: 0; }
@media (min-width: 1100px) { .room-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: 48px; } }
@media (min-width: 640px) and (max-width: 1099px) { .room-layout > .mount { max-width: 360px; } }

/* sidebar index pages (services, how it works, FAQ) */
.page--indexed { display: grid; gap: 40px; }
.page--indexed > * { min-width: 0; }
.index { background: var(--tint); border-radius: var(--radius-lg); padding: 22px 22px 18px; }
.index__title { margin: 0 0 12px; font-size: 14px; font-weight: 600; letter-spacing: .06em; font-variant-caps: all-small-caps; font-size: 16px; color: var(--ink-2); }
.index ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; counter-reset: idx; }
.index li { margin: 0; }
.index a { display: inline-flex; align-items: center; min-height: 40px; padding: 6px 14px; border-radius: 999px; background: var(--card); color: var(--ink); font-size: 15px; font-weight: 500; text-decoration: none; box-shadow: var(--shadow-sm); }
.index a:hover { color: var(--olive-800); box-shadow: inset 0 0 0 1.5px var(--olive-600); }
@media (min-width: 1024px) {
  .page--indexed { grid-template-columns: 250px minmax(0, 1fr); gap: 80px; align-items: start; }
  .index { position: sticky; top: 28px; padding: 26px 20px 22px; background: transparent; border-radius: 0; border-left: 1px solid var(--line); padding: 4px 0 4px 0; max-height: calc(100vh - 56px); overflow-y: auto; }
  .index__title { padding-left: 22px; }
  .index ol { display: block; }
  .index a { display: flex; min-height: 38px; padding: 6px 12px 6px 22px; margin-left: -1px; border-radius: 0; background: none; box-shadow: none; border-left: 2px solid transparent; color: var(--ink-2); font-size: 15.5px; }
  .index a:hover { box-shadow: none; border-left-color: var(--olive-600); color: var(--ink); }
}
.page__content > section:not(.bin--open):not(.sessions) { padding-block: 48px; border-top: 1px solid var(--line); }
.page__content > section:first-child:not(.bin--open) { padding-top: 0; border-top: 0; }
.page--indexed .page__content > section > h2 { margin-bottom: 22px; }
.page__content > p { margin-block: 40px; }

/* services: each room is a card */
.bin--open { padding: 30px 24px; }
.bin--open + .bin--open { margin-top: 24px; }
.bin--open h2 { margin-bottom: 22px; }
.bin--open h2 .label { font: inherit; }
.bin--open p { font-size: 17px; }
@media (min-width: 768px) { .bin--open { padding: 44px 44px 44px; } }
.note-card { margin-top: 8px; }
.page__content > section.note-card { padding: 34px 32px; border: 0; background: var(--tint); border-radius: var(--radius-lg); }
.page__content > section.note-card h2 { font-size: 28px; }

/* how it works */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; position: relative; margin: 0; padding: 0 0 34px 74px; max-width: 42em; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: -4px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--olive-800); color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 23px; box-shadow: 0 0 0 6px var(--paper); z-index: 1; }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 23.5px; top: 44px; bottom: 0; width: 1px; background: repeating-linear-gradient(180deg, var(--olive-400) 0 4px, transparent 4px 9px); }
.steps strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.3; margin-bottom: 4px; letter-spacing: -0.01em; }
.triptych { display: grid; gap: 22px; margin: 36px 0 44px; }
.triptych > * { min-width: 0; }
@media (min-width: 640px) { .triptych { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } .triptych .caption { font-size: 15px; } .triptych .tag { font-size: 13px; top: 12px; left: 12px; } }
.timeline { list-style: none; margin: 0; padding: 0; border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow); padding: 8px 26px; }
.timeline li { display: grid; grid-template-columns: minmax(0, 1fr); gap: 4px; margin: 0; padding: 18px 0; border-top: 1px solid var(--line); }
.timeline li:first-child { border-top: 0; }
.timeline time { font-family: var(--font-body); font-weight: 400; font-size: 19px; color: var(--olive-700); }
@media (min-width: 640px) { .timeline { padding: 10px 34px; } .timeline li { grid-template-columns: 150px minmax(0, 1fr); gap: 24px; padding: 20px 0; } .timeline time { font-size: 21px; } }

/* pricing */
.sessions h2 { margin-bottom: 36px; }
.price-blocks { display: grid; gap: 20px; margin-bottom: 36px; }
@media (min-width: 900px) { .price-blocks { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; } }
.price-block { position: relative; display: flex; flex-direction: column; padding: 30px 28px 30px; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid rgba(68, 81, 58, .07); }
.price-block .label { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 7px; background: var(--tint-2); color: var(--olive-900); font-size: 14px; font-weight: 600; letter-spacing: .01em; }
.price-block .label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--olive-600); }
.price { margin: 26px 0 16px; font-family: var(--font-display); line-height: 1.05; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.price__time { display: block; font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--ink-2); margin-bottom: 10px; }
.price__amt { display: block; font-size: 52px; font-weight: 600; letter-spacing: -0.02em; color: var(--olive-800); }
.price-block > p:last-child { font-size: 16px; color: var(--ink-2); }
.price-block:last-child { background: var(--art-bg); color: var(--cream); border: 0; box-shadow: var(--shadow-lg); }
.price-block:last-child .label { background: var(--cream); }
.price-block:last-child .label::before { background: var(--apricot); }
.price-block:last-child .price { border-bottom-color: rgba(243, 236, 220, .18); }
.price-block:last-child .price__time, .price-block:last-child > p:last-child { color: var(--cream); }
.price-block:last-child .price__amt { color: var(--cream); }
.sessions > p { max-width: var(--measure); color: var(--ink-2); }
.sessions { padding-bottom: 56px; }
.simple-list { list-style: none; margin: 0 0 24px; padding: 0; border-radius: var(--radius-lg); background: var(--card); box-shadow: var(--shadow); padding: 6px 26px; }
.simple-list li { margin: 0; padding: 16px 0 16px 30px; border-top: 1px solid var(--line); position: relative; }
.simple-list li:first-child { border-top: 0; }
.simple-list li::before { content: ""; position: absolute; left: 2px; top: 1.45em; width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--olive-600); }
.page--single .page__content > section.founding { background: var(--tint); border-radius: var(--radius-xl); padding: 44px 32px; border-top: 0; margin-block: 24px; }
.founding + section { border-top: 0 !important; }
@media (min-width: 1024px) { .page--single .page__content > section.founding { padding: 64px 64px; } }

/* about */
.asks p, .practical p { position: relative; margin: 0; padding: 14px 0 14px 34px; border-top: 1px solid var(--line); max-width: var(--measure); }
.asks p:last-child, .practical p:last-child { border-bottom: 1px solid var(--line); }
.asks p::before { content: ""; position: absolute; left: 4px; top: 1.45em; width: 12px; height: 7px; border-radius: 0 7px 0 7px; background: var(--olive-600); transform: rotate(-20deg); }
.practical p::before { content: ""; position: absolute; left: 0; top: 16px; width: 22px; height: 22px; border-radius: 50%; background: var(--tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6.8 11.3l2.7 2.6 5.6-5.8' fill='none' stroke='%2344513A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px no-repeat; }
@media (min-width: 768px) { .practical { } }

/* FAQ */
.faq > section:not(.cta-block) > h2 { font-size: clamp(22px, 2vw, 27px); line-height: 1.25; margin-bottom: 14px; }
.page__content.faq > section { padding-block: 34px; }
.page__content.faq > section:first-child { padding-top: 0; }

/* service area */
.zones { display: grid; gap: 20px; margin-bottom: 48px; }
@media (min-width: 1024px) { .zones { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; } }
.zone { position: relative; background: var(--card); border-radius: var(--radius-lg); padding: 30px 28px 30px; box-shadow: var(--shadow); border: 1px solid rgba(68, 81, 58, .07); }
.zone h2 { font-size: clamp(24px, 2vw, 28px); line-height: 1.2; margin: 18px 0 16px; }
.zone p { font-size: 16.5px; }
.zone-mark { display: block; width: 60px; height: 60px; }
.zone-mark .z1, .zone-mark .z2, .zone-mark .z3 { stroke: var(--olive-400); }
.zone-mark--1 .z1 { fill: var(--apricot); stroke: var(--apricot); }
.zone-mark--2 .z1 { fill: var(--olive-400); stroke: none; }
.zone-mark--2 .z2 { stroke: var(--olive-800); stroke-width: 3; }
.zone-mark--3 .z1 { fill: var(--olive-400); stroke: none; }
.zone-mark--3 .z3 { stroke: var(--apricot-light); stroke-width: 3; }
#by-agreement { background: var(--art-bg); color: var(--cream); border: 0; }
#by-agreement .z1 { fill: var(--cream-soft); }
#by-agreement .z2 { stroke: rgba(243, 236, 220, .45); }
#by-agreement p { color: var(--cream); }
.page-body > section.ask { padding-top: 48px; }

/* forms */
.page-body--form { padding-top: 0; }
.form-wrap { display: grid; gap: 32px; margin-top: -48px; position: relative; }
.form-wrap > * { min-width: 0; }
@media (min-width: 1024px) { .form-wrap { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; align-items: start; margin-top: -72px; } }
form[name="lead"] { background: var(--card); border-radius: var(--radius-xl); padding: 30px 22px 34px; box-shadow: var(--shadow-lg); border: 1px solid rgba(68, 81, 58, .06); }
@media (min-width: 768px) { form[name="lead"] { padding: 52px 56px 56px; } }
.form-next { background: var(--tint); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
@media (min-width: 1024px) { .form-next { position: sticky; top: 28px; margin-top: 0; } }
.form-next h2 { font-size: 28px; margin-bottom: 18px; }
.form-next ol { list-style: none; padding: 0; margin: 0 0 22px; counter-reset: nx; }
.form-next li { counter-increment: nx; position: relative; padding: 0 0 16px 44px; margin: 0; font-size: 16.5px; }
.form-next li::before { content: counter(nx); position: absolute; left: 0; top: -1px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--olive-800); color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.form-next p { font-size: 16px; color: var(--ink-2); }
.field { margin: 0 0 30px; }
.field > label, legend { display: block; margin: 0 0 10px; padding: 0; font-weight: 600; font-size: 17px; line-height: 1.4; color: var(--ink); }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.help { margin: -4px 0 12px; font-size: 15px; line-height: 1.5; color: var(--ink-2); }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  display: block; width: 100%; min-height: 54px; padding: 13px 16px; font: inherit; font-size: 17px; color: var(--ink);
  background: #FFFFFB; border: 1.5px solid var(--line-strong); border-radius: 12px;
  box-shadow: inset 0 1px 2px rgba(35, 38, 29, .06); transition: border-color .15s, box-shadow .15s; appearance: none; -webkit-appearance: none;
}
textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
select { padding-right: 48px; cursor: pointer; background: #FFFFFB url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6l4.5 4.5L12.5 6' fill='none' stroke='%2344513A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 16px center / 16px no-repeat; }
input:hover, select:hover, textarea:hover { border-color: var(--olive-600); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--olive-700); box-shadow: 0 0 0 4px rgba(98, 114, 84, .22); }
.choice { position: relative; margin: 0; }
.choice + .choice { margin-top: 10px; }
.choice input { position: absolute; left: 16px; top: 16px; margin: 0; width: 22px; height: 22px; appearance: none; -webkit-appearance: none; background: #FFFFFB; border: 1.5px solid var(--line-strong); border-radius: 7px; cursor: pointer; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.choice input[type="radio"] { border-radius: 50%; }
.choice input:checked { background: var(--olive-700); border-color: var(--olive-700); }
.choice input[type="checkbox"]:checked { background: var(--olive-700) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6.5 11.4l3 2.9 6-6.3' fill='none' stroke='%23FFFDF8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px no-repeat; }
.choice input[type="radio"]:checked { box-shadow: inset 0 0 0 4.5px #FFFFFB; }
.choice label { display: block; min-height: 54px; padding: 14px 16px 14px 52px; border: 1.5px solid var(--line); border-radius: 12px; background: #FFFFFB; cursor: pointer; font-size: 16.5px; line-height: 1.45; transition: border-color .15s, background .15s, box-shadow .15s; }
.choice label:hover { border-color: var(--olive-400); }
.choice input:checked + label { border-color: var(--olive-700); background: #F3F4E9; box-shadow: 0 0 0 1px var(--olive-700); }
.choice input:focus-visible { outline: none; }
.choice input:focus-visible + label { box-shadow: 0 0 0 4px rgba(98, 114, 84, .28); border-color: var(--olive-700); }
.field > .choice { margin-top: 12px; }
@media (min-width: 640px) {
  .field fieldset:not([aria-describedby^="budget"]) { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .field fieldset:not([aria-describedby^="budget"]) > .help { grid-column: 1 / -1; margin-bottom: 4px; }
  .field fieldset:not([aria-describedby^="budget"]) .choice + .choice { margin-top: 0; }
}
input[type="file"] { display: block; width: 100%; padding: 10px; font: inherit; font-size: 15px; color: var(--ink-2); background: #FFFFFB; border: 1.5px dashed var(--line-strong); border-radius: 12px; cursor: pointer; }
input[type="file"]::file-selector-button { margin-right: 14px; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--tint-2); color: var(--olive-900); font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; }
input[type="file"]:hover::file-selector-button { background: #D6D9C1; }
.error { margin: 8px 0 0; font-size: 15px; font-weight: 500; color: var(--rust); }
.field .error:empty { display: none; }
.field.is-invalid input:not([type="checkbox"]):not([type="radio"]), .field.is-invalid select, .field.is-invalid textarea { border-color: var(--rust); }
.field.is-invalid .choice label { border-color: rgba(154, 63, 30, .5); }
#outside-note { margin: 0 0 30px; padding: 20px 22px 20px 24px; border-radius: var(--radius); background: #FBF0E3; border: 1px solid #EACBA8; color: var(--ink); }
form[name="lead"] > p:not(.hidden):not(#outside-note) { margin: 8px 0 22px; font-size: 16px; color: var(--ink-2); }
form[name="lead"] button[type="submit"] { min-height: 58px; padding: 16px 34px; font-size: 17px; }
form[name="lead"] .reassure { margin-top: 16px; }

/* ---------- simple pages (thanks, privacy, 404) ---------- */
.olive-cap { height: 150px; background: var(--olive-800) var(--grain); }
.page-simple { position: relative; margin-top: -126px; padding-top: 1px; padding-bottom: var(--section); }
.page-simple > .section { position: relative; max-width: 820px; margin: 0 auto; padding: 40px 24px 44px; background: var(--card); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); border: 1px solid rgba(68, 81, 58, .06); }
@media (min-width: 768px) { .page-simple > .section { padding: 64px 72px 68px; } .olive-cap { height: 200px; } .page-simple { margin-top: -160px; } }
.page-simple h1 { font-size: clamp(36px, 4.4vw, 56px); color: var(--olive-900); }
.page-simple h2 { font-size: clamp(24px, 2.2vw, 30px); margin-top: 1.4em; }
.page-simple ol { padding-left: 1.3em; }
.page-simple ol li::marker { font-weight: 600; color: var(--olive-700); }
.page-simple ul { list-style: none; padding: 0; display: grid; gap: 6px; }
.page-simple ul li { margin: 0; }
@media (min-width: 640px) { .page-simple ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; } }
.page-simple .cta-group { margin-top: 28px; }

/* ---------- footer ---------- */
.site-footer { background-color: var(--olive-950); padding: 80px 0 40px; color: var(--cream-soft); }
.site-footer .cols { display: grid; gap: 40px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) { .site-footer .cols { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.3fr); gap: 56px; } }
.site-footer h2 { font-size: 22px; font-weight: 600; color: var(--cream); margin-bottom: 18px; }
.site-footer .cols > div:first-child h2 { font-size: 30px; }
.site-footer p { font-size: 16px; margin-bottom: 10px; }
.site-footer a:not(.button) { color: var(--cream); background-image: none; }
.site-footer a:not(.button):hover { color: var(--apricot-light); }
.site-footer nav ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
.site-footer nav li { margin: 0; }
.site-footer nav a { display: inline-flex; align-items: center; min-height: 40px; font-weight: 500; font-size: 16px; }
.site-footer .cols > div:last-child .standalone-link { display: inline-flex; min-height: 40px; align-items: center; font-size: 16px; }
.site-footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; align-items: center; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(243, 236, 220, .14); font-size: 14px; }
.site-footer .bottom p { margin: 0; font-size: 14px; }
.site-footer .bottom a { display: inline-flex; min-height: 44px; align-items: center; }

/* ---------- mobile quick-contact bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(250, 247, 240, .9); -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(35, 38, 29, .35); }
.mobile-bar .button { min-height: 48px; padding: 0 10px; font-size: 16px; }
@media (min-width: 768px) { .mobile-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 70px; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }

/* the soft glow behind hero text is for wide screens only, so phone text keeps full contrast */
@media (max-width: 899px) { .hero::before, .page-hero::before { display: none; } }

/* display-face details: same upright semibold, same feature settings as headings */
.wordmark, .bin summary .label, .steps strong, .price__amt, .numbered-steps li::before, .steps li::before, .form-next li::before, .page-simple ol li::marker { font-family: var(--font-display); font-style: normal; font-optical-sizing: auto; font-feature-settings: "liga" 1, "dlig" 0, "swsh" 0, "calt" 0; }

/* ---- copy v2 additions ---- */
.plain-lines { list-style: none; margin: 26px 0 30px; padding: 0; max-width: 34em; }
.plain-lines li { margin: 0; padding: 13px 0; border-top: 1px solid rgba(243, 236, 220, .16); color: var(--cream); font-size: 17px; line-height: 1.5; }
.plain-lines li:last-child { border-bottom: 1px solid rgba(243, 236, 220, .16); }
.rates h2 { margin-bottom: 44px; }
.rates-grid { display: grid; gap: 22px; }
@media (min-width: 900px) { .rates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
.rates-card { display: flex; flex-direction: column; padding: 12px 12px 30px; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid rgba(68, 81, 58, .07); }
.rates-card > :not(.rates-art) { margin-inline: 14px; }
@media (min-width: 768px) { .rates-card > :not(.rates-art) { margin-inline: 24px; } }
.rates-art { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; background: var(--art-bg); color: var(--cream); margin-bottom: 28px; }
.rates-art::after { content: ""; position: absolute; inset: 0; background-image: var(--grain); pointer-events: none; }
.rates-art .art { position: absolute; inset: 0; width: 100%; height: 100%; }
.rates-card > p { font-size: 17.5px; }
.rates-card > .standalone-link { margin-top: auto; padding-top: 6px; align-self: flex-start; }
.rates-card #founding-offer-line { margin-top: 4px; margin-bottom: 26px; padding: 18px 20px; background: var(--tint); box-shadow: none; font-size: 16.5px; }
.rates-card--area { background: var(--tint); border-color: transparent; }
/* services page: the set-apart garage line and the note that points to Moving */
.set-apart { margin-top: 20px; padding: 16px 20px; border-radius: 12px; background: var(--tint); font-size: 16px; }
.page__content > p.page-note { margin: 32px 0; padding: 22px 26px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(68, 81, 58, .07); }
.page-note .standalone-link { margin-left: 6px; }
/* about page lists */
.line-list { list-style: none; margin: 0; padding: 0; max-width: var(--measure); }
.line-list li { position: relative; margin: 0; padding: 14px 0 14px 34px; border-top: 1px solid var(--line); }
.line-list li:last-child { border-bottom: 1px solid var(--line); }
.asks .line-list li::before { content: ""; position: absolute; left: 4px; top: 1.45em; width: 12px; height: 7px; border-radius: 0 7px 0 7px; background: var(--olive-600); transform: rotate(-20deg); }
.practical .line-list li::before { content: ""; position: absolute; left: 0; top: 16px; width: 22px; height: 22px; border-radius: 50%; background: var(--tint-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M6.8 11.3l2.7 2.6 5.6-5.8' fill='none' stroke='%2344513A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 22px no-repeat; }
.page-hero .page-intro > div > .cta-group { margin-top: 30px; }
