/* Utah Flyer — shared site styles
   Base tokens, header, hero, sections, footer, plus guide-specific blocks.
   Edited inline; no build step. */

/* ============================================
   1. Base + shared layout (used by all pages)
   ============================================ */
  :root {
    --bg: #E8DDC8;
    --bg-2: #DDD0B5;
    --bg-3: #F1E8D5;
    --bg-deep: #2A2218;
    --ink: #2A1F14;
    --ink-soft: #4D3E2D;
    --ink-mute: #806D54;
    --rule: #B6A584;
    --rule-soft: #C7B999;
    --accent: #C97A4F;          /* auburn — primary */
    --accent-2: #A75E37;
    --green: #2A3D2E;           /* deep evergreen — tertiary on light bg */
    --gold: #B5985E;            /* muted ochre — tertiary on dark bg */
    --sage: #6B7A5C;
    --display: "Zilla Slab", "Sentinel", "Roboto Slab", Georgia, serif;
    --body: "Manrope", "Söhne", system-ui, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
    --max: 1320px;
    --gutter: clamp(20px, 4vw, 48px);
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01";
  }
  ::selection { background: var(--accent); color: var(--bg-3); }
  a { color: inherit; text-decoration: none; }

  /* Topographic background pattern, used quietly */
  .topo {
    position: relative;
  }
  .topo::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'><g fill='none' stroke='%232A1F14' stroke-width='0.7' opacity='0.07'><path d='M-50 220 Q120 180 280 230 T620 240 T880 200'/><path d='M-50 280 Q140 240 300 290 T640 300 T880 270'/><path d='M-50 340 Q160 300 320 350 T660 360 T880 330'/><path d='M-50 400 Q180 360 340 410 T680 420 T880 390'/><path d='M-50 460 Q200 420 360 470 T700 480 T880 450'/><path d='M-50 520 Q220 480 380 530 T720 540 T880 510'/><path d='M-50 580 Q240 540 400 590 T740 600 T880 570'/><path d='M-50 640 Q260 600 420 650 T760 660 T880 630'/></g></svg>");
    background-size: 1200px 1200px;
    opacity: 1;
  }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }

  .label-mono {
    font-family: var(--mono); font-size: 11.5px;
    letter-spacing: 0.06em; color: var(--ink-mute);
    text-transform: uppercase;
  }
  .label-cap {
    font-family: var(--body); font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink-mute);
  }

  /* Header */
  header.site {
    background: var(--bg);
    border-bottom: 2px solid var(--ink);
    position: sticky; top: 0; z-index: 50;
  }
  .head-strip {
    background: var(--bg-deep);
    color: var(--bg-3);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 8px 0;
  }
  .head-strip .row {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  }
  .head-strip .left, .head-strip .right { display: flex; gap: 22px; }
  .head-strip .right span { color: color-mix(in srgb, var(--bg-3) 70%, transparent); }
  .head-strip .accent { color: var(--gold); }

  .head-main {
    display: grid; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 32px;
    padding: 18px 0;
  }
  .logo {
    display: flex; align-items: center; gap: 14px;
  }
  .logo .badge {
    width: 44px; height: 44px;
    background: var(--accent);
    color: var(--bg-3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
  }
  .logo .badge::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 4px; background: var(--ink);
  }
  .logo .name small {
    color: var(--accent-2);
  }
  .logo .name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: uppercase;
  }
  .logo .name small {
    display: block;
    font-family: var(--mono);
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-top: 4px;
    text-transform: uppercase;
  }
  nav.primary {
    display: flex; gap: 32px;
    font-family: var(--body); font-weight: 600;
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
    justify-self: center;
    color: var(--ink-soft);
  }
  nav.primary a:hover { color: var(--accent); }
  .head-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px;
    background: var(--accent);
    color: var(--bg-3);
    font-family: var(--body); font-weight: 600;
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    transition: background .15s;
  }
  .head-cta:hover { background: var(--accent-2); }

  /* Hero */
  .hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 88px); }
  .hero-tag {
    display: flex; gap: 24px; align-items: baseline; margin-bottom: 32px; flex-wrap: wrap;
  }
  .hero-tag .pill {
    background: var(--ink); color: var(--bg-3);
    padding: 6px 14px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  h1.headline {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(56px, 9vw, 144px);
    line-height: 0.92;
    letter-spacing: -0.025em;
    margin: 0 0 32px 0;
    text-transform: uppercase;
    text-wrap: balance;
  }
  h1.headline .em { color: var(--accent); }
  h1.headline .underline { border-bottom: 6px solid var(--accent); padding-bottom: 4px; }

  .hero-row {
    display: grid; grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: end;
    margin-top: 56px;
  }
  .hero-deck {
    font-size: 21px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 38ch;
    margin: 0;
    text-wrap: pretty;
  }
  .hero-cta-block {
    display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  }
  .btn-primary {
    background: var(--accent);
    color: var(--bg-3);
    padding: 18px 28px;
    font-family: var(--body); font-weight: 700;
    font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
    border: 0; cursor: pointer;
    display: inline-flex; align-items: center; gap: 14px;
    transition: background .15s;
  }
  .btn-primary:hover { background: var(--accent-2); }
  .btn-primary .arr { width: 18px; height: 2px; background: currentColor; position: relative; }
  .btn-primary .arr::after {
    content: ""; position: absolute; right: -1px; top: -4px;
    width: 9px; height: 9px;
    border-top: 2px solid currentColor; border-right: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .btn-quiet {
    font-family: var(--mono); font-size: 13px;
    color: var(--ink-soft); border-bottom: 1px solid var(--rule); padding-bottom: 2px;
  }
  .btn-quiet:hover { color: var(--accent); border-color: var(--accent); }

  .hero-photo {
    margin-top: clamp(56px, 7vw, 88px);
    aspect-ratio: 21/9;
    background: var(--bg-2);
    border: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
    background-image: repeating-linear-gradient(45deg, transparent 0 24px, rgba(42,31,20,0.05) 24px 25px);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-photo .ph {
    text-align: center;
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-mute); text-transform: uppercase;
  }
  .hero-photo .ph::before {
    content: "FIG. 01"; display: block;
    font-family: var(--display); font-weight: 700; font-size: 32px; color: var(--accent);
    margin-bottom: 8px; text-transform: none;
  }
  .photo-coords {
    margin-top: 14px;
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-mute);
    text-transform: uppercase;
  }
  .photo-coords b { color: var(--ink); font-weight: 500; }

  /* Sections */
  section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
  section.dark {
    background: var(--bg-deep); color: var(--bg-3);
  }
  section.dark .label-mono, section.dark .label-cap { color: color-mix(in srgb, var(--bg-3) 65%, transparent); }
  section.dark .accent-text { color: #B5C4A1; }

  .section-banner {
    background: var(--ink);
    color: var(--bg-3);
    margin-bottom: 56px;
    padding: 14px 0;
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  }
  .section-banner .row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
  .section-banner .right { color: color-mix(in srgb, var(--bg-3) 60%, transparent); }

  h2.heading {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(40px, 5.6vw, 80px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    margin: 0 0 32px 0;
    text-transform: uppercase;
    text-wrap: balance;
    max-width: 18ch;
  }
  h2.heading .em { color: var(--accent); }

  /* What we do */
  .editorial-row {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 80px);
    align-items: start;
  }
  .editorial-body p {
    font-size: 19px; line-height: 1.65; color: var(--ink-soft);
    margin: 0 0 1.3em 0; max-width: 56ch;
  }
  .editorial-body p:last-child { margin-bottom: 0; }
  .editorial-body strong { color: var(--ink); font-weight: 700; }
  .editorial-callout {
    border-left: 3px solid var(--green);
    padding-left: 22px;
    font-family: var(--display); font-weight: 500; font-size: 22px;
    line-height: 1.35; color: var(--ink);
    max-width: 28ch;
  }
  .editorial-callout .src {
    display: block;
    margin-top: 16px;
    font-family: var(--mono); font-weight: 400; font-size: 11px;
    letter-spacing: 0.1em; color: var(--ink-mute); text-transform: uppercase;
  }

  /* Tiers — feed-store price list */
  .tiers { border-top: 2px solid var(--bg-3); }
  .tier {
    display: grid; grid-template-columns: 100px 1fr 220px 200px;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--bg-3) 18%, transparent);
    align-items: center;
  }
  .tier .num {
    font-family: var(--display); font-weight: 700; font-size: 56px;
    line-height: 1; color: var(--gold);
    letter-spacing: -0.02em;
  }
  .tier h3 {
    font-family: var(--display); font-weight: 700; font-size: 36px;
    line-height: 1; letter-spacing: -0.015em; text-transform: uppercase;
    margin: 0 0 8px 0;
  }
  .tier .desc {
    font-size: 15.5px; line-height: 1.5;
    color: color-mix(in srgb, var(--bg-3) 75%, transparent);
    max-width: 56ch; margin: 0;
  }
  .tier .specs {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
    color: color-mix(in srgb, var(--bg-3) 70%, transparent);
    line-height: 1.6;
    text-transform: uppercase;
  }
  .tier .specs div { display: flex; justify-content: space-between; gap: 12px; }
  .tier .specs div b { color: var(--bg-3); font-weight: 500; }
  .tier .price-block {
    text-align: right;
  }
  .tier .price-block .from {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
    color: color-mix(in srgb, var(--bg-3) 55%, transparent);
    text-transform: uppercase;
    display: block; margin-bottom: 6px;
  }
  .tier .price-block .amt {
    font-family: var(--display); font-weight: 700; font-size: 56px;
    line-height: 1; letter-spacing: -0.02em;
    color: var(--accent);
  }
  .tier .price-block .amt .sym { font-size: 32px; vertical-align: top; margin-right: 2px; }
  .tier .price-block .unit {
    display: block; margin-top: 6px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--bg-3) 55%, transparent);
    text-transform: uppercase;
  }

  /* Samples — gridded gallery */
  .gallery {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
  }
  .card {
    background: var(--bg-3); border: 1px solid var(--rule);
    display: flex; flex-direction: column;
  }
  .card .img {
    aspect-ratio: 4/3;
    background: var(--bg-2);
    background-image: repeating-linear-gradient(45deg, transparent 0 18px, rgba(42,31,20,0.05) 18px 19px);
    border-bottom: 1px solid var(--rule);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute); text-transform: uppercase;
  }
  .card .body {
    padding: 18px 22px 22px;
  }
  .card .body .ix {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent);
    text-transform: uppercase; font-weight: 500; margin-bottom: 8px;
    display: flex; justify-content: space-between;
  }
  .card .body .ix span:last-child { color: var(--ink-mute); }
  .card .body h4 {
    font-family: var(--display); font-weight: 600; font-size: 22px;
    line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 4px 0;
    text-transform: uppercase;
  }
  .card .body .meta {
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em;
    color: var(--ink-mute); text-transform: uppercase;
  }

  /* Process — horizontal blocks */
  .process {
    display: grid; grid-template-columns: repeat(6, 1fr);
    border: 2px solid var(--ink);
    background: var(--bg-3);
  }
  .step {
    padding: 28px 22px 32px;
    border-right: 1px solid var(--rule-soft);
    position: relative;
    min-height: 220px;
    display: flex; flex-direction: column;
  }
  .step:last-child { border-right: 0; }
  .step .num {
    font-family: var(--display); font-weight: 700; font-size: 64px;
    color: var(--green); line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
  }
  .step h4 {
    font-family: var(--display); font-weight: 700; font-size: 18px;
    text-transform: uppercase; letter-spacing: 0.04em;
    margin: 0 0 8px 0;
  }
  .step p {
    margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft);
  }
  .step .when {
    margin-top: auto; padding-top: 16px;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
    color: var(--ink-mute); text-transform: uppercase;
  }

  /* About */
  .about { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
  .about-photo {
    aspect-ratio: 4/5;
    background: var(--bg-2);
    border: 2px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .about-photo::before {
    content: "FIG. 06"; position: absolute; top: 18px; left: 18px;
    font-family: var(--display); font-weight: 700; font-size: 18px;
    color: var(--bg-3);
    background: var(--accent);
    padding: 3px 8px;
    z-index: 2;
    line-height: 1;
  }
  .about-photo .lab {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-mute); text-transform: uppercase;
  }
  .about-body p {
    font-size: 18px; line-height: 1.65; color: var(--ink-soft);
    margin: 0 0 1.2em 0; max-width: 56ch;
  }
  .signature-row {
    margin-top: 36px; padding-top: 28px;
    border-top: 2px solid var(--ink);
    display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  }
  .signature-row .who {
    font-family: var(--display); font-weight: 700; font-size: 28px;
    text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
  }
  .signature-row .role {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
    color: var(--ink-mute); text-transform: uppercase;
  }

  /* Service area block — typographic block of towns */
  .area-block {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }
  .area-block .label-cap { margin-bottom: 16px; display: block; }
  .area-towns {
    font-family: var(--display); font-weight: 600;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.35;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--ink);
    column-count: 2;
    column-gap: 48px;
    max-width: 720px;
  }
  .area-towns .dim { color: var(--ink-mute); }
  .area-towns .acc { color: var(--accent); }

  /* CTA strip */
  .cta-strip {
    background: var(--accent);
    color: var(--bg-3);
    padding: clamp(72px, 9vw, 128px) 0;
  }
  .cta-strip h2 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(48px, 6.4vw, 96px);
    line-height: 0.96;
    letter-spacing: -0.022em;
    text-transform: uppercase;
    margin: 0 0 36px 0;
    text-wrap: balance;
    max-width: 18ch;
  }
  .cta-strip .row {
    display: flex; align-items: end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }
  .cta-strip .btn-primary {
    background: var(--bg-3); color: var(--accent);
  }
  .cta-strip .btn-primary:hover { background: var(--bg); }
  .cta-strip .meta {
    font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
    line-height: 1.6;
    text-transform: uppercase;
  }
  .cta-strip .meta .b { color: var(--bg-3); }
  .cta-strip .meta .d { color: color-mix(in srgb, var(--bg-3) 65%, transparent); }

  /* Footer */
  footer.site { background: var(--bg-deep); color: var(--bg-3); padding: 56px 0 32px; }
  .foot-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(24px, 3vw, 56px);
    padding-bottom: 40px;
    border-bottom: 1px solid color-mix(in srgb, var(--bg-3) 18%, transparent);
  }
  .foot-mark {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .foot-mark .badge {
    width: 40px; height: 40px; background: var(--bg-3); color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 700; font-size: 20px;
  }
  .foot-mark .name {
    font-family: var(--display); font-weight: 700; font-size: 22px;
    text-transform: uppercase; letter-spacing: -0.005em;
  }
  .foot-blurb {
    font-size: 14.5px; line-height: 1.55; max-width: 36ch;
    color: color-mix(in srgb, var(--bg-3) 75%, transparent);
    margin: 0;
  }
  .foot-col h5 {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
    text-transform: uppercase; color: color-mix(in srgb, var(--bg-3) 60%, transparent);
    margin: 0 0 14px 0; font-weight: 500;
  }
  .foot-col ul { list-style: none; padding: 0; margin: 0; }
  .foot-col li {
    padding: 4px 0; font-size: 14px;
    color: color-mix(in srgb, var(--bg-3) 80%, transparent);
  }
  .foot-col a:hover { color: var(--gold); }
  .foot-coords {
    margin-top: 28px;
    display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em;
    color: color-mix(in srgb, var(--bg-3) 55%, transparent);
    text-transform: uppercase;
  }

  @media (max-width: 980px) {
    .head-main { grid-template-columns: auto 1fr; }
    nav.primary { display: none; }
    .hero-row { grid-template-columns: 1fr; }
    .editorial-row { grid-template-columns: 1fr; }
    .tier { grid-template-columns: 70px 1fr; }
    .tier .specs, .tier .price-block { grid-column: 2; }
    .tier .price-block { text-align: left; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: repeat(3, 1fr); }
    .step { border-bottom: 1px solid var(--rule-soft); }
    .step:nth-child(3) { border-right: 0; }
    .step:nth-child(n+4) { border-bottom: 0; }
    .about { grid-template-columns: 1fr; }
    .area-towns { column-count: 1; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 560px) {
    .gallery { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr 1fr; }
    .step:nth-child(2n) { border-right: 0; }
    .foot-grid { grid-template-columns: 1fr; }
  }

/* ============================================
   2. Guide-specific (used only by /guide)
   ============================================ */
  .guide-hero { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); }
  .guide-eyebrow {
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--accent); font-weight: 500;
    margin-bottom: 28px; display: flex; align-items: center; gap: 16px;
  }
  .guide-eyebrow::before {
    content: ""; width: 36px; height: 1px; background: var(--accent);
  }
  h1.guide-headline {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(48px, 7vw, 112px);
    line-height: 0.95; letter-spacing: -0.025em;
    margin: 0 0 36px 0; text-transform: uppercase;
    text-wrap: balance; max-width: 14ch;
  }
  h1.guide-headline .em { color: var(--accent); font-style: italic; font-weight: 700; }
  .guide-deck {
    font-size: 22px; line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0 0 32px 0;
    text-wrap: pretty;
  }
  .guide-meta {
    display: flex; gap: 32px; flex-wrap: wrap;
    padding-top: 20px; border-top: 1px solid var(--rule);
    font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em;
    color: var(--ink-mute); text-transform: uppercase;
    max-width: 60ch;
  }
  .guide-meta b { color: var(--ink); font-weight: 500; }

  .article { max-width: 820px; }
  .article h2.heading { max-width: 18ch; margin-bottom: 36px; }
  .article-body p {
    font-size: 19px; line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1.3em 0;
    max-width: 64ch;
    text-wrap: pretty;
  }
  .article-body p:last-child { margin-bottom: 0; }
  .article-body strong { color: var(--ink); font-weight: 700; }

  .pullquote {
    border-left: 3px solid var(--accent);
    padding: 4px 0 4px 28px;
    margin: 44px 0;
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.25;
    color: var(--ink);
    max-width: 24ch;
    letter-spacing: -0.005em;
  }

  .rule-block {
    display: grid; grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 48px 0;
    border-bottom: 1px solid var(--rule-soft);
    align-items: start;
  }
  .rule-block:last-child { border-bottom: 0; }
  .rule-num {
    font-family: var(--display); font-weight: 700;
    font-size: 64px; line-height: 0.9;
    color: var(--gold); letter-spacing: -0.03em;
  }
  .rule-block h3 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin: 0 0 24px 0;
    text-transform: uppercase;
    text-wrap: balance;
    max-width: 22ch;
  }
  .rule-block p {
    font-size: 18px; line-height: 1.7; color: var(--ink-soft);
    margin: 0 0 1.2em 0; max-width: 60ch;
  }
  .rule-block ul.dashlist {
    list-style: none; padding: 0; margin: 0 0 1.2em 0;
    max-width: 60ch;
  }
  .rule-block ul.dashlist li {
    font-size: 18px; line-height: 1.65; color: var(--ink-soft);
    padding: 4px 0 4px 24px;
    position: relative;
  }
  .rule-block ul.dashlist li::before {
    content: "—"; position: absolute; left: 0; color: var(--accent);
  }

  .size-table {
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    margin: 32px 0 28px 0;
    max-width: 760px;
  }
  .size-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 22px 0;
    border-bottom: 1px solid var(--rule-soft);
    align-items: baseline;
  }
  .size-row:last-child { border-bottom: 0; }
  .size-row .range {
    font-family: var(--mono); font-weight: 500;
    font-size: 14px; letter-spacing: 0.06em;
    color: var(--accent); text-transform: uppercase;
  }
  .size-row .copy h5 {
    margin: 0 0 6px 0;
    font-family: var(--display); font-weight: 700; font-size: 20px;
    line-height: 1.1; text-transform: uppercase; letter-spacing: -0.005em;
  }
  .size-row .copy p {
    margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
    max-width: 52ch;
  }

  .specs-table {
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    margin: 32px 0;
    max-width: 760px;
  }
  .spec-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule-soft);
    align-items: baseline;
  }
  .spec-row:last-child { border-bottom: 0; }
  .spec-row .key {
    font-family: var(--mono); font-weight: 500;
    font-size: 12px; letter-spacing: 0.1em;
    color: var(--ink-mute); text-transform: uppercase;
  }
  .spec-row .val {
    font-size: 16px; line-height: 1.5; color: var(--ink);
  }

  @media (max-width: 720px) {
    .rule-block { grid-template-columns: 1fr; gap: 12px; }
    .rule-num { font-size: 48px; }
    .size-row { grid-template-columns: 1fr; gap: 8px; }
    .spec-row { grid-template-columns: 1fr; gap: 6px; }
  }


/* ============================================
   3. Form styles (used by /quote and any future forms)
   ============================================ */
  .quote-form {
    max-width: 720px;
    background: var(--bg-3);
    border: 2px solid var(--ink);
    padding: clamp(28px, 4vw, 48px);
    margin: 0 0 clamp(64px, 8vw, 96px);
  }
  .quote-form .hp {
    position: absolute;
    left: -10000px;
    width: 1px; height: 1px;
    overflow: hidden;
  }
  .quote-form .form-row {
    margin-bottom: 24px;
  }
  .quote-form .form-row:last-of-type {
    margin-bottom: 0;
  }
  .quote-form label {
    display: block;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .quote-form .req {
    color: var(--accent);
    margin-left: 2px;
  }
  .quote-form .opt {
    color: var(--ink-mute);
    text-transform: lowercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-style: italic;
    margin-left: 6px;
  }
  .quote-form input[type="text"],
  .quote-form input[type="email"],
  .quote-form input[type="tel"],
  .quote-form select,
  .quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid var(--rule);
    border-radius: 0;
    transition: border-color .15s, background .15s;
    -webkit-appearance: none;
    appearance: none;
  }
  .quote-form select {
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                      linear-gradient(-45deg, transparent 50%, var(--ink) 50%);
    background-position: calc(100% - 18px) center, calc(100% - 12px) center;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
  }
  .quote-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--body);
  }
  .quote-form input:focus,
  .quote-form select:focus,
  .quote-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-3);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
  }
  .quote-form input:invalid:not(:placeholder-shown),
  .quote-form textarea:invalid:not(:placeholder-shown) {
    border-color: var(--accent-2);
  }
  .quote-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .quote-form .form-actions {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .quote-form .form-fine {
    margin: 0;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--ink-mute);
    line-height: 1.5;
    max-width: 60ch;
  }
  @media (max-width: 640px) {
    .quote-form .form-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .quote-form .form-grid .form-row {
      margin-bottom: 24px;
    }
  }
