/* land dept. — Issue 01 (field-document direction)
   One accent (rust), warm grounds, near-black ink.
   Archivo (variable, with width axis) for display + editorial text ·
   IBM Plex Mono for labels and every number. Self-hosted; no third-party fonts. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url(fonts/archivo-100-900-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url(fonts/archivo-100-900-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/ibm-plex-mono-400-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/ibm-plex-mono-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/ibm-plex-mono-500-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/ibm-plex-mono-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ld-canvas: #ece5d4;      /* warm sand — page ground */
  --ld-canvas-2: #ddd5c2;    /* darker sand */
  --ld-paper: #f6f1e3;       /* lighter paper — lifted surface */
  --ld-ink: #1a1a17;         /* near-black */
  --ld-ink-2: #44423a;       /* warm slate */
  --ld-ink-3: #777264;       /* warm gray */
  --ld-rule: #c5bda6;        /* dusty rule */
  --ld-rule-soft: #d8d1bd;
  --ld-forest: #2c3e2e;      /* deep forest — dark bands only */
  --ld-forest-2: #1a2a1c;
  --ld-rust: #c2511f;        /* trail rust — single accent */

  /* type roles */
  /* Primary = Archivo, a variable grotesque with a width axis (display headlines run
     expanded via --ld-display-stretch); Secondary = IBM Plex Mono (labels, meta, data).
     Note: --ld-serif is a legacy alias — Archivo is a sans; the name survives in markup. */
  --ld-serif: 'Archivo', system-ui, -apple-system, sans-serif;
  --ld-sans: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ld-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --ld-display-stretch: 105%;  /* a whisper wider for big headlines only */

  /* aliases kept for continuity: display = editorial headline face, text = label sans */
  --ld-display: var(--ld-serif);
  --ld-text: var(--ld-sans);
}

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

body {
  margin: 0;
  background: var(--ld-canvas);
  color: var(--ld-ink);
  font-family: var(--ld-sans);
  -webkit-font-smoothing: antialiased;
}

/* paper texture over the whole sheet — laid/linen stock, not screen noise:
   two crossed layers of stretched turbulence read as horizontal and
   vertical fibers, the way resume paper catches light */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360'%3E%3Cfilter id='h'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.012 0.38' numOctaves='3' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.44 0 0 0 0 0.41 0 0 0 0 0.34 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23h)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='360'%3E%3Cfilter id='v'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.38 0.012' numOctaves='3' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.44 0 0 0 0 0.41 0 0 0 0 0.34 0 0 0 0.38 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23v)'/%3E%3C/svg%3E");
  background-size: 360px 360px, 360px 360px;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* editorial prose defaults to the serif */
.prose { font-family: var(--ld-serif); }

.meta {
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}

/* ── margin furniture: survey ruler + running head ──────────────────── */
.scroll-rule {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 62vh;
  width: 34px;
  z-index: 40;
}
.scroll-rule .track {
  position: absolute;
  inset: 0 10px 0 auto;
  width: 1px;
  background: color-mix(in srgb, var(--ld-ink) 25%, transparent);
}
.scroll-rule .tick {
  position: absolute;
  right: 0;
  width: 5px;
  height: 1px;
  background: var(--ld-ink);
  opacity: 0.3;
}
.scroll-rule .tick.major { width: 9px; opacity: 0.45; }
.scroll-rule .stop {
  position: absolute;
  right: 14px;
  transform: translateY(-50%);
  appearance: none;
  border: 0;
  background: none;
  padding: 3px 4px;
  font-family: var(--ld-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ld-ink-3);
  transition: color 0.2s ease;
}
.scroll-rule .stop:hover { color: var(--ld-rust); }
.scroll-rule .stop.is-here { color: var(--ld-rust); }
.scroll-rule .marker {
  position: absolute;
  right: -8px;
  transform: translateY(-50%);
  color: var(--ld-rust);
  line-height: 0;
  transition: top 0.12s linear;
}
.running-head {
  position: fixed;
  left: 10px;
  bottom: 48px;
  z-index: 40;
  transform-origin: 0 100%;
  transform: rotate(-90deg) translateX(0);
  font-family: var(--ld-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  white-space: nowrap;
  color: var(--ld-ink);
  opacity: 0.32;
  pointer-events: none;
}
/* dark bands run under the fixed furniture; keep it legible either way */
@media (max-width: 1240px) {
  .scroll-rule, .running-head { display: none; }
}

/* ── topbar ──────────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ld-canvas);
  border-bottom: 1px solid var(--ld-rule);
}
.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  /* vertical only — a trailing 0 here would override .container's gutters */
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color 0.15s;
}
.nav a:hover { color: var(--ld-rust); }
.right { justify-content: flex-end; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ld-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.brand svg { fill: var(--ld-rust); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px;
  background: var(--ld-ink);
  color: var(--ld-paper);
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.pill:hover { background: var(--ld-rust); }

/* ── hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--ld-forest-2);
}
.hero svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 100%);
}
.hero .vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.hero .content {
  /* in flow (not absolute) so the hero grows instead of clipping the
     signup form on mid-size screens; min-height reproduces the old
     16:9-with-540/820-clamps look when content is short */
  position: relative;
  min-height: clamp(540px, 56.25vw, 820px);
  padding: clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  color: var(--ld-paper);
}
.hero .top { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ld-rust); }
.hero h1 {
  font-family: var(--ld-serif);
  font-weight: 860;
  font-stretch: var(--ld-display-stretch);
  font-size: clamp(46px, 7.4vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
}
.hero .h1-row { display: flex; flex-direction: column; gap: 2px; }

/* entrance: the headline lands like three stamps, the rest rises after */
@media (prefers-reduced-motion: no-preference) {
  .hero .h1-row h1 {
    opacity: 0;
    animation: ld-stamp 0.6s cubic-bezier(0.2, 1.3, 0.4, 1) forwards;
  }
  .hero .h1-row h1:nth-child(1) { animation-delay: 0.2s; }
  .hero .h1-row h1:nth-child(2) { animation-delay: 0.42s; }
  .hero .h1-row h1:nth-child(3) { animation-delay: 0.64s; }
  .hero .lede,
  .hero .ctas,
  .hero .content .meta {
    opacity: 0;
    animation: ld-rise 0.8s ease 1.05s forwards;
  }
  .hero .top { opacity: 0; animation: ld-rise 0.8s ease 0.1s forwards; }
  #hero-grass {
    animation: ld-sway 7s ease-in-out infinite alternate;
    transform-box: fill-box;
    transform-origin: 50% 100%;
  }
}
@keyframes ld-stamp {
  0%   { opacity: 0; transform: scale(1.16) rotate(-0.4deg); }
  55%  { opacity: 1; transform: scale(0.985); }
  100% { opacity: 1; transform: none; }
}
@keyframes ld-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ld-sway {
  from { transform: skewX(-1.1deg); }
  to   { transform: skewX(1.5deg); }
}
.hero .lede {
  font-family: var(--ld-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  max-width: 52ch;
  margin: 28px 0 0;
  line-height: 1.55;
  color: rgba(255,255,255,0.86);
}
.hero .ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  transition: all 0.15s;
}
.btn-primary { background: var(--ld-rust); color: white; }
.btn-primary:hover { background: #a8421a; }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-dark { background: var(--ld-ink); color: var(--ld-paper); }
.btn-dark:hover { background: var(--ld-rust); }

/* ── stat strip ──────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ld-ink);
  color: var(--ld-paper);
}
.stat {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .num small {
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.55);
  margin-left: 4px;
}
.stat .lbl {
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── section header ──────────────────────────────────────────────────── */
/* vertical only — the shorthand's trailing 0 was overriding .container's
   horizontal gutters (same specificity, later in the sheet), leaving text
   flush to the viewport edge below 1440px */
.section {
  padding-top: clamp(64px, 9vw, 128px);
  padding-bottom: clamp(64px, 9vw, 128px);
  position: relative;
}
/* registration marks in the sheet's corners — printed-object furniture */
.section-head { position: relative; }
.section-head::before,
.section-head::after {
  content: "";
  position: absolute;
  top: -26px;
  width: 13px;
  height: 13px;
  opacity: 0.55;
  background:
    linear-gradient(var(--ld-ink-3), var(--ld-ink-3)) top left / 13px 1px no-repeat,
    linear-gradient(var(--ld-ink-3), var(--ld-ink-3)) top left / 1px 13px no-repeat;
}
.section-head::before { left: 0; }
.section-head::after { right: 0; transform: scaleX(-1); }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ld-ink);
}
.section-head .num {
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ld-rust);
  text-shadow: 0.7px 0.9px 1px rgba(194, 81, 31, 0.35);
}
.section-head .meta { margin-bottom: 12px; }
.section-head h2 {
  font-family: var(--ld-serif);
  font-weight: 760;
  font-stretch: var(--ld-display-stretch);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 4px 0 0;
}
.section-head .right-side {
  text-align: right;
  font-family: var(--ld-serif);
  font-size: 16px;
  max-width: 38ch;
  margin-left: auto;
  color: var(--ld-ink-2);
  line-height: 1.55;
  align-self: end;
}

/* ── editor's letter ─────────────────────────────────────────────────── */
.letter-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.letter-grid h3 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 16ch;
}
.letter-body {
  column-count: 2;
  column-gap: 40px;
  font-family: var(--ld-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ld-ink-2);
}
.letter-body p { margin: 0 0 1.1em; }
.letter-body p:first-child { font-size: 19px; color: var(--ld-ink); }
.letter-signed {
  margin-top: 16px;
  font-family: var(--ld-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}

/* ── featured lot ────────────────────────────────────────────────────── */
.featured { background: var(--ld-paper); }
.feat-photo {
  position: relative;
  aspect-ratio: 21 / 9;
  min-height: 420px;
  /* keep the aspect-ratio from transferring min-height into a 980px width
     on phones — the band must never be wider than the viewport */
  max-width: 100%;
  overflow: hidden;
  background: var(--ld-forest-2);
}
.feat-photo svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.feat-photo .frame {
  position: absolute;
  left: 32px;
  bottom: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: white;
  gap: 16px;
}
.feat-photo .tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.feat-photo .tag {
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--ld-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.feat-photo .credit {
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.feat-head {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  padding-top: 48px;
}
.feat-head h2 {
  font-family: var(--ld-serif);
  font-weight: 760;
  font-stretch: var(--ld-display-stretch);
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 12px 0;
}
.feat-head .place {
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: var(--ld-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ld-ink-2);
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid var(--ld-rule);
}
.feat-head .place .v {
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--ld-ink);
  letter-spacing: 0;
}
.feat-head .price-block { text-align: right; align-self: end; }
.feat-head .price-block .lbl {
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}
.feat-head .price-block .price {
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ld-ink);
}
.feat-body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
}
.feat-prose {
  column-count: 2;
  column-gap: 40px;
  font-family: var(--ld-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ld-ink-2);
}
.feat-prose p { margin: 0 0 1em; }
.feat-prose p:first-child { font-size: 19px; color: var(--ld-ink); }

/* spec tiles */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ld-rule);
  border: 1px solid var(--ld-rule);
  align-self: start;
}
.spec {
  background: var(--ld-paper);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.spec .lbl {
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}
.spec .v {
  font-family: var(--ld-serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--ld-ink);
  letter-spacing: 0;
  line-height: 1.35;
}
.spec.span2 { grid-column: span 2; }

/* topo + sketch */
.feat-pair {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1px;
  background: var(--ld-rule);
  border: 1px solid var(--ld-rule);
}
.feat-pair .topo,
.feat-pair .imagined {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--ld-paper);
}
.feat-pair .imagined {
  background: linear-gradient(180deg, #2a2620 0%, #0e0d0b 100%);
}
.feat-pair .imagined svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.feat-pair .label-row {
  position: absolute;
  left: 20px;
  top: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 2;
}
.feat-pair .lbl-tag {
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feat-pair .lbl-tag.light {
  background: rgba(255,255,255,0.85);
  color: var(--ld-ink);
  border-color: rgba(0,0,0,0.05);
}
.pair-caption {
  grid-column: 1 / -1;
  background: var(--ld-paper);
  padding: 20px 24px;
  font-family: var(--ld-serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ld-ink-2);
}

/* ── featured lot map: the three traps ──────────────────────────────── */
.trap-legend {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ld-rule);
}
.trap-legend button {
  appearance: none;
  border: 0;
  background: var(--ld-paper);
  text-align: left;
  padding: 18px 22px 20px;
  display: block;
  border-top: 2px solid var(--ld-ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.trap-legend button:hover,
.trap-legend button.is-on {
  background: #f0e8d5;
  border-top-color: var(--ld-rust);
}
.trap-legend .tn {
  display: block;
  font-family: var(--ld-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-rust);
  margin-bottom: 7px;
}
.trap-legend .tt {
  display: block;
  font-family: var(--ld-serif);
  font-weight: 740;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ld-ink);
  margin-bottom: 6px;
}
.trap-legend .td {
  display: block;
  font-family: var(--ld-serif);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ld-ink-2);
}
@media (max-width: 760px) {
  .trap-legend { grid-template-columns: 1fr; }
}

/* elevation readout: the sheet reads back under the cursor */
#lot-map { cursor: crosshair; }
.elev-chip {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
  pointer-events: none;
  background: var(--ld-paper);
  border: 1px solid var(--ld-ink);
  padding: 4px 9px;
  font-family: var(--ld-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ld-ink);
  box-shadow: 3px 3px 0 rgba(26, 26, 23, 0.1);
  white-space: nowrap;
}

/* the annotation overlay rides above the topo (img or injected svg) */
#lot-map .trap-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#lot-map .trap-overlay .trap-zone { pointer-events: auto; cursor: pointer; }

/* cross-highlighting: an active trap dims the rest of the sheet */
#lot-map .trap-zone { transition: opacity 0.3s ease; }
#lot-map .tp-contour,
#lot-map .tp-road,
#lot-map .tp-stream,
#lot-map img,
#lot-map image { transition: opacity 0.3s ease; }
#lot-map[data-trap] .trap-zone { opacity: 0.12 !important; }
#lot-map[data-trap="1"] .trap-zone[data-trap="1"],
#lot-map[data-trap="2"] .trap-zone[data-trap="2"],
#lot-map[data-trap="3"] .trap-zone[data-trap="3"] { opacity: 1 !important; }
#lot-map[data-trap] .tp-contour,
#lot-map[data-trap] .tp-road,
#lot-map[data-trap] .tp-stream,
#lot-map[data-trap] img,
#lot-map[data-trap] image { opacity: 0.35; }
#lot-map .trap-pin circle { transition: r 0.2s ease; }
#lot-map .trap-zone:hover .trap-pin circle { r: 20; }

/* architect block */
/* the closing analysis fades straight into the illustration band below —
   no sheet, no seam: the band's sky starts at paper and dusk arrives
   under the text. Legibility comes from the gradient, not a card. */
.architect {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--ld-rule);
  position: relative;
  z-index: 2;
}
.featured > .container.section { position: relative; z-index: 2; padding-bottom: 0; }
.feat-photo { margin-top: calc(-1 * clamp(110px, 15vw, 250px)); }
.architect .kicker { color: var(--ld-rust); }
.architect h3 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 8px 0 0;
}
.architect p {
  font-family: var(--ld-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ld-ink-2);
  margin: 0 0 24px;
}
.fits { display: flex; flex-direction: column; gap: 16px; }
.fit {
  display: grid;
  grid-template-columns: 180px 1fr 40px;
  gap: 24px;
  align-items: center;
}
.fit .label { font-family: var(--ld-serif); font-size: 15px; }
.fit .bars { display: flex; gap: 4px; }
.fit .bars .b { flex: 1; height: 6px; background: var(--ld-rule); }
.fit .bars .b.on { background: var(--ld-rust); }
.fit .score {
  text-align: right;
  font-family: var(--ld-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── featured architect ─────────────────────────────────────────────── */
.feat-architect-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1px;
  background: var(--ld-rule);
  border: 1px solid var(--ld-rule);
}
.architect-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #2a2620 0%, #0e0d0b 100%);
}
.architect-image .label-row {
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 2;
}
.architect-image .lbl-tag {
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.architect-image svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.architect-meta {
  background: var(--ld-paper);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.architect-meta .meta { color: var(--ld-rust); }
.architect-meta h3 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
}
.architect-meta .firm {
  font-family: var(--ld-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ld-rule);
  margin-bottom: 4px;
}
.architect-meta p {
  font-family: var(--ld-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ld-ink-2);
  margin: 0;
}
.architect-meta .btn {
  align-self: flex-start;
  margin-top: 16px;
}

/* ── lots grid ───────────────────────────────────────────────────────── */
.lots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ld-rule);
  border: 1px solid var(--ld-rule);
}
.lot-card {
  background: var(--ld-paper);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.lot-card:hover { background: var(--ld-canvas); }
.lot-card.locked .inner-content { opacity: 0.4; }
.lot-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ld-forest-2);
}
.lot-photo svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lot-photo .num-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  background: var(--ld-paper);
  color: var(--ld-ink);
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lot-photo .acres-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.55);
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lot-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.lot-body .place {
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}
.lot-body h3 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: 23px;
  line-height: 1.12;
  margin: 8px 0 12px;
  letter-spacing: -0.01em;
}
.lot-body p {
  font-family: var(--ld-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ld-ink-2);
  margin: 0 0 20px;
  flex: 1;
}
.lot-body .foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ld-rule);
}
.lot-body .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.lot-body .tag {
  padding: 4px 10px;
  background: var(--ld-canvas);
  font-family: var(--ld-sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-ink-2);
  white-space: nowrap;
}
.lot-body .price {
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.lot-card .lock-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(246,241,227,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lot-card .lock-overlay span {
  padding: 12px 20px;
  background: var(--ld-ink);
  color: var(--ld-paper);
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

/* ── subscribe band ──────────────────────────────────────────────────── */
.subscribe {
  background: var(--ld-forest);
  color: var(--ld-paper);
  position: relative;
  overflow: hidden;
}
.subscribe svg.bg-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.13;
  pointer-events: none;
}
.subscribe-inner {
  padding: clamp(64px, 8vw, 128px) clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
/* ── slim variant: the letter, demoted below the bespoke analysis ────── */
.subscribe--slim .subscribe-inner {
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(36px, 4.5vw, 56px) clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 760px) {
  .subscribe--slim .subscribe-inner { grid-template-columns: 1fr; gap: 20px; }
}
.subscribe--slim h3 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: clamp(19px, 2.1vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ld-paper);
  margin: 8px 0 0;
  max-width: 30ch;
}
.subscribe--slim form { margin-top: 0; }

.subscribe .kicker {
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.subscribe .kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ld-rust); }
.subscribe h2 {
  font-family: var(--ld-serif);
  font-weight: 760;
  font-stretch: var(--ld-display-stretch);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.subscribe p {
  font-family: var(--ld-serif);
  font-size: 18px;
  line-height: 1.6;
  max-width: 50ch;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.subscribe .plans { display: flex; flex-direction: column; gap: 12px; }
.plan {
  padding: 24px 28px;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s;
}
.plan:hover { border-color: rgba(255,255,255,0.4); }
.plan.featured {
  background: var(--ld-rust);
  border-color: var(--ld-rust);
}
.plan .name {
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.plan .price {
  font-family: var(--ld-mono);
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan .price small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  opacity: 0.6;
}
.plans-note {
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.subscribe form { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.subscribe input[type=email] {
  flex: 1;
  min-width: 220px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  font-family: var(--ld-mono);
  font-size: 14px;
  outline: none;
}
.subscribe input[type=email]::placeholder { color: rgba(255,255,255,0.4); }
.subscribe input[type=email]:focus { border-color: var(--ld-rust); background: rgba(255,255,255,0.12); }
/* submit only — the .dept-pick buttons share this form */
.subscribe form button[type=submit] {
  padding: 16px 24px;
  background: var(--ld-paper);
  color: var(--ld-ink);
  border: 0;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s;
}
.subscribe form button[type=submit]:hover:not(:disabled) { background: white; }
.subscribe form button[type=submit]:disabled { opacity: 0.6; cursor: progress; }
.subscribe form .submit-error {
  flex-basis: 100%;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0a58a;
  margin-top: 4px;
}

/* honeypot — visually hidden but available to bots */
.honeypot {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* success state */
/* rubber stamp — form success lands like ink on the dossier */
.seal-stamp {
  display: inline-block;
  align-self: flex-start;
  padding: 7px 14px 6px;
  border: 2.5px solid var(--ld-rust);
  border-radius: 3px;
  color: var(--ld-rust);
  font-family: var(--ld-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: inset 0 0 6px rgba(194, 81, 31, 0.18);
}
@media (prefers-reduced-motion: no-preference) {
  .seal-stamp {
    animation: ld-stampin 0.5s cubic-bezier(0.2, 1.5, 0.4, 1) 0.12s backwards;
  }
}
@keyframes ld-stampin {
  from { opacity: 0; transform: rotate(-9deg) scale(1.9); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: rotate(-3deg) scale(1); }
}

.subscribe-success {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.subscribe-success .seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ld-rust);
  color: white;
}
.subscribe-success h4 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.015em;
  color: white;
}
.subscribe-success p {
  font-family: var(--ld-serif);
  font-size: 15px;
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-width: none;
}

/* ── report intake form ──────────────────────────────────────────────── */
.report-form-wrap {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--ld-ink);
  padding-top: 40px;
}
.report-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  max-width: 860px;
}
.report-form .field { display: flex; flex-direction: column; gap: 8px; }
.report-form .field.full { grid-column: 1 / -1; }
.report-form label {
  font-family: var(--ld-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}
.report-form input,
.report-form select,
.report-form textarea {
  appearance: none;
  -webkit-appearance: none;
  background: var(--ld-paper);
  border: 1px solid var(--ld-rule);
  padding: 12px 14px;
  border-radius: 0;
  font-family: var(--ld-text);
  font-size: 15px;
  color: var(--ld-ink);
  outline: none;
  width: 100%;
}
.report-form input::placeholder,
.report-form textarea::placeholder { color: var(--ld-ink-3); }
.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus { border-color: var(--ld-rust); }
.report-form textarea {
  min-height: 96px;
  resize: vertical;
  font-family: var(--ld-serif);
  line-height: 1.5;
}
.report-form .actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.report-form .form-note {
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ld-ink-3);
}

/* ── sample-dossier email gate (section 04) ─────────────────────────── */
.sample-gate-form { max-width: 440px; }
.sample-gate-form label {
  display: block;
  font-family: var(--ld-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
  margin-bottom: 6px;
}
.sample-gate-form .row { display: flex; gap: 10px; flex-wrap: wrap; }
.sample-gate-form input[type=email] {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 180px;
  background: var(--ld-paper);
  border: 1px solid var(--ld-rule);
  padding: 12px 14px;
  border-radius: 0;
  font-family: var(--ld-mono);
  font-size: 14px;
  color: var(--ld-ink);
}
.sample-gate-form input[type=email]:focus { border-color: var(--ld-rust); outline: none; }
.sample-gate-form .form-note,
#sample-gate .form-note {
  display: block;
  margin-top: 10px;
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ld-ink-3);
}
.report-success {
  border-top: 1px solid var(--ld-rust);
  border-bottom: 1px solid var(--ld-rule);
  padding: 28px 0;
  max-width: 620px;
}
.report-success h4 {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.report-success p {
  font-family: var(--ld-serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ld-ink-2);
  margin: 0;
}
@media (max-width: 640px) {
  .report-form { grid-template-columns: 1fr; }
}

/* ── footer ──────────────────────────────────────────────────────────── */
footer.colophon {
  background: var(--ld-ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.col-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.col-grid h5 {
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 18px;
}
.col-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.col-grid a { font-family: var(--ld-sans); font-size: 14px; color: rgba(255,255,255,0.65); }
.col-grid a:hover { color: var(--ld-rust); }
.col-grid .brand-block .brand { color: white; font-size: 16px; margin-bottom: 16px; }
.col-grid .brand-block p {
  font-family: var(--ld-serif);
  font-size: 15px;
  line-height: 1.6;
  max-width: 36ch;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.copyright {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ld-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* ── responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .topbar-inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .nav.right { display: flex; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .letter-grid,
  .feat-head,
  .feat-body,
  .feat-pair,
  .architect,
  .feat-architect-grid,
  .subscribe-inner { grid-template-columns: 1fr; gap: 32px; }
  .feat-architect-grid { gap: 1px; }
  .lots-grid { grid-template-columns: repeat(2, 1fr); }
  .col-grid { grid-template-columns: 1fr 1fr; }
  .feat-prose,
  .letter-body { column-count: 1; }
  .section-head { grid-template-columns: auto 1fr; }
  .section-head .right-side { grid-column: 1 / -1; text-align: left; margin-left: 0; max-width: none; }
  .feat-head .price-block { text-align: left; }
}

@media (max-width: 640px) {
  .lots-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .col-grid { grid-template-columns: 1fr; }
  .feat-photo .frame {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .copyright { flex-direction: column; gap: 12px; text-align: center; }
  .hero .top { gap: 8px; }
  .hero .badge { font-size: 10px; padding: 6px 10px; }
  .fit { grid-template-columns: 1fr; gap: 8px; }
  .fit .score { text-align: left; }
}

/* ── Instagram feed (From the Field) ─────────────────────────────── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
.ig-tile {
  display: block;
  aspect-ratio: 4 / 5; /* matches the 560x700 IG post graphics, no crop */
  overflow: hidden;
  border: 1px solid var(--ld-rule);
  background: var(--ld-paper);
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.ig-tile:hover {
  transform: translateY(-3px);
  border-color: var(--ld-ink);
  box-shadow: 5px 6px 0 rgba(26, 26, 23, 0.1);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ig-tile:hover img { transform: scale(1.015); }

/* ── hero signup — same flow as the subscribe band, styled for the hero ── */
.hero-form { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; max-width: 540px; }
.hero-form input[type=email] {
  flex: 1;
  min-width: 220px;
  padding: 15px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: white;
  font-family: var(--ld-mono);
  font-size: 14px;
  outline: none;
}
.hero-form input[type=email]::placeholder { color: rgba(255,255,255,0.4); }
.hero-form input[type=email]:focus { border-color: var(--ld-rust); background: rgba(255,255,255,0.12); }
.hero-form button[type=submit] {
  padding: 15px 24px;
  background: var(--ld-rust);
  color: white;
  border: 0;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}
.hero-form button[type=submit]:hover:not(:disabled) { background: #a8421a; }
.hero-form button[type=submit]:disabled { opacity: 0.6; cursor: progress; }
.hero-form .submit-error {
  flex-basis: 100%;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0a58a;
  margin-top: 4px;
}

/* ── department chooser in the subscribe band (free — picks the Kit form) ── */
.dept-pick {
  flex-basis: 100%;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.dept-pick button {
  cursor: pointer;
  padding: 7px 12px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: inherit;
  font-family: var(--ld-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.15s;
}
.dept-pick button:hover:not(.is-on) { border-color: rgba(255,255,255,0.7); }
.dept-pick button.is-on {
  background: var(--ld-paper);
  color: var(--ld-ink);
  border-color: var(--ld-paper);
}

/* hero variant: each Department spelled out with its territory */
.dept-pick--full { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dept-pick--full button { text-align: left; padding: 12px 15px 13px; }
.dept-pick--full button:first-child { grid-column: 1 / -1; }
.dept-pick--full .k { display: block; }
.dept-pick--full .g {
  display: block;
  margin-top: 5px;
  font-family: var(--ld-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: none;
  opacity: 0.72;
}
.dept-pick--full button.is-on .g { opacity: 0.85; }
@media (max-width: 600px) { .dept-pick--full { grid-template-columns: 1fr; } }

/* ── departments poll (light section — a vote is a Kit general signup) ── */
#focus-poll { display: flex; gap: 8px; flex-wrap: wrap; max-width: 720px; }
#focus-poll select,
#focus-poll input[type=email] {
  padding: 13px 14px;
  background: var(--ld-paper);
  border: 1px solid var(--ld-ink);
  color: var(--ld-ink);
  font-family: var(--ld-mono);
  font-size: 13px;
  outline: none;
  border-radius: 0;
}
#focus-poll select { flex: 1 1 240px; cursor: pointer; }
#focus-poll input[type=email] { flex: 1 1 200px; min-width: 180px; }
#focus-poll select:focus,
#focus-poll input[type=email]:focus { border-color: var(--ld-rust); }
#focus-poll button {
  padding: 13px 22px;
  background: var(--ld-ink);
  color: var(--ld-paper);
  border: 0;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s;
}
#focus-poll button:hover:not(:disabled) { background: var(--ld-rust); }
#focus-poll button:disabled { opacity: 0.6; cursor: progress; }
#focus-poll .submit-error {
  flex-basis: 100%;
  font-family: var(--ld-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-rust);
  margin-top: 4px;
}

/* what free includes — a list, not tappable cards */
.subscribe .includes { list-style: none; margin: 4px 0 0; padding: 0; }
.subscribe .includes li {
  display: flex;
  align-items: baseline;
  gap: 11px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--ld-serif);
  font-size: 15.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.8);
}
.subscribe .includes li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ld-rust);
  transform: translateY(-3px);
}
.subscribe .includes li:last-child { border-bottom: 0; }

/* ── the professional desk ───────────────────────────────────────────── */
.pro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 900px) { .pro-grid { grid-template-columns: 1fr; } }
.pro-list { border-top: 1px solid var(--ld-ink); }
.pro-row {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ld-rule);
}
.pro-row .pn {
  font-family: var(--ld-mono);
  color: var(--ld-rust);
  font-size: 13px;
  padding-top: 3px;
}
.pro-row .pt {
  font-family: var(--ld-serif);
  font-weight: 740;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ld-ink);
  margin-bottom: 8px;
}
.pro-row p {
  font-family: var(--ld-serif);
  font-size: 15.5px;
  line-height: 1.62;
  color: var(--ld-ink-2);
  margin: 0;
}
.pro-side {
  background: var(--ld-paper);
  border: 1px solid var(--ld-rule);
  border-top: 2px solid var(--ld-ink);
  padding: 22px 24px;
}
.pro-side p {
  font-family: var(--ld-serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ld-ink-2);
  margin: 0 0 14px;
}
.pro-side p:last-child { margin-bottom: 0; }
.pro-side strong { color: var(--ld-ink); font-weight: 700; }
.pro-side a {
  color: var(--ld-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pro-side a:hover { color: var(--ld-rust); }

/* ── departments roster (no. | name | areas), phases as dividers ─────── */
.dept-row {
  display: grid;
  grid-template-columns: 34px minmax(170px, 230px) 1fr;
  gap: 12px 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ld-rule);
  align-items: baseline;
  cursor: pointer;
  transition: background 0.15s ease;
}
.dept-row:hover { background: rgba(194, 81, 31, 0.045); }
.dept-row .dn {
  font-family: var(--ld-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ld-rust);
}
.dept-row .name {
  font-family: var(--ld-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--ld-ink);
}
.dept-row .areas {
  font-family: var(--ld-mono);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ld-ink-2);
}
.dept-row.planned .dn { color: var(--ld-ink-3); }
.dept-row.planned .name { color: var(--ld-ink-3); font-weight: 600; }
.dept-row.planned .areas { color: var(--ld-ink-3); }
.dept-row.planned:hover .dn,
.dept-row.planned:hover .name { color: var(--ld-rust); }
.phase-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 26px 0 10px;
  border-bottom: 1px solid var(--ld-rule);
}
.phase-row .pn {
  font-family: var(--ld-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ld-ink);
}
.phase-row .pd {
  font-family: var(--ld-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ld-ink-3);
}
@media (max-width: 640px) {
  .dept-row { grid-template-columns: 26px 1fr; gap: 8px 12px; }
  .dept-row .areas { grid-column: 2; }
}

/* links inside the signup success card (dark contexts) */
.subscribe-success a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.subscribe-success a:hover { color: var(--ld-rust); }

/* ── motion & accessibility pass ─────────────────────────────────────── */

/* scroll reveals — elements arrive like entries being drafted in.
   The .rv class is added by JS only when motion is allowed, so content
   is never hidden for reduced-motion readers or without JS. */
.rv {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease var(--rv-d, 0ms),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) var(--rv-d, 0ms);
}
.rv.rv-in { opacity: 1; transform: none; }

/* the subscribe band's contour motif drifts like a slow survey plot */
@media (prefers-reduced-motion: no-preference) {
  #subscribe-pattern {
    animation: ld-drift 80s ease-in-out infinite alternate;
  }
  /* planned Departments: the dashed boundaries march, glacially,
     and only while the map is on screen */
  #dept-map svg .dept.future path,
  #dept-map svg .dept.future rect {
    animation: ld-march 9s linear infinite;
    animation-play-state: paused;
  }
  #dept-map.in-view svg .dept.future path,
  #dept-map.in-view svg .dept.future rect {
    animation-play-state: running;
  }
}
@keyframes ld-march {
  to { stroke-dashoffset: -18; }  /* two periods of the 5-4 dash, seamless loop */
}
@keyframes ld-drift {
  from { transform: translateX(-22px); }
  to   { transform: translateX(26px); }
}

/* keyboard focus — same rust as everything that matters */
:focus-visible {
  outline: 2px solid var(--ld-rust);
  outline-offset: 2px;
}
