/* ==========================================================================
   GreenhouseGrid

   The material is twin-wall polycarbonate: parallel internal channels, milky
   rather than clear, light diffused rather than transmitted. The palette is a
   greenhouse in February — zinc frame, milk glazing, grey sky — and chlorophyll
   is the only saturated colour on the page, reserved for data-positive signals.
   Green as the reward inside a grey structure, not as ambient brand wash.

   The page walks outside to inside: graphite hero, then it opens into glazed
   light.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-var-latin.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('/assets/fonts/plexmono-400-latin.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Plex Mono';
  src: url('/assets/fonts/plexmono-500-latin.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  /* Glazing — milky polycarbonate, cool and green-grey. Never cream. */
  --glaze:      #eaeeec;
  --glaze-lit:  #f4f7f5;
  --panel:      #ffffff;

  /* Structure */
  --channel:    #d2dad6;
  --channel-2:  #bcc7c2;
  --zinc:       #5f6d70;
  --zinc-dim:   #647274;
  --graphite:   #161b1d;
  --graphite-2: #1f2629;

  /* The only saturated colour on the page. */
  --chloro:     #17693f;
  --chloro-lit: #55b385;
  --chloro-bg:  #dfeee6;

  /* One negative signal, used exactly twice. */
  --oxide:      #8c4a2f;
  --oxide-bg:   #f6e7e0;

  --display: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --body:    'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --data:    'Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --bay: clamp(4rem, 9vw, 7.5rem);   /* vertical rhythm between sections */
  --r: 3px;                           /* extruded aluminium, not a pill */
}

/* --- reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  background: var(--glaze);
  color: var(--graphite);
  font-family: var(--body);
  font-stretch: 100%;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); }
a { color: var(--chloro); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--graphite); }
:focus-visible { outline: 2px solid var(--chloro); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
[id] { scroll-margin-top: 5.5rem; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--chloro); color: #fff; padding: .7rem 1rem;
}
.skip:focus { left: 0; }

/* --- shared type voices --------------------------------------------------- */
/* The datasheet voice: every label, unit, price and spec. */
.tag {
  font-family: var(--data); font-size: .6875rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
}
.num { font-family: var(--data); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }

/* The structure voice. */
.display {
  font-family: var(--display); font-stretch: 115%; font-weight: 700;
  letter-spacing: -.022em; line-height: 1.05;
}

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--body); font-size: .9375rem; font-weight: 600; font-stretch: 104%;
  line-height: 1; letter-spacing: .005em;
  padding: .9375rem 1.5rem; border: 1px solid transparent; border-radius: var(--r);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .16s, border-color .16s, color .16s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn--go { background: var(--chloro); color: #fff; }
.btn--go:hover { background: #115435; color: #fff; }
.btn--line { background: transparent; color: var(--graphite); border-color: var(--channel-2); }
.btn--line:hover { border-color: var(--graphite); color: var(--graphite); background: var(--glaze-lit); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--onDark:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); color: #fff; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: progress; }

/* --- header --------------------------------------------------------------- */
.head {
  position: sticky; top: 0; z-index: 50;
  background: var(--graphite);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.head__in { display: flex; align-items: center; gap: 2rem; height: 60px; }
.brand {
  display: inline-flex; align-items: center; gap: .6rem; text-decoration: none;
  font-family: var(--display); font-stretch: 112%; font-weight: 700; font-size: 1rem;
  letter-spacing: -.015em; color: #fff; flex: none;
}
.brand:hover { color: #fff; }
.brand__mark { width: 18px; height: 18px; flex: none; }
.brand em { font-style: normal; color: var(--chloro-lit); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.75rem; }
.nav__links { display: contents; }
.nav__links a {
  color: rgba(255,255,255,.66); text-decoration: none;
  font-size: .875rem; font-weight: 500; font-stretch: 102%;
}
.nav__links a:hover { color: #fff; }
.nav .btn { padding: .5625rem 1rem; font-size: .8125rem; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* --- hero: outside. graphite, steel, channelled. -------------------------- */
.hero {
  position: relative; background: var(--graphite); color: #fff; overflow: hidden;
  padding-block: clamp(2.25rem, 5vw, 3.75rem) clamp(3rem, 7vw, 5rem);
}
/* The channels: twin-wall polycarbonate seen edge-on. Content aligns to them. */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}
.hero__in { position: relative; display: grid; gap: clamp(2.75rem, 5vw, 4rem); }
@media (min-width: 1000px) {
  .hero__in { grid-template-columns: minmax(0, .92fr) minmax(0, 1fr); align-items: center; gap: 4.5rem; }
}
.hero__eyebrow { color: var(--chloro-lit); margin-bottom: 1.25rem; display: block; }
.hero h1 {
  font-stretch: 115%; font-weight: 700; letter-spacing: -.028em; line-height: 1.02;
  font-size: clamp(2.3rem, 5.6vw, 3.6rem); margin-bottom: 1.25rem;
}
.hero h1 span { display: block; color: var(--chloro-lit); }
.hero__lede { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 33rem; }
.hero__lede + .hero__lede { margin-top: .875rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.875rem; }

.creds { margin-top: 1.875rem; display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; }
.creds li { color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .5rem; }
.creds b { color: rgba(255,255,255,.82); font-weight: 500; }
.creds i { width: 3px; height: 3px; border-radius: 50%; background: var(--chloro-lit); flex: none; }

/* --- signature: the delivered-price reveal -------------------------------- */
.reveal {
  background: var(--panel); border-radius: var(--r); overflow: hidden;
  /* The hero sets color:#fff — the panel is a light surface inside it and must
     reset, or every element without an explicit colour goes white-on-white. */
  color: var(--graphite);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.reveal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .9375rem 1.25rem; border-bottom: 1px solid var(--channel);
  background: var(--glaze-lit);
}
.reveal__spec { color: var(--zinc); min-width: 0; }
.reveal__spec b { color: var(--graphite); font-weight: 500; }
.replay {
  font-family: var(--data); font-size: .625rem; letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4rem; flex: none;
  background: none; border: 1px solid var(--channel-2); border-radius: 2px;
  color: var(--zinc); padding: .3125rem .5rem; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.replay:hover { color: var(--graphite); border-color: var(--zinc); }
.replay svg { transition: transform .5s ease; }
.replay:hover svg { transform: rotate(-180deg); }

.reveal__cols {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem;
  padding: .875rem 1.25rem .5rem;
}
.reveal__cols span { color: var(--zinc-dim); }
.reveal__cols span:last-child { text-align: right; color: var(--graphite); transition: color .4s; }
.reveal.is-delivered .reveal__cols span:last-child { color: var(--chloro); }

/* Rows are positioned by transform so the reorder is a real move, not a
   re-render — the whole point is watching the cheapest sticker fall. */
.offers { position: relative; padding: 0 1.25rem 1.125rem; }
.offer {
  position: absolute; left: 1.25rem; right: 1.25rem; top: 0;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .25rem 1rem;
  padding: .75rem 0; border-top: 1px solid var(--channel);
  transition: transform .62s cubic-bezier(.34,.9,.3,1);
  will-change: transform;
}
.offer:first-child { border-top: 0; }
.offer__seller { font-weight: 500; font-size: .9375rem; font-stretch: 104%; }
.offer__freight {
  grid-column: 1; font-family: var(--data); font-size: .75rem; color: var(--zinc-dim);
  opacity: 0; transition: opacity .45s;
}
.reveal.is-freight .offer__freight { opacity: 1; }
.offer__total {
  grid-column: 2; grid-row: 1 / span 2; align-self: center;
  font-family: var(--data); font-variant-numeric: tabular-nums;
  font-size: 1.3125rem; font-weight: 500; letter-spacing: -.03em;
}
.offer__flag {
  display: inline-block; margin-left: .5rem; vertical-align: 2px;
  font-family: var(--data); font-size: .5625rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .4rem; border-radius: 2px;
  opacity: 0; transform: translateY(-2px); transition: opacity .35s, transform .35s;
}
.reveal.is-flagged .offer__flag { opacity: 1; transform: none; }
.offer__flag--best { background: var(--chloro); color: #fff; }
.offer__flag--trap { background: var(--oxide-bg); color: var(--oxide); }
.offer.is-best .offer__total { color: var(--chloro); }

.reveal__foot {
  padding: .9375rem 1.25rem; border-top: 1px solid var(--channel);
  background: var(--glaze-lit); font-size: .8125rem; color: var(--zinc);
  min-height: 3.25rem; display: flex; align-items: center;
}
.reveal__foot strong { color: var(--oxide); font-weight: 600; }
.reveal__foot span { opacity: 0; transition: opacity .4s; }
.reveal.is-flagged .reveal__foot span { opacity: 1; }
.hero__note {
  margin-top: .875rem; font-family: var(--data); font-size: .6875rem; line-height: 1.6;
  color: rgba(255,255,255,.6); text-align: center;
}

/* --- inside: the glazed sections ------------------------------------------ */
.bay { padding-block: var(--bay); }
.bay--lit { background: var(--glaze-lit); border-block: 1px solid var(--channel); }

.bay__head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.bay__head .tag { color: var(--chloro); display: block; margin-bottom: 1.125rem; }
.bay__head h2 {
  font-stretch: 113%; font-weight: 700; letter-spacing: -.024em; line-height: 1.08;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 1rem;
}
.bay__head p { color: var(--zinc); font-size: 1.0625rem; }

/* Benefits as a datasheet, not a card grid. */
.sheet { border-top: 1px solid var(--channel-2); }
.sheet__row {
  display: grid; gap: .375rem 2.5rem; grid-template-columns: 1fr;
  padding: 1.5rem 0; border-bottom: 1px solid var(--channel);
}
@media (min-width: 760px) {
  .sheet__row { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); align-items: baseline; padding: 1.75rem 0; }
}
.sheet__row dt { font-family: var(--display); font-stretch: 108%; font-weight: 700; font-size: 1.0625rem; letter-spacing: -.012em; }
.sheet__row dd { margin: 0; color: var(--zinc); }

/* Build manifest — status is real information, so it is shown as state. */
.manifest { border-top: 1px solid var(--channel-2); }
.item {
  display: grid; grid-template-columns: 1fr auto; gap: .5rem 1.5rem;
  padding: 1.375rem 0; border-bottom: 1px solid var(--channel);
  align-items: start;
}
.item h3 { font-stretch: 108%; font-weight: 700; font-size: 1.0625rem; letter-spacing: -.012em; }
.item p { grid-column: 1 / -1; color: var(--zinc); font-size: .9375rem; max-width: 46rem; }
@media (min-width: 760px) {
  .item { grid-template-columns: minmax(0, 14rem) minmax(0, 1fr) auto; align-items: baseline; column-gap: 2.5rem; }
  .item h3    { grid-column: 1; grid-row: 1; }
  .item p     { grid-column: 2; grid-row: 1; }
  .item .state{ grid-column: 3; grid-row: 1; justify-self: end; }
}
.state { display: inline-flex; align-items: center; gap: .45rem; color: var(--zinc); white-space: nowrap; }
.state i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.state--now i { background: var(--chloro); }
.state--now { color: var(--chloro); }
.state--next i { background: var(--channel-2); }

/* Evidence labels as actual specimens. */
.labels { display: grid; gap: 1px; background: var(--channel); border: 1px solid var(--channel); }
@media (min-width: 700px)  { .labels { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .labels { grid-template-columns: repeat(4, 1fr); } }
.label { background: var(--glaze-lit); padding: 1.375rem 1.25rem; }
.label .tag { display: inline-block; color: var(--chloro); border: 1px solid var(--chloro); padding: .3rem .45rem; border-radius: 2px; margin-bottom: .875rem; }
.label p { color: var(--zinc); font-size: .875rem; }

.chips { display: flex; flex-wrap: wrap; gap: .375rem; }
.chips li {
  font-family: var(--data); font-size: .75rem; color: var(--zinc);
  padding: .375rem .625rem; background: var(--glaze-lit); border: 1px solid var(--channel);
  border-radius: 2px;
}

.note {
  border: 1px solid var(--channel-2); border-left: 2px solid var(--zinc);
  padding: 1.125rem 1.25rem; font-size: .875rem; color: var(--zinc); background: var(--glaze-lit);
}
.note strong { display: block; color: var(--graphite); font-weight: 600; margin-bottom: .3rem; }
.note--warn { border-left-color: var(--oxide); }

/* --- signup: the decision point, back outside ----------------------------- */
.signup { background: var(--graphite); color: #fff; }
.signup__in { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1000px) { .signup__in { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 4.5rem; align-items: start; } }
.signup .tag { color: var(--chloro-lit); display: block; margin-bottom: 1.125rem; }
.signup h2 {
  font-stretch: 113%; font-weight: 700; letter-spacing: -.024em; line-height: 1.08;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 1rem; color: #fff;
}
.signup__in > div p { color: rgba(255,255,255,.68); }
.promises { margin-top: 1.875rem; display: grid; gap: 1rem; }
.promises li { display: grid; grid-template-columns: auto 1fr; gap: .75rem; color: rgba(255,255,255,.6); font-size: .9375rem; }
.promises b { color: #fff; font-weight: 600; }
.promises .tag { color: var(--chloro-lit); margin: 0; padding-top: .2rem; }

.form { background: var(--panel); color: var(--graphite); border-radius: var(--r); padding: clamp(1.5rem, 3vw, 2.125rem); }
.field { margin-bottom: 1.125rem; }
.field label { display: block; font-size: .8125rem; font-weight: 600; font-stretch: 104%; margin-bottom: .4375rem; }
.field .opt { font-weight: 400; color: var(--zinc-dim); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--graphite);
  padding: .8125rem .875rem; border: 1px solid var(--channel-2); border-radius: 2px;
  background: var(--glaze-lit); appearance: none;
}
.field textarea { min-height: 8rem; resize: vertical; line-height: 1.55; font-size: .9375rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--chloro); box-shadow: 0 0 0 3px var(--chloro-bg); background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: #647274; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%235f6d70' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .875rem center; padding-right: 2.25rem;
}
.pair { display: grid; gap: 1.125rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .pair { grid-template-columns: 1fr 1fr; } }
.check { display: grid; grid-template-columns: auto 1fr; gap: .625rem; align-items: start; margin: 1.375rem 0; }
.check input { width: 1rem; height: 1rem; margin: .25rem 0 0; accent-color: var(--chloro); }
.check label { font-size: .875rem; color: var(--zinc); margin: 0; font-weight: 400; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fine { margin-top: 1rem; font-size: .78125rem; color: var(--zinc-dim); text-align: center; line-height: 1.55; }
.err {
  display: none; margin-bottom: 1rem; padding: .75rem .875rem; border-radius: 2px;
  background: var(--oxide-bg); border: 1px solid #e6cfc5; color: var(--oxide); font-size: .875rem;
}
.err.is-on { display: block; }
.done { display: none; text-align: center; padding: 1.25rem .5rem; }
.done.is-on { display: block; }
.done h3 { font-stretch: 110%; font-weight: 700; font-size: 1.25rem; margin-bottom: .625rem; }
.done p { color: var(--zinc); font-size: .9375rem; }
.done .tick {
  width: 40px; height: 40px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--chloro-bg); color: var(--chloro);
  display: flex; align-items: center; justify-content: center;
}
.is-sent .fields { display: none; }

/* --- prose (sub-pages) ---------------------------------------------------- */
.masthead { padding-top: clamp(2.75rem, 6vw, 4.25rem); padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.masthead h1 {
  font-stretch: 114%; font-weight: 700; letter-spacing: -.026em; line-height: 1.05;
  font-size: clamp(1.9rem, 4.4vw, 2.75rem); margin-bottom: .875rem;
}
.masthead p { color: var(--zinc); font-size: 1.0625rem; max-width: 42rem; }
.masthead .updated { font-family: var(--data); font-size: .75rem; color: var(--zinc); margin-top: 1rem; }

/* .prose also carries .wrap, so its own max-width would centre it and break
   alignment with the masthead above. Keep the container full width and cap the
   measure on the children instead. */
.prose { padding-bottom: var(--bay); }
.prose > * { max-width: 43rem; }
.prose h2 { font-stretch: 110%; font-weight: 700; font-size: 1.3125rem; letter-spacing: -.016em; margin: 2.5rem 0 .875rem; }
.prose h3 { font-stretch: 106%; font-weight: 700; font-size: 1.0625rem; margin: 1.75rem 0 .5rem; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose li { color: var(--zinc); }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.25rem; list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: .4375rem; }
.prose strong { color: var(--graphite); font-weight: 600; }
.prose code { font-family: var(--data); font-size: .875em; background: var(--glaze); padding: .1em .35em; border-radius: 2px; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9375rem; }
.prose th, .prose td { text-align: left; padding: .6875rem .75rem; border-bottom: 1px solid var(--channel); }
.prose th { font-family: var(--data); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase; color: var(--zinc); font-weight: 500; }
.prose td { color: var(--zinc); }
.prose .note { margin-bottom: 1.25rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --- footer --------------------------------------------------------------- */
.foot { background: var(--graphite); color: rgba(255,255,255,.55); padding-block: clamp(3rem, 6vw, 4.5rem) 2.25rem; }
.foot a { color: rgba(255,255,255,.55); text-decoration: none; }
.foot a:hover { color: #fff; }
.foot__grid { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .foot__grid { grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr)); gap: 3rem; } }
.foot__about p { margin-top: .875rem; font-size: .875rem; max-width: 24rem; line-height: 1.6; }
.foot__col h4 { font-family: var(--data); font-size: .6875rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: .875rem; font-weight: 500; }
.foot__col li { margin-bottom: .5rem; font-size: .9375rem; }
.foot__legal { margin-top: 2.5rem; font-size: .8125rem; line-height: 1.65; max-width: 46rem; color: rgba(255,255,255,.6); }
.foot__legal b { color: rgba(255,255,255,.72); font-weight: 600; }
.foot__base {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .625rem 1.5rem; justify-content: space-between;
  font-family: var(--data); font-size: .75rem; color: rgba(255,255,255,.55);
}

/* --- 404 ------------------------------------------------------------------ */
.void { min-height: 52vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; padding-block: 5rem; }
.void h1 { font-stretch: 114%; font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -.024em; }
.void p { color: var(--zinc); max-width: 32rem; }

/* --- contact page --------------------------------------------------------- */
.contact__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 860px) { .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.contact__grid .form { border: 1px solid var(--channel-2); }
