@import url("../fonts/fonts.css");

/* ---------- Tokens ---------- */
:root {
  --asphalt: #15171a;
  --asphalt-2: #1f2226;
  --asphalt-3: #2a2e33;
  --concrete: #d7d8d3;
  --concrete-2: #c6c8c2;
  --ticket: #f1f2ee;
  --ink: #121315;
  --ink-2: #3b3f44;
  --steel: #8b9198;
  --yellow: #f4c300;
  --yellow-hi: #ffd62e;
  --yellow-deep: #c99f00;
  --on-dark: #eceae3;
  --on-dark-2: #b9bcbf;
  --rule-dark: rgba(236, 234, 227, 0.14);
  --rule-light: rgba(18, 19, 21, 0.16);

  --f-display: "Big Shoulders Stencil Display", "Barlow Condensed", sans-serif;
  --f-label: "Barlow Condensed", "Barlow", sans-serif;
  --f-body: "Barlow", system-ui, sans-serif;
  --f-data: "JetBrains Mono", ui-monospace, monospace;

  --gutter: clamp(1rem, 4vw, 3.5rem);
  --max: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scrollbar-color: var(--yellow) var(--asphalt); }
body {
  margin: 0;
  background: var(--asphalt);
  color: var(--on-dark);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  caret-color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
::selection { background: var(--yellow); color: var(--ink); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--asphalt); }
::-webkit-scrollbar-thumb { background: var(--yellow); border: 3px solid var(--asphalt); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--yellow); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.light :focus-visible { outline-color: var(--ink); }

h1, h2, h3 { margin: 0; text-wrap: balance; }
p { margin: 0 0 1em; max-width: 68ch; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 1rem; top: -4rem; background: var(--yellow); color: var(--ink); padding: .6rem 1rem; font-family: var(--f-label); font-weight: 700; text-transform: uppercase; z-index: 100; }
.skip:focus { top: 1rem; }

/* ---------- Type ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.h-xl { font-size: clamp(3.4rem, 9.2vw, 6rem); }
.h-l { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-m { font-size: clamp(2rem, 4vw, 3rem); }
.label {
  font-family: var(--f-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
}
.lede { font-size: clamp(1.125rem, 1.6vw, 1.3rem); line-height: 1.5; color: var(--on-dark-2); max-width: 44ch; }
.light .lede { color: var(--ink-2); }
.code { font-family: var(--f-data); font-weight: 500; letter-spacing: 0.02em; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--yellow);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-label); font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .06em; text-decoration: none;
  padding: .95rem 1.35rem .9rem;
  background: var(--b); color: var(--ink);
  border: 2px solid var(--b);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 10px 24px -12px rgba(244, 195, 0, .55);
}
.btn:hover { background: var(--yellow-hi); transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(244, 195, 0, .7); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn-ghost { background: transparent; color: var(--on-dark); border-color: var(--rule-dark); box-shadow: none; }
.btn-ghost:hover { background: var(--asphalt-3); box-shadow: none; }
.light .btn-ghost { color: var(--ink); border-color: var(--rule-light); }
.light .btn-ghost:hover { background: var(--concrete-2); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(21, 23, 26, .92); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--rule-dark); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-word { font-family: var(--f-display); font-weight: 900; font-size: 1.9rem; letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.brand-word small { display: block; font-family: var(--f-label); font-weight: 600; font-size: .62rem; letter-spacing: .22em; color: var(--on-dark-2); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { font-family: var(--f-label); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .95rem; text-decoration: none; padding: .55rem .8rem; color: var(--on-dark-2); position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--on-dark); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .2rem; height: 3px; background: var(--yellow); }
.nav .btn { padding: .6rem 1rem .55rem; font-size: .95rem; margin-left: .75rem; color: var(--ink); }
.nav-toggle { display: none; background: none; border: 1px solid var(--rule-dark); color: var(--on-dark); padding: .5rem .7rem; font-family: var(--f-label); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--asphalt); border-bottom: 1px solid var(--rule-dark); padding: .5rem var(--gutter) 1.25rem; display: none; }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--rule-dark); font-size: 1.05rem; }
  .nav a[aria-current="page"]::after { left: 0; right: auto; width: 2.5rem; }
  .nav .btn { margin: 1rem 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero::before { /* dock-floor painted lane line */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 10px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 64px, transparent 64px 96px);
  opacity: .9;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .y { color: var(--yellow); }
.hero .lede { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-photo { position: relative; }
.hero-photo figure { margin: 0; position: relative; aspect-ratio: 4 / 4.3; overflow: hidden; background: var(--asphalt-2); box-shadow: 0 40px 70px -40px rgba(0,0,0,.9); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06) saturate(.9); }
.hero-photo figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,23,26,0) 45%, rgba(21,23,26,.55)); }
.door-header {
  position: absolute; z-index: 2; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .9rem; background: var(--yellow); color: var(--ink);
}
.door-header .label { font-weight: 700; font-size: .85rem; }
.door-header .code { font-size: .78rem; }

/* Manifest ticket */
.ticket {
  position: relative; background: var(--ticket); color: var(--ink);
  padding: 1.1rem 1.25rem 1.2rem;
  box-shadow: 0 30px 50px -28px rgba(0,0,0,.85), 0 2px 0 rgba(0,0,0,.08);
}
.ticket::before, .ticket::after { /* punched perforation edge */
  content: ""; position: absolute; left: 0; right: 0; height: 8px;
  background: radial-gradient(circle at 5px 4px, var(--asphalt) 3px, transparent 3.5px) 0 0 / 14px 8px repeat-x;
}
.ticket::before { top: -4px; }
.ticket::after { bottom: -4px; }
.ticket-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--ink); padding-bottom: .5rem; margin-bottom: .6rem; }
.ticket-head .t { font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .95rem; }
.ticket dl { display: grid; grid-template-columns: auto 1fr; margin: 0; }
.ticket dt, .ticket dd { padding: .42rem 0; border-bottom: 1px solid var(--rule-light); margin: 0; }
.ticket dt { font-family: var(--f-label); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--ink-2); padding-right: 1.25rem; }
.ticket dd { font-family: var(--f-data); font-size: .86rem; text-align: right; }
.ticket dl > :nth-last-child(-n+2) { border-bottom: 0; }
.hero-photo .ticket { position: absolute; z-index: 3; left: clamp(-4rem, -5vw, -1rem); bottom: clamp(-2.5rem, -3vw, -1rem); width: min(360px, 88%); transform: rotate(-1.5deg); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { margin-top: 1rem; }
  .hero-photo figure { aspect-ratio: 4 / 3; }
  .hero-photo .ticket { position: relative; left: auto; bottom: auto; width: auto; margin: -2.5rem .75rem 0; transform: rotate(-1deg); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem 4rem; align-items: end; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head p { margin: 0; color: var(--on-dark-2); }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }
.light { background: var(--concrete); color: var(--ink); }
.light .section-head p { color: var(--ink-2); }

/* ---------- Dock doors ---------- */
.doors { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 1080px) { .doors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .doors { grid-template-columns: 1fr; } }
.door {
  position: relative; display: block; text-decoration: none; color: var(--on-dark);
  background: var(--asphalt-2); aspect-ratio: 3 / 4; overflow: hidden;
  border-top: 10px solid var(--yellow);
}
.door img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05); transition: transform .9s var(--ease), filter .6s var(--ease); }
.door::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(21,23,26,0) 40%, rgba(21,23,26,.9) 100%); transition: background .6s var(--ease); }
.door:hover::before, .door:focus-visible::before { background: linear-gradient(180deg, rgba(21,23,26,.15) 10%, rgba(21,23,26,.94) 100%); }
.door-no {
  position: absolute; z-index: 3; top: 12px; left: 12px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--f-display); font-weight: 900; font-size: 2rem; line-height: 1;
  padding: .3rem .5rem .2rem; min-width: 3.2rem; text-align: center;
}
.door-body { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 1.1rem 1.1rem 1.2rem; }
.door h3 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: 1.8rem; line-height: .92; margin-bottom: .6rem; }
.door ul { list-style: none; margin: 0; padding: 0; font-size: .92rem; color: var(--on-dark-2); line-height: 1.45; }
.door li::before { content: "— "; color: var(--yellow); }
/* Roll-up shutter: slatted door that lifts on hover/focus */
.shutter {
  position: absolute; z-index: 2; inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.07) 0 2px, rgba(0,0,0,.28) 2px 4px, transparent 4px 22px),
    linear-gradient(180deg, #3a3f45, #2b2f34);
  transform-origin: top;
  transform: scaleY(.4); /* door half-raised: the load shows underneath */
  transition: transform .75s var(--ease);
  box-shadow: 0 10px 18px -8px rgba(0,0,0,.7);
}
.shutter::after { /* bottom rail of the door */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 14px;
  background: linear-gradient(180deg, #4a5057, #23272b); border-top: 1px solid rgba(255,255,255,.12);
}
.shutter span { display: none; }
.door .door-body { opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease) .15s, transform .6s var(--ease) .15s; }
.door:hover .shutter, .door:focus-visible .shutter, .door.is-open .shutter { transform: scaleY(0); }
.door:hover .door-body, .door:focus-visible .door-body, .door.is-open .door-body { opacity: 1; transform: none; }
.door:hover img, .door:focus-visible img { transform: scale(1.04); filter: grayscale(0) contrast(1.05); }
.door .door-title-closed { position: absolute; z-index: 3; left: 1.1rem; right: 1.1rem; bottom: 1.2rem; font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: 1.8rem; line-height: .92; color: var(--on-dark); transition: opacity .3s var(--ease); }
.door:hover .door-title-closed, .door:focus-visible .door-title-closed, .door.is-open .door-title-closed { opacity: 0; }
@media (hover: none) {
  .shutter { transform: scaleY(0); }
  .door .door-body { opacity: 1; transform: none; }
  .door .door-title-closed { display: none; }
}

/* ---------- Route (how an order moves) ---------- */
.route { position: relative; margin-top: 1rem; }
.route-line { position: relative; height: 6px; background: var(--concrete-2); margin: 0 1.2rem 2.25rem; }
.route-line .fill { position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: left; }
.route-line .track { position: absolute; inset: 0; transform: translateX(0); }
.route-line .truck { position: absolute; top: 50%; left: 0; width: 54px; height: 30px; transform: translate(-50%, -62%); color: var(--ink); }
.route.run .fill { transform: scaleX(1); transition: transform 2.6s var(--ease); }
.route.run .track { transform: translateX(100%); transition: transform 2.6s var(--ease); }
.stops { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.25rem; counter-reset: stop; }
.stops li { counter-increment: stop; border-top: 2px solid var(--ink); padding-top: .9rem; }
.stops li::before { content: counter(stop, decimal-leading-zero); font-family: var(--f-data); font-size: .8rem; color: var(--ink-2); display: block; margin-bottom: .35rem; }
.stops h3 { font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.25rem; line-height: 1.1; margin-bottom: .4rem; }
.stops p { font-size: .95rem; color: var(--ink-2); margin: 0; }
@media (max-width: 1000px) { .stops { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2rem; } }
@media (max-width: 560px) { .stops { grid-template-columns: 1fr; } .route-line { display: none; } }

/* ---------- Data sheet (government) ---------- */
.sheet { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .sheet { grid-template-columns: 1fr; } }
.sheet .ticket { padding: 1.4rem 1.5rem 1.5rem; }
.sheet .ticket dd { font-size: .92rem; }
.checks { list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: .8rem; }
.checks li { display: grid; grid-template-columns: 26px 1fr; gap: .8rem; align-items: start; }
.checks svg { width: 22px; height: 22px; color: var(--yellow); margin-top: .15rem; }
.light .checks svg { color: var(--ink); }

/* ---------- Photo band ---------- */
.band { position: relative; min-height: clamp(360px, 52vw, 560px); display: flex; align-items: flex-end; overflow: hidden; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.1) brightness(.7); }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,23,26,.9) 0%, rgba(21,23,26,.35) 60%, rgba(21,23,26,.1)); }
.band .wrap { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.band h2 .y { color: var(--yellow); }
.band p { color: var(--on-dark); max-width: 46ch; margin-top: 1rem; }

/* ---------- RFQ close ---------- */
.rfq { background: var(--yellow); color: var(--ink); padding: clamp(4rem, 9vw, 7rem) 0; }
.rfq-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 3rem; align-items: end; }
@media (max-width: 900px) { .rfq-grid { grid-template-columns: 1fr; } }
.rfq .mail { font-family: var(--f-display); font-weight: 900; font-size: clamp(1.7rem, 4.4vw, 3.6rem); white-space: nowrap; line-height: .9; text-transform: uppercase; text-decoration: none; display: inline-block; margin-top: 1rem; border-bottom: 6px solid var(--ink); }
@media (max-width: 420px) { .rfq .mail { white-space: normal; word-break: break-all; } }
.rfq .mail:hover { border-bottom-color: transparent; }
.rfq ol { margin: 0; padding: 0; list-style: none; counter-reset: i; }
.rfq ol li { counter-increment: i; display: grid; grid-template-columns: 2.2rem 1fr; padding: .7rem 0; border-top: 2px solid var(--ink); font-weight: 500; }
.rfq ol li::before { content: counter(i); font-family: var(--f-display); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.rfq .btn { --b: var(--ink); color: var(--yellow); box-shadow: 0 12px 24px -14px rgba(0,0,0,.6); }
.rfq .btn:hover { background: #000; }

/* ---------- Footer ---------- */
.site-footer { background: var(--asphalt); border-top: 1px solid var(--rule-dark); padding: 3rem 0 2.5rem; color: var(--on-dark-2); font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .85rem; color: var(--on-dark); margin-bottom: .8rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--on-dark); text-decoration: underline; }
.foot-legal { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--rule-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; }

/* ---------- Interior pages ---------- */
.page-hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); border-bottom: 10px solid var(--yellow); overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) brightness(.45) contrast(1.1); }
.page-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,23,26,.95) 10%, rgba(21,23,26,.55)); }
.page-hero .wrap { position: relative; }
.page-hero h1 { margin-bottom: 1.1rem; }

/* Catalog */
.catalog { display: grid; gap: 14px; }
.cat {
  display: grid; grid-template-columns: 90px minmax(0, 1.1fr) minmax(0, 1.4fr) minmax(0, .9fr);
  gap: 1.5rem 2rem; align-items: start; padding: 1.75rem 0; border-top: 2px solid var(--ink);
}
.cat .door-no { position: static; display: inline-block; }
.cat h2 { font-family: var(--f-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.9rem, 3vw, 2.5rem); line-height: .92; }
.cat p { color: var(--ink-2); font-size: 1rem; margin: .6rem 0 0; }
.cat ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 1.5rem; font-size: .98rem; }
.cat li { break-inside: avoid; padding: .3rem 0; border-bottom: 1px solid var(--rule-light); }
.cat figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; background: var(--concrete-2); }
.cat figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1000px) { .cat { grid-template-columns: 70px 1fr; } .cat ul, .cat figure { grid-column: 2; } }
@media (max-width: 560px) { .cat { grid-template-columns: 1fr; } .cat ul, .cat figure { grid-column: auto; } .cat ul { columns: 1; } }

/* Two-col prose */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split figure { margin: 0; overflow: hidden; }
.split figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split figcaption { font-family: var(--f-label); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--on-dark-2); padding-top: .6rem; }
.light .split figcaption { color: var(--ink-2); }
.prose h2 { margin-bottom: 1.25rem; }
.prose h3 { font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 1.35rem; margin: 2rem 0 .5rem; }

/* Code table */
.codes { width: 100%; border-collapse: collapse; font-size: .98rem; }
.codes th, .codes td { text-align: left; padding: .7rem .75rem .7rem 0; border-bottom: 1px solid var(--rule-light); vertical-align: top; }
.codes th { font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--ink-2); border-bottom: 2px solid var(--ink); }
.codes td:first-child { font-family: var(--f-data); white-space: nowrap; width: 8.5rem; }

/* Form */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--f-label); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--ticket);
  border: 2px solid var(--ink); border-radius: 0; padding: .75rem .85rem;
}
.field input::placeholder, .field textarea::placeholder { color: #6b7076; }
.field input:focus, .field textarea:focus { outline: 3px solid var(--yellow-deep); outline-offset: 0; }
.field textarea { min-height: 150px; resize: vertical; }
.field .hint { font-size: .88rem; color: var(--ink-2); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a4161a; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-status { font-weight: 500; min-height: 1.5em; }
.form-status.err { color: #a4161a; }

/* Reveal: visible by default, animated only when JS marks the doc */
.js .rise { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.js .rise.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
  .js .rise { opacity: 1; transform: none; }
}

/* Print: data sheet prints clean */
@media print {
  .site-header, .site-footer, .rfq, .band, .hero-actions, .skip { display: none !important; }
  body, .light { background: #fff !important; color: #000 !important; }
  .page-hero { border-bottom: 3px solid #000; }
  .page-hero .bg { display: none; }
  .page-hero, .page-hero * { color: #000 !important; }
}
