/* ---------- tokens: light (bare :root defines the complete palette) ---------- */
  :root {
    --ground: #FAF9F5;
    --surface: #FFFFFF;
    --band: #F0F3E9;
    --band-2: #F5F4EE;
    --ink: #1F2028;
    --ink-2: #565E56;
    --ink-3: #7C837B;
    --green: #2D7315;
    --green-deep: #1E5210;
    --clay: #D2412E;
    --clay-soft: #E14E3C;
    --line: #E3E2D8;
    --line-2: #D2D2C6;
    --plate: #FFFFFF;
    --shadow: 0 1px 2px rgba(31,32,40,.05), 0 8px 24px -12px rgba(31,32,40,.16);
    --shadow-lift: 0 2px 4px rgba(31,32,40,.06), 0 18px 40px -16px rgba(31,32,40,.22);

    --f-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --f-body: "Source Serif 4", Georgia, "Times New Roman", serif;
    --wrap: 1120px;

    /* declared once, used in several places without repeating the payload */
    --photo-kaleb: url("/assets/kaleb.jpg");
    --photo-andrea: url("/assets/andrea.jpg");
  }

  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ground: #15171A;
      --surface: #1D2024;
      --band: #202519;
      --band-2: #1A1D20;
      --ink: #F1F0EA;
      --ink-2: #AEB4AB;
      --ink-3: #8B918A;
      --green: #77C24C;
      --green-deep: #8FD164;
      --clay: #F0755F;
      --clay-soft: #F0755F;
      --line: #2F3339;
      --line-2: #3C4149;
      --plate: #FFFFFF;
      --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.7);
      --shadow-lift: 0 2px 4px rgba(0,0,0,.45), 0 18px 40px -16px rgba(0,0,0,.8);
    }
  }
  :root[data-theme="dark"] {
    --ground: #15171A;
    --surface: #1D2024;
    --band: #202519;
    --band-2: #1A1D20;
    --ink: #F1F0EA;
    --ink-2: #AEB4AB;
    --ink-3: #8B918A;
    --green: #77C24C;
    --green-deep: #8FD164;
    --clay: #F0755F;
    --clay-soft: #F0755F;
    --line: #2F3339;
    --line-2: #3C4149;
    --plate: #FFFFFF;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 24px -12px rgba(0,0,0,.7);
    --shadow-lift: 0 2px 4px rgba(0,0,0,.45), 0 18px 40px -16px rgba(0,0,0,.8);
  }

  /* ---------- base ---------- */
  *, *::before, *::after { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--ground);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, .u-label, .btn, nav, .navlink {
    font-family: var(--f-display);
  }
  h1, h2, h3, h4 { color: var(--ink); text-wrap: balance; margin: 0; }
  h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); font-weight: 800; line-height: 1.04; letter-spacing: -.022em; }
  h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); font-weight: 800; line-height: 1.14; letter-spacing: -.015em; }
  h3 { font-size: 1.14rem; font-weight: 700; line-height: 1.3; letter-spacing: -.005em; }
  h4 { font-size: .98rem; font-weight: 700; }
  p { margin: 0; }
  a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 2px; }
  img { max-width: 100%; display: block; }

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

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }

  /* ---------- shared bits ---------- */
  .wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; }

  .u-label {
    display: inline-block;
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .14em; color: var(--clay);
  }
  .prose { max-width: 64ch; color: var(--ink-2); }
  .prose.lg { font-size: 1.14rem; line-height: 1.6; }
  .closing {
    font-family: var(--f-display); font-weight: 700;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem); line-height: 1.4;
    letter-spacing: -.008em; color: var(--ink);
    margin-top: .9rem; max-width: 40ch;
  }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .82rem 1.4rem; border-radius: 4px; border: 2px solid transparent;
    font-size: .92rem; font-weight: 700; letter-spacing: .01em;
    text-decoration: none; cursor: pointer; text-align: center;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--green); color: #fff; }
  .btn-primary:hover { background: var(--green-deep); color: #fff; }
  .btn-clay { background: var(--clay); color: #fff; }
  .btn-clay:hover { background: #B4331F; color: #fff; }
  .btn-ghost { border-color: var(--line-2); color: var(--ink); background: transparent; }
  .btn-ghost:hover { border-color: var(--green); color: var(--green); }
  :root[data-theme="dark"] .btn-primary, :root[data-theme="dark"] .btn-clay { color: #14170F; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .btn-primary,
    :root:not([data-theme="light"]) .btn-clay { color: #14170F; }
    :root:not([data-theme="light"]) .btn-primary:hover { background: var(--green-deep); color: #14170F; }
    :root:not([data-theme="light"]) .btn-clay:hover { background: #F79180; color: #14170F; }
  }

  .btnrow { display: flex; flex-wrap: wrap; gap: .7rem; }

  /* theme-matched logo: two recolored variants swapped by theme */
  .logo { display: inline-block; line-height: 0; }
  .logo img { display: block; width: 100%; height: auto; }
  .logo .dk { display: none; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .logo .lt { display: none; }
    :root:not([data-theme="light"]) .logo .dk { display: block; }
  }
  :root[data-theme="dark"] .logo .lt { display: none; }
  :root[data-theme="dark"] .logo .dk { display: block; }

  /* ---------- header ---------- */
  header.site {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in srgb, var(--ground) 88%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .headbar {
    display: flex; align-items: center; gap: 1rem;
    padding-block: .5rem; padding-inline: 20px;
  }
  .brandlink { margin-right: auto; display: inline-block; }
  .brandlink .logo { width: 152px; }

  nav.site { display: flex; align-items: center; gap: .15rem; }
  .navlink {
    display: inline-block; padding: .5rem .68rem; border-radius: 4px;
    font-size: .86rem; font-weight: 600; color: var(--ink-2);
    text-decoration: none; white-space: nowrap;
    transition: color .15s ease, background-color .15s ease;
  }
  .navlink:hover { color: var(--ink); background: var(--band-2); }
  .navlink[aria-current="page"] { color: var(--green); background: var(--band); }

  .headcall {
    display: inline-flex; align-items: baseline; gap: .45rem;
    font-family: var(--f-display); font-weight: 800; font-size: .98rem;
    color: var(--clay); text-decoration: none; white-space: nowrap;
    padding: .45rem .7rem; border: 2px solid var(--clay); border-radius: 4px;
  }
  .headcall:hover { background: var(--clay); color: #fff; }
  .headcall .tiny { font-family: var(--f-display); font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

  .navtoggle {
    display: none; background: transparent; border: 1px solid var(--line-2);
    border-radius: 4px; padding: .5rem .7rem; color: var(--ink);
    font-family: var(--f-display); font-weight: 700; font-size: .8rem; cursor: pointer;
  }

  @media (max-width: 860px) {
    .headbar { flex-wrap: wrap; row-gap: .55rem; }
    .navtoggle { display: inline-block; order: 3; }
    .headcall { order: 2; }
    nav.site {
      order: 4; flex-basis: 100%; flex-wrap: wrap; gap: .2rem;
      border-top: 1px solid var(--line); padding-top: .55rem;
    }
    nav.site[data-collapsed="true"] { display: none; }
    .brandlink .logo { width: 124px; }
  }

  /* ---------- sections ---------- */
  .sect { padding-block: clamp(2.1rem, 4.6vw, 3.4rem); padding-inline: 20px; }
  .sect.tight { padding-block: clamp(1.6rem, 3.4vw, 2.3rem); }
  .sect.band { background: var(--band); }
  .sect.band2 { background: var(--band-2); }
  .sect + .sect.band, .sect.band + .sect { border-top: 1px solid var(--line); }

  .head-stack { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.7rem; }
  .head-stack .u-label { align-self: flex-start; }

  /* ---------- hero ---------- */
  .hero { padding-inline: 20px; padding-block: clamp(1.3rem, 2.6vw, 2rem) clamp(2.4rem, 5vw, 3.6rem); }
  .hero-grid {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

  .hero h1 span.accent { color: var(--green); }
  .hero-tag {
    font-family: var(--f-display); font-weight: 600; font-style: italic;
    font-size: 1.02rem; color: var(--ink-3); letter-spacing: .01em;
    margin-bottom: 1rem;
  }
  .hero .prose { margin-block: .85rem 0; }
  .emph { font-weight: 700; color: var(--ink); }
  .hero .btnrow { margin-top: 1.45rem; }

  .hero-card {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 6px; box-shadow: var(--shadow);
    padding: 1.6rem 1.5rem;
    display: flex; flex-direction: column; gap: 1.1rem;
  }
  .hero-card .logo { align-self: flex-start; width: 100%; max-width: 292px; }
  .callblock { display: flex; flex-direction: column; gap: .3rem; }
  .callblock .num {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 1.9rem); letter-spacing: -.01em;
    color: var(--clay); text-decoration: none; display: inline-block;
  }
  .callblock .num:hover { text-decoration: underline; }
  .hero-card .hrs {
    font-size: .88rem; color: var(--ink-3); border-top: 1px solid var(--line);
    padding-top: .9rem;
  }

  /* ---------- pillars (from the business card) ---------- */
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .pillar {
    padding: 1.15rem 1.3rem; border-left: 3px solid var(--clay);
  }
  .pillar h4 { margin-bottom: .2rem; }
  .pillar p { font-size: .92rem; color: var(--ink-2); line-height: 1.5; }
  @media (max-width: 780px) {
    .pillars { grid-template-columns: 1fr; row-gap: .1rem; }
    .pillar + .pillar { border-top: 1px solid var(--line-2); }
  }

  /* ---------- service list (red bar echoes the card) ---------- */
  .svc-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }
  .svc {
    background: var(--surface); border: 1px solid var(--line);
    border-left: 3px solid var(--clay); border-radius: 4px;
    padding: 1.2rem 1.3rem;
    display: flex; flex-direction: column; gap: .45rem;
  }
  .svc-top { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; }
  .svc h3 { color: var(--ink); }
  .cadence {
    flex-shrink: 0;
    font-family: var(--f-display); font-size: .64rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; color: var(--green);
    background: var(--band); border-radius: 3px; padding: .25rem .45rem;
    white-space: nowrap;
  }
  .svc p { font-size: .94rem; color: var(--ink-2); line-height: 1.55; }

  /* ---------- hairline service rows (services page) ---------- */
  .rows { display: flex; flex-direction: column; }
  .row {
    display: grid; grid-template-columns: 1fr auto; gap: .5rem 1.2rem;
    align-items: baseline;
    padding-block: 1.05rem; border-bottom: 1px solid var(--line);
  }
  .row:first-child { border-top: 1px solid var(--line); }
  .row .rname { font-family: var(--f-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
  .row .rdesc { grid-column: 1 / -1; font-size: .94rem; color: var(--ink-2); max-width: 62ch; line-height: 1.55; }
  @media (max-width: 560px) { .row { grid-template-columns: 1fr; } }

  .group + .group { margin-top: 2.2rem; }
  .group > .ghead { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
  .group > .ghead p { font-size: .96rem; color: var(--ink-2); max-width: 60ch; }

  /* ---------- service area ---------- */
  .area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  @media (max-width: 780px) { .area-grid { grid-template-columns: 1fr; } }
  .county {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 4px; padding: 1.15rem 1.25rem;
  }
  .county h3 { margin-bottom: .5rem; }
  .county h3 small {
    display: block; font-family: var(--f-display); font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em; color: var(--green); margin-bottom: .25rem;
  }
  .county p { font-size: .93rem; color: var(--ink-2); line-height: 1.55; }

  /* ---------- plans ---------- */
  .plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1rem; }
  .plan {
    background: var(--surface); border: 1px solid var(--line); border-radius: 5px;
    padding: 1.4rem 1.35rem; display: flex; flex-direction: column; gap: .8rem;
  }
  .plan.feature { border-color: var(--green); box-shadow: var(--shadow-lift); }
  .plan .ptop { display: flex; flex-direction: column; gap: .45rem; }
  .plan .badge {
    align-self: flex-start;
    font-family: var(--f-display); font-size: .64rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    background: var(--green); color: #fff; border-radius: 3px; padding: .25rem .5rem;
  }
  :root[data-theme="dark"] .plan .badge { color: #14170F; }
  @media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .plan .badge { color: #14170F; } }
  .price {
    display: block;
    font-family: var(--f-display); font-weight: 800; font-size: 1.75rem;
    color: var(--ink); letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
  }
  .price .from {
    display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink-3);
  }
  .price .per { font-size: .85rem; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
  .plan ul { margin: 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: .35rem; }
  .plan li { font-size: .93rem; color: var(--ink-2); line-height: 1.5; }
  .plan .foot { margin-top: auto; padding-top: .4rem; }

  .note {
    border-left: 3px solid var(--green); background: var(--band);
    padding: 1rem 1.2rem; border-radius: 0 4px 4px 0;
    font-size: .94rem; color: var(--ink-2); max-width: 70ch;
  }

  /* ---------- quote block ---------- */
  .quote-block {
    display: grid; grid-template-columns: auto 1fr; gap: 1.6rem;
    align-items: center;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 6px; padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow);
  }
  @media (max-width: 700px) { .quote-block { grid-template-columns: 1fr; } }
  .portrait {
    background-image: var(--photo-kaleb);
    background-size: cover; background-position: center 8%;
    background-color: var(--band);
    border-radius: 5px; flex-shrink: 0;
    width: 116px; aspect-ratio: 1 / 1; max-width: 100%;
  }
  .portrait.pa { background-image: var(--photo-andrea); background-position: center 6%; }
  .portrait.lg { width: 248px; aspect-ratio: 4 / 5; border-radius: 6px; }
  @media (max-width: 700px) { .portrait.lg { width: 190px; } }

  .faces { display: flex; gap: .7rem; }
  .faces .portrait { width: 132px; }

  .pullquote {
    border-left: 3px solid var(--green); padding-left: 1.3rem;
    margin-bottom: 2.4rem; max-width: 46ch;
  }
  .pullquote blockquote {
    margin: 0; font-size: clamp(1.3rem, 3vw, 1.75rem); line-height: 1.35;
    font-style: italic; color: var(--ink);
  }
  .pullquote cite {
    display: block; margin-top: .85rem; font-family: var(--f-display);
    font-size: .78rem; font-weight: 700; font-style: normal;
    letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3);
  }

  /* ---------- the two of us ---------- */
  .about-grid {
    display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: clamp(1.6rem, 4vw, 3.2rem); align-items: start;
  }
  @media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; } }

  .people { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  .person {
    background: var(--surface); border: 1px solid var(--line); border-radius: 5px;
    padding: 1.2rem; display: flex; gap: 1.1rem; align-items: center;
  }
  .person .portrait { width: 104px; }
  .person .who { display: flex; flex-direction: column; gap: .3rem; }
  .person .who h3 { margin: 0; }
  .person .who .role {
    font-family: var(--f-display); font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .11em; color: var(--green);
  }
  .person .who p { font-size: .92rem; color: var(--ink-2); line-height: 1.5; }

  /* ---------- project / before-after ---------- */
  .project {
    margin: 0; background: var(--surface); border: 1px solid var(--line);
    border-radius: 6px; overflow: hidden; box-shadow: var(--shadow);
  }
  .project img { width: 100%; height: auto; display: block; }
  .project figcaption {
    padding: 1.4rem clamp(1.2rem, 3vw, 1.6rem);
    display: flex; flex-direction: column; gap: .75rem;
  }
  .project figcaption p { font-size: .97rem; color: var(--ink-2); max-width: 66ch; line-height: 1.6; }
  .scope { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; margin: 0; }
  .scope li {
    font-family: var(--f-display); font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em; color: var(--green);
    background: var(--band); border-radius: 3px; padding: .32rem .55rem;
  }
  .quote-block blockquote {
    margin: 0; font-size: clamp(1.15rem, 2.6vw, 1.5rem); line-height: 1.42;
    color: var(--ink); font-style: italic;
  }
  .quote-block cite {
    display: block; margin-top: .9rem; font-family: var(--f-display);
    font-size: .82rem; font-weight: 700; font-style: normal;
    letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
  }

  /* ---------- contact ---------- */
  .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }

  /* On narrow screens: call/text first, then the form, then the reference cards.
     display:contents flattens .reach so its cards can be ordered individually. */
  @media (max-width: 900px) {
    .contact-grid { display: flex; flex-direction: column; gap: 1.3rem; }
    .contact-grid .reach { display: contents; }
    .contact-grid .reach-card { order: 3; }
    .contact-grid .reach-card.call { order: 1; }
    .contact-grid form.quote { order: 2; }
  }

  .reach { display: flex; flex-direction: column; gap: 1.4rem; }
  .reach-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 5px;
    padding: 1.4rem 1.35rem; display: flex; flex-direction: column; gap: 1rem;
  }
  .bignum {
    font-family: var(--f-display); font-weight: 800; font-size: clamp(1.7rem, 5vw, 2.2rem);
    color: var(--clay); text-decoration: none; letter-spacing: -.015em; display: inline-block;
  }
  .bignum:hover { text-decoration: underline; }

  .hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
  .hours th, .hours td { text-align: left; padding: .42rem 0; border-bottom: 1px solid var(--line); }
  .hours th { font-family: var(--f-display); font-weight: 600; font-size: .9rem; color: var(--ink-2); }
  .hours td { color: var(--ink); font-variant-numeric: tabular-nums; }
  .hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
  .hours .closed { color: var(--ink-3); }

  form.quote {
    background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
    padding: clamp(1.3rem, 3vw, 1.9rem);
    display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow);
  }
  .fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fgrid.three { grid-template-columns: 2fr .7fr 1fr; }
  @media (max-width: 560px) { .fgrid, .fgrid.three { grid-template-columns: 1fr; } }

  .field .opt {
    font-weight: 600; letter-spacing: .04em; text-transform: none;
    color: var(--ink-3); font-size: .95em;
  }
  .hint { font-size: .85rem; color: var(--ink-3); line-height: 1.5; margin-top: .1rem; }

  .svcgroups { display: flex; flex-direction: column; gap: 1.1rem; margin-top: .2rem; }
  .svcgroup h4 {
    font-size: .74rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--green); margin-bottom: .5rem;
  }
  .checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr)); gap: .45rem .9rem; }
  .checks.single { grid-template-columns: 1fr; }
  .field .checks label {
    display: flex; align-items: flex-start; gap: .5rem;
    font-family: var(--f-body); font-size: .95rem; font-weight: 400;
    letter-spacing: 0; text-transform: none; color: var(--ink);
    line-height: 1.4; cursor: pointer;
  }
  .field .checks input[type="checkbox"] {
    width: auto; margin: .22rem 0 0; flex-shrink: 0; accent-color: var(--green);
  }
  .field input[type="file"] {
    font-family: var(--f-display); font-size: .88rem; padding: .5rem;
    background: var(--ground);
  }
  .field { display: flex; flex-direction: column; gap: .35rem; }
  .field label {
    font-family: var(--f-display); font-size: .78rem; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2);
  }
  .field .req { color: var(--clay); }
  .field input, .field select, .field textarea {
    font-family: var(--f-body); font-size: 1rem; color: var(--ink);
    background: var(--ground); border: 1px solid var(--line-2); border-radius: 4px;
    padding: .62rem .7rem; width: 100%;
  }
  .field textarea { resize: vertical; min-height: 96px; }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
  .radios { display: flex; flex-wrap: wrap; gap: .5rem; }
  .radios label {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--f-display); font-size: .85rem; font-weight: 600;
    text-transform: none; letter-spacing: 0; color: var(--ink);
    border: 1px solid var(--line-2); border-radius: 4px; padding: .45rem .7rem; cursor: pointer;
  }
  .radios input { width: auto; accent-color: var(--green); }
  .formnote { font-size: .86rem; color: var(--ink-3); line-height: 1.5; }
  .formstatus {
    font-family: var(--f-display); font-size: .88rem; font-weight: 600;
    color: var(--green); background: var(--band); border-radius: 4px;
    padding: .7rem .85rem; line-height: 1.45;
  }

  /* ---------- footer ---------- */
  footer.site {
    background: var(--band-2); border-top: 1px solid var(--line);
    padding-block: clamp(1.9rem, 4vw, 2.6rem) 1.3rem; padding-inline: 20px;
  }
  .footgrid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
  @media (max-width: 820px) { .footgrid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .footgrid { grid-template-columns: 1fr; } }
  .footcol { display: flex; flex-direction: column; gap: .6rem; }
  .footcol h4 {
    font-size: .74rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .13em; color: var(--ink-3); margin-bottom: .1rem;
  }
  .footcol p, .footcol a { font-size: .93rem; color: var(--ink-2); line-height: 1.55; }
  .footcol a { text-decoration: none; }
  .footcol a:hover { color: var(--green); text-decoration: underline; }
  .footcol .logo { align-self: flex-start; width: 196px; }
  .legal {
    margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
    display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between;
    font-size: .85rem; color: var(--ink-3);
  }
  .legal strong { color: var(--ink-2); font-weight: 600; }
  .legal a { color: var(--ink-2); text-decoration: none; }
  .legal a:hover { color: var(--green); text-decoration: underline; }

  /* ---------- plan detail pages ---------- */
  .backlink {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: var(--f-display); font-size: .8rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
    text-decoration: none; margin-bottom: 1.1rem;
  }
  .backlink:hover { color: var(--green); }

  .detail-grid {
    display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
    gap: clamp(1.6rem, 4vw, 3rem); align-items: start;
  }
  @media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

  .incl {
    list-style: none; margin: 0 0 1.6rem; padding: 0;
    display: flex; flex-direction: column; gap: .7rem;
  }
  .incl li {
    position: relative; padding-left: 1.85rem;
    font-size: 1.05rem; line-height: 1.5; color: var(--ink);
  }
  .incl li::before {
    content: "✓"; position: absolute; left: 0; top: -.05em;
    font-family: var(--f-display); font-weight: 700; font-size: .95rem;
    color: var(--green);
  }
  .incl li .sup { color: var(--ink-3); font-size: .8em; vertical-align: super; }

  .fineprint {
    border-top: 1px solid var(--line); padding-top: 1rem; margin-top: 1.6rem;
    font-size: .86rem; color: var(--ink-3); line-height: 1.6;
  }
  .fineprint p { margin-bottom: .35rem; }
  .fineprint p:last-child { margin-bottom: 0; }

  .buybox {
    background: var(--surface); border: 1px solid var(--green);
    border-radius: 6px; padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-lift);
    display: flex; flex-direction: column; gap: 1rem;
  }
  .buybox .price { margin: 0; font-size: 2.15rem; }
  .buybox .callback {
    font-size: .93rem; color: var(--ink-2); line-height: 1.55;
    border-top: 1px solid var(--line); padding-top: .95rem;
  }

  /* ---------- legal documents ---------- */
  .doc { max-width: 68ch; }
  .doc > section { margin-top: 2rem; }
  .doc h2 { font-size: 1.22rem; margin-bottom: .6rem; }
  .doc h3 { font-size: 1rem; margin-top: 1.1rem; margin-bottom: .35rem; }
  .doc p { color: var(--ink-2); margin-bottom: .8rem; line-height: 1.65; }
  .doc p:last-child { margin-bottom: 0; }
  .doc ul { margin: 0 0 .9rem; padding-left: 1.15rem; display: flex; flex-direction: column; gap: .3rem; }
  .doc li { color: var(--ink-2); line-height: 1.6; }
  .doc a { color: var(--green); }
  .doc .updated {
    font-family: var(--f-display); font-size: .78rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3);
  }

  /* ---------- page routing ---------- */
  .page { display: block; }
  [hidden] { display: none !important; }

  .skip {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    background: var(--green); color: #fff; padding: .6rem 1rem;
    font-family: var(--f-display); font-weight: 700; font-size: .85rem; text-decoration: none;
  }
  .skip:focus { left: 8px; top: 8px; }
