@charset "utf-8";

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-var.woff2") format("woff2-variations"),
       url("assets/fonts/montserrat-var.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;

  size-adjust: 100%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-var-italic.woff2") format("woff2-variations"),
       url("assets/fonts/montserrat-var-italic.woff2") format("woff2");
  font-weight: 400 800;
  font-style: italic;
  font-display: swap;
}

:root {

  --midnight:   #001434;
  --terracotta: #842430;

  --white:      #ffffff;
  --ice:        #dce3ea;
  --rose-sand:  #e9d6d8;

  --text:        var(--midnight);
  --text-2:      rgba(0, 20, 52, .74);
  --text-3:      rgba(0, 20, 52, .62);
  --on-dark:     var(--white);
  --on-dark-2:   rgba(255, 255, 255, .80);
  --on-dark-3:   rgba(255, 255, 255, .58);

  --line:        rgba(0, 20, 52, .12);
  --line-strong: rgba(0, 20, 52, .24);
  --line-dark:   rgba(255, 255, 255, .16);

  --clay-600:  #842430;
  --clay-500:  #842430;
  --clay-hover:#6d2131;
  --clay-ring: rgba(132, 36, 48, .28);
  --clay-tint: var(--rose-sand);

  --surface:        var(--white);
  --surface-sunken: var(--ice);
  --surface-dark:   var(--midnight);
  --overlay-photo:  linear-gradient(rgba(0,20,52,.70), rgba(0,20,52,.70));

  --font: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-display: clamp(2rem, 3.1vw + 1.15rem, 3.25rem);
  --fs-h1:      clamp(1.75rem, 1.1vw + 1.45rem, 2.25rem);
  --fs-h2:      clamp(1.5rem, .8vw + 1.3rem, 1.75rem);
  --fs-h3:      1.25rem;
  --fs-h4:      1.0625rem;
  --fs-lead:    1.125rem;
  --fs-body:    1rem;
  --fs-sm:      .875rem;
  --fs-eyebrow: .75rem;

  --sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px; --sp-5:24px;
  --sp-6:32px; --sp-7:48px; --sp-8:64px; --sp-9:96px;

  --r-xs:3px; --r-sm:6px; --r-md:10px; --r-lg:16px; --r-full:999px;
  --shadow-1: 0 1px 2px rgba(0,20,52,.06), 0 2px 8px rgba(0,20,52,.06);
  --shadow-2: 0 2px 4px rgba(0,20,52,.08), 0 8px 24px rgba(0,20,52,.10);
  --shadow-3: 0 8px 16px rgba(0,20,52,.10), 0 24px 48px rgba(0,20,52,.14);

  --maxw: 1200px;
  --dur: 180ms;
  --ease: cubic-bezier(.2,0,0,1);

  --icon-stroke: 2.25;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--midnight);
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: var(--fs-h1); line-height: 1.17; letter-spacing: -.015em; }
h2 { font-size: var(--fs-h2); line-height: 1.21; letter-spacing: -.01em; }
h3 { font-size: var(--fs-h3); line-height: 1.4; }
h4 { font-size: var(--fs-h4); line-height: 1.41; }
p  { color: var(--text-2); text-wrap: pretty; }
strong { font-weight: 700; color: var(--midnight); }
em { font-style: italic; }

a { color: var(--clay-500); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--clay-hover); }

img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}
.is-dark :focus-visible { outline-color: var(--rose-sand); }

::selection { background: var(--rose-sand); color: var(--midnight); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--midnight); color: #fff; padding: var(--sp-3) var(--sp-5);
  font-weight: 600; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-6); }
.section { padding-block: var(--sp-9); }

:target, section[id], div[id] { scroll-margin-top: 92px; }
.section--tight { padding-block: var(--sp-7); }
.section--sunken { background: var(--surface-sunken); }
.section--dark { background: var(--surface-dark); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--on-dark); }
.footer .footer__h { line-height: 1.4; }
.section--dark p { color: var(--on-dark-2); }

.section-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.lead { font-size: var(--fs-lead); line-height: 1.56; color: var(--text-2); }
.section--dark .lead { color: var(--on-dark-2); }

h2 + p, h2 + .lead { margin-top: var(--sp-4); }
h3 + p, h4 + p { margin-top: var(--sp-2); }

.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.w-full { width: 100%; }
.plain-address { font-style: normal; }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--clay-500);
  margin-bottom: var(--sp-4);
}
.eyebrow::before { content: ""; width: 24px; height: 3px; background: currentColor; border-radius: 2px; }
.section--dark .eyebrow { color: var(--rose-sand); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: inherit; font-size: var(--fs-body); font-weight: 600;
  padding: 14px var(--sp-6); border: 1px solid transparent; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--clay-600); color: #fff; }
.btn--primary:hover { background: var(--clay-hover); color: #fff; }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--midnight); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--midnight); color: var(--midnight); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--onDark:hover { background: var(--rose-sand); border-color: var(--rose-sand); color: var(--midnight); }
.btn[disabled] { background: rgba(0,20,52,.30); border-color: transparent; color: #fff; cursor: not-allowed; }
.btn--lg { padding: 17px var(--sp-7); font-size: 1.0625rem; }
.btn + .btn { margin-left: var(--sp-3); }

.logo { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.logo img { width: 46px; height: 34px; }
.wordmark {
  font-weight: 800; font-size: .95rem; line-height: 1.14;
  letter-spacing: .01em; text-transform: uppercase; color: var(--midnight);
}

.wordmark b { font-weight: 800; color: var(--clay-600); }
.wordmark--light { color: #fff; }
.wordmark--light b { color: #fff; }

.topbar { background: var(--midnight); color: var(--on-dark-2); font-size: var(--fs-sm); }
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-5); min-height: 42px; flex-wrap: wrap;
}
.topbar a { color: var(--on-dark-2); text-decoration: none; }
.topbar a:hover { color: var(--rose-sand); }
.topbar__left { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar__left span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.topbar__left svg { width: 15px; height: 15px; color: var(--rose-sand); flex: none; }
.topbar__flag { color: var(--on-dark-3); font-size: .8125rem; }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); min-height: 74px; }
.nav__links { display: flex; align-items: center; gap: var(--sp-6); }
.nav__links a {
  color: var(--midnight); font-weight: 600; font-size: .9375rem; text-decoration: none;
  padding-block: var(--sp-2); border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--clay-500); border-bottom-color: var(--clay-500); }
.nav__right { display: flex; align-items: center; gap: var(--sp-4); }
.nav__toggle {
  display: none; background: none; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 9px; cursor: pointer; color: var(--midnight);
}
.nav__toggle svg { width: 22px; height: 22px; }

.hero {
  position: relative; overflow: hidden;
  background-color: var(--midnight);
  color: var(--on-dark);
  padding-block: clamp(var(--sp-8), 7vw, 118px);
}

.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 70% 40%, #000 30%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 70% 40%, #000 30%, transparent 78%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-7); align-items: center; }
.hero h1 {
  font-size: var(--fs-display); line-height: 1.08; letter-spacing: -.02em;
  color: var(--on-dark); margin-bottom: var(--sp-5); max-width: 21ch;
}
.hero__kicker {
  font-size: clamp(1.125rem, .7vw + .95rem, 1.4rem); font-weight: 600; line-height: 1.4;
  color: var(--rose-sand); max-width: 34ch; margin-bottom: var(--sp-5);
}
.hero__sub { font-size: var(--fs-lead); line-height: 1.55; color: var(--on-dark-2); max-width: 58ch; margin-bottom: var(--sp-7); }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose-sand); margin-bottom: var(--sp-5);
}
.hero__badge { align-items: flex-start; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-sand); flex: none; margin-top: .35em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.hero__alt { color: var(--on-dark-2); font-size: var(--fs-sm); }
.hero__alt a { color: var(--rose-sand); }

.hero__art { position: relative; }
.hero__svg { width: 100%; height: auto; display: block; }

.hero__list { display: grid; gap: var(--sp-4); }
.hero__list li { display: flex; gap: var(--sp-3); color: var(--on-dark-2); font-size: .9375rem; line-height: 1.45; }
.hero__list svg { width: 20px; height: 20px; color: var(--rose-sand); flex: none; margin-top: 2px; }

.proof { background: var(--midnight); border-top: 1px solid var(--line-dark); }
.proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__item { padding: var(--sp-6) var(--sp-5); border-left: 1px solid var(--line-dark); }
.proof__item:first-child { border-left: 0; padding-left: 0; }
.proof__k { font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-sand); margin-bottom: var(--sp-2); }
.proof__v { font-size: 1.0625rem; font-weight: 700; color: #fff; line-height: 1.3; }

.grid { display: grid; gap: var(--sp-5); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: var(--sp-8); align-items: start; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--sp-5); box-shadow: var(--shadow-1);
}
.section--sunken .card { border-color: rgba(0,20,52,.10); }
.card__icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: var(--clay-tint); color: var(--clay-600);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: var(--sp-2); }
.card p { font-size: .9375rem; line-height: 1.55; }

.cat {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-5); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.cat__ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--clay-tint); color: var(--clay-600); display: grid; place-items: center; flex: none; }
.cat__ic svg { width: 22px; height: 22px; }
.cat .cat__t { font-size: var(--fs-h4); font-weight: 700; margin-bottom: 2px; }
.cat span { font-size: .875rem; color: var(--text-3); }

.ticks { display: grid; gap: var(--sp-4); }
.ticks li { display: flex; gap: var(--sp-3); align-items: flex-start; color: var(--text-2); }
.ticks svg { width: 21px; height: 21px; color: var(--clay-600); flex: none; margin-top: 2px; }
.section--dark .ticks li { color: var(--on-dark-2); }
.section--dark .ticks svg { color: var(--rose-sand); }

.qa { display: grid; gap: var(--sp-6); }
.qa__item { padding-left: var(--sp-5); border-left: 3px solid var(--line); }
.qa__item h3 { margin-bottom: var(--sp-2); }
.qa__item { border-left-color: var(--line); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-6); counter-reset: s; }
.step { counter-increment: s; }
.step__n {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--clay-600);
  color: var(--clay-600); display: grid; place-items: center; font-weight: 700;
  margin-bottom: var(--sp-4);
}
.step__n::before { content: counter(s); }

.sectors { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.sector { padding: var(--sp-5); background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); }
.sector .cat__t { font-size: var(--fs-h4); font-weight: 700; margin-bottom: 2px; }
.sector span { font-size: .875rem; color: var(--text-3); }

.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) var(--sp-6); }
.cred { display: flex; gap: var(--sp-3); align-items: flex-start; }
.cred svg { width: 21px; height: 21px; color: var(--rose-sand); flex: none; margin-top: 2px; }
.cred b { display: block; color: #fff; font-size: .9375rem; }
.cred span { font-size: .875rem; color: var(--on-dark-2); }

.urgent {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--sp-5); padding: var(--sp-6) var(--sp-7);
  background: var(--surface-sunken); border-left: 4px solid var(--terracotta);
  border-radius: var(--r-lg);
}
.urgent h2 { font-size: var(--fs-h3); margin-bottom: 4px; }
.urgent p { color: rgba(0,20,52,.75); font-size: .9375rem; }
.urgent__tel { font-size: 1.5rem; font-weight: 700; color: var(--clay-600); text-decoration: none; white-space: nowrap; }
.urgent__tel:hover { color: var(--clay-hover); text-decoration: underline; }

.rfq { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: var(--sp-8); align-items: start; }

.rfq__aside { position: sticky; top: 96px; }
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-7); box-shadow: var(--shadow-2);
}
.fieldrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.field { margin-bottom: var(--sp-4); }
.field label { display: block; font-size: .9375rem; font-weight: 600; color: var(--midnight); margin-bottom: 6px; }
.field .opt { font-weight: 400; color: var(--text-3); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: var(--fs-body); color: var(--midnight);
  background: var(--white); padding: 12px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(0,20,52,.4); }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible {
  outline: 3px solid var(--clay-600); outline-offset: 2px;
  border-color: var(--clay-600); box-shadow: none;
}

.drop:focus-within { outline: 3px solid var(--clay-500); outline-offset: 2px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field .hint { display: block; font-size: .8125rem; color: var(--text-3); margin-top: 6px; }
.field .err { display: none; font-size: .8125rem; font-weight: 600; color: var(--clay-600); margin-top: 6px; }
.field.is-invalid input, .field.is-invalid textarea, .field.is-invalid select { border-color: var(--clay-600); }
.field.is-invalid .err { display: block; }

.drop {
  border: 2px dashed var(--line-strong); border-radius: var(--r-md);
  padding: var(--sp-5); text-align: center; background: rgba(220,227,234,.35);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.drop:hover, .drop.is-over { border-color: var(--clay-600); background: rgba(233,214,216,.5); }
.drop svg { width: 26px; height: 26px; color: var(--clay-600); margin: 0 auto var(--sp-2); }
.drop b { display: block; font-size: .9375rem; color: var(--midnight); }
.drop span { font-size: .8125rem; color: var(--text-3); }
.drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.filelist { margin-top: var(--sp-3); display: grid; gap: 6px; }
.filelist li { display: flex; justify-content: space-between; gap: var(--sp-3); font-size: .8125rem; color: var(--text-2); background: var(--ice); padding: 7px 10px; border-radius: var(--r-xs); }

.choices { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.field.is-invalid .drop { border-color: var(--clay-600); background: rgba(132,36,48,.04); }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 8px 14px; font-size: .875rem; font-weight: 600;
  border: 1px solid var(--line-strong); border-radius: var(--r-full); cursor: pointer;
  color: var(--text-2); transition: all var(--dur) var(--ease);
}
.choice span:hover { border-color: var(--clay-600); color: var(--clay-600); }

.is-dark .btn--primary, .hero .btn--primary {
  background: var(--rose-sand); color: var(--midnight); border-color: var(--rose-sand);
}
.is-dark .btn--primary:hover, .hero .btn--primary:hover {
  background: #fff; border-color: #fff; color: var(--midnight);
}
.choice input:checked + span { background: var(--clay-600); border-color: var(--clay-600); color: #fff; }
.choice input:checked + span:hover { color: #fff; }
.choice input:focus-visible + span { outline: 3px solid var(--clay-500); outline-offset: 2px; }

.consent { display: flex; gap: var(--sp-3); align-items: flex-start; font-size: .875rem; color: var(--text-2); }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--clay-600); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-note { font-size: .8125rem; color: var(--text-3); margin-top: var(--sp-3); }
.form-status { margin-top: var(--sp-4); padding: var(--sp-4); border-radius: var(--r-sm); font-size: .9375rem; font-weight: 600; }
.form-status.err { background: var(--rose-sand); color: var(--clay-hover); }

.need-card {
  margin-top: var(--sp-6); padding: var(--sp-5);
  background: var(--surface-sunken); border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.need-card h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-4); }
.need-card .hero__list li { color: var(--text-2); }
.need-card .hero__list svg { color: var(--clay-600); }

.contact-list { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
.contact-list .row { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--clay-600); flex: none; margin-top: 2px; }
.contact-list b { display: block; font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.contact-list a { color: var(--midnight); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--clay-600); text-decoration: underline; }

fieldset.field { border: 0; padding: 0; min-width: 0; }
fieldset.field legend {
  display: block; font-size: .9375rem; font-weight: 600;
  color: var(--midnight); margin-bottom: 6px; padding: 0;
}

.footer { background: var(--midnight); color: var(--on-dark-2); padding-block: var(--sp-8) var(--sp-6); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: var(--sp-7); }
.footer__grid > div { min-width: 0; }
.footer p { color: var(--on-dark-2); font-size: .9375rem; margin-top: var(--sp-4); max-width: 34ch; }
.footer .footer__h { color: #fff; font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer ul { display: grid; gap: var(--sp-3); }
.footer a { color: var(--on-dark-2); text-decoration: none; font-size: .9375rem; }
.footer a:hover { color: var(--rose-sand); text-decoration: underline; }
.footer__contact { display: grid; gap: var(--sp-3); font-size: .9375rem; font-style: normal; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  margin-top: var(--sp-8); padding-top: var(--sp-5);
  border-top: 1px solid var(--line-dark); font-size: .875rem; color: var(--on-dark-3);
}
.footer__bottom em { color: var(--rose-sand); font-style: italic; }
.footer__bottom--bare { margin-top: 0; border-top: 0; padding-top: 0; }

.plain { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: var(--sp-9); }
.plain__box { max-width: 62ch; }
.plain h1 { margin-bottom: var(--sp-5); }
.plain p { margin-bottom: var(--sp-5); }
.ref[hidden] { display: none; }
.ref {
  display: inline-block; font-weight: 700; font-size: 1.25rem; color: var(--clay-600);
  background: var(--rose-sand); padding: var(--sp-3) var(--sp-5); border-radius: var(--r-sm);
  margin-bottom: var(--sp-5);
}
.doc { max-width: 72ch; margin-inline: auto; }
.doc h2 { margin: var(--sp-7) 0 var(--sp-3); }
.doc p, .doc li { margin-bottom: var(--sp-3); color: var(--text-2); }
.doc ul { list-style: disc; padding-left: var(--sp-5); }

@media (max-width: 1040px) {
  .rfq__aside { position: static; }

  .hero__art { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .hero__card { max-width: 560px; }

  .rfq { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .rfq .form-card { order: -1; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .proof__item:nth-child(3), .proof__item:nth-child(4) { border-top: 1px solid var(--line-dark); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 900px) {

  .nav__links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-2);
    padding: var(--sp-3) var(--sp-6) var(--sp-5);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: var(--sp-4) 0; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: inline-grid; place-items: center; }
  .header { position: sticky; }
  .nav { position: relative; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { padding-inline: var(--sp-5); }
  .section { padding-block: var(--sp-8); }
  .nav__right .btn { padding: 10px var(--sp-4); font-size: .875rem; }
  .nav { gap: var(--sp-3); }
  .topbar__flag { display: none; }
  .sectors, .creds, .fieldrow { grid-template-columns: 1fr; }
  .form-card { padding: var(--sp-5); }
  .urgent { flex-direction: column; align-items: flex-start; padding: var(--sp-5); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}
@media (max-width: 480px) {
  .container { padding-inline: 20px; }
  .topbar__left span:nth-child(2) { display: none; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__item { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-dark); }
  .proof__item:first-child { border-top: 0; }
  .logo img { width: 38px; height: 28px; }
  .wordmark { font-size: .8125rem; }
  .hero { padding-block: var(--sp-8); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .topbar, .header, .nav, .hero__card, .drop, .form-card, .urgent, .skip { display: none !important; }
  .hero, .proof, .section--dark, .footer { background: #fff !important; color: #000 !important; }
  .hero h1, .section--dark h2, .section--dark h3, .proof__v,
  .footer__h, .cred b, .footer a, .hero__alt a { color: #000 !important; }
  .hero p, .section--dark p, .footer p, .proof__k,
  .cred span, .footer__bottom em, .section--dark .eyebrow { color: #333 !important; }
  .hero::before { display: none; }
  body { font-size: 11pt; }
  .section { padding-block: 12pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
