/* ============================================================
   OEM Headlight Buyers — stylesheet v5

   Type: Libre Franklin (headings) + Inter (body).
   Franklin Gothic is the classic American commercial/industrial
   typeface — it reads as an established trade business rather
   than a tech startup. Inter carries the body copy because it's
   the most legible screen sans available at small sizes.

   Palette is deliberately narrow: white, warm grey, near-black,
   one gold accent dark enough to pass contrast on white.
   No gradients, no glow, no animation.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

/* ---------- Tokens ---------- */
:root {
  --white:    #FFFFFF;
  --bg:       #FFFFFF;
  --bg-alt:   #F5F5F2;   /* warm light band */
  --bg-alt-2: #ECECE7;
  --ink:      #14171A;   /* headings + strong text  (15.4:1 on white) */
  --ink-body: #2E3439;   /* long-form body copy      (11.4:1) */
  --ink-soft: #4A5157;   /* secondary copy            (8.3:1) */
  --ink-dim:  #6C747C;   /* captions only             (5.2:1) */
  --line:     #E0E1DE;
  --line-2:   #C9CBC7;
  --gold:     #8A6410;   /* accent — 5.6:1 on white, readable as text */
  --gold-lt:  #C9A03C;   /* accent for dark backgrounds */
  --dark:     #14171A;
  --ok:       #1B6E38;
  --no:       #A62B14;
  /* back-compat aliases (older inline styles reference these) */
  --rust:     #8A6410;
  --amber:    #8A6410;
  --paper:    #FFFFFF;
  --maxw: 1150px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink-body);
  background: var(--bg);
  font-size: 1.0625rem;         /* 17px — comfortable reading size */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: #F3E4BE; color: var(--ink); }

/* ---------- Headings ---------- */
h1, h2, h3, h4, .display {
  font-family: "Libre Franklin", Inter, system-ui, sans-serif;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 3.8vw, 3rem); letter-spacing: -0.022em; line-height: 1.1; }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.1rem); letter-spacing: -0.018em; }
h3 { font-size: 1.16rem; letter-spacing: -0.005em; line-height: 1.3; }
h4 { font-size: 1rem; }
p { color: var(--ink-body); }
p + p { margin-top: 0.9rem; }
strong { color: var(--ink); font-weight: 600; }

.kicker {
  font-family: "Libre Franklin", sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.75rem;
}
.lead { font-size: clamp(1.09rem, 1.5vw, 1.22rem); color: var(--ink-soft); line-height: 1.6; }
.mono { font-family: inherit; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.1rem); }
.section { padding-block: clamp(3rem, 5.5vw, 4.75rem); }
.section--tight { padding-block: clamp(2rem, 3.5vw, 2.75rem); }
.rule, .rule--soft { border: 0; border-top: 1px solid var(--line); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.cols-2 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.cols-3 { grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); }
.cols-4 { grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); }

.band-alt, .band-soft, .band-rust { background: var(--bg-alt); border-block: 1px solid var(--line); }
.band-dark { background: var(--dark); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark p, .band-dark .lead { color: #C4C9CE; }
.band-dark .kicker { color: var(--gold-lt); }
.band-dark .link-rust { color: var(--gold-lt); }
.band-dark .btn--rust, .band-dark .btn--ink { background: var(--gold-lt); border-color: var(--gold-lt); color: #241900; }
.band-dark .btn--rust:hover, .band-dark .btn--ink:hover { background: #DDB44F; }
.band-alt .btn--ghost-light, .band-rust .btn--ghost-light,
.callout .btn--ghost-light, .hero .btn--ghost-light {
  background: var(--white); color: var(--ink); border-color: var(--line-2);
}
.band-alt .btn--ghost-light:hover, .band-rust .btn--ghost-light:hover,
.callout .btn--ghost-light:hover, .hero .btn--ghost-light:hover { border-color: var(--ink); }
.dotgrid, .brushed { background-image: none; }

/* ---------- Utility bar ---------- */
.utilbar { background: var(--dark); color: #B9BFC5; font-size: 0.84rem; }
.utilbar__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.utilbar a { color: var(--white); text-decoration: none; font-weight: 600; }
.utilbar a:hover { text-decoration: underline; }
.utilbar__facts { display: flex; gap: 1.35rem; flex-wrap: wrap; }
.utilbar__facts span { white-space: nowrap; }

/* ---------- Header ---------- */
.masthead { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: 1px solid var(--line); }
.masthead.scrolled { box-shadow: 0 1px 10px rgba(20,23,26,.10); }
/* Logo sits alone on the left. The nav is pushed right with margin-left:auto
   so FAQ, Contact and the Get a quote button read as one group rather than
   the nav floating in the middle of the bar. */
.masthead__row { display: flex; align-items: center; justify-content: flex-start; gap: 1.7rem; min-height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo__emblem { height: 30px; width: auto; flex: 0 0 auto; }
.foot .logo__emblem { height: 34px; }
.logo__txt { display: block; white-space: nowrap; font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 0.97rem; letter-spacing: 0.005em; line-height: 1.2; color: var(--ink); text-transform: uppercase; }
.logo__txt em { font-style: normal; color: var(--gold); }
.logo__sub { display: block; font-family: Inter, sans-serif; font-size: 0.65rem; letter-spacing: 0.11em; color: var(--ink-dim); text-transform: uppercase; margin-top: 3px; font-weight: 600; }

.mainnav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.mainnav a { font-family: "Libre Franklin", sans-serif; text-decoration: none; font-weight: 600; font-size: 0.9rem; color: var(--ink); padding: 0.35rem 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.mainnav a:hover { color: var(--gold); }
.mainnav a.here { border-color: var(--gold); }

.head-cta { display: flex; align-items: center; gap: 0.75rem; }
.phone-link { font-family: "Libre Franklin", sans-serif; font-weight: 700; font-size: 0.98rem; text-decoration: none; color: var(--ink); white-space: nowrap; }
.phone-link:hover { color: var(--gold); }

.burger { display: none; background: none; border: 1px solid var(--line-2); border-radius: 4px; padding: 8px 9px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }

#mnav { display: none; border-top: 1px solid var(--line); background: var(--white); }
#mnav.open { display: block; }
#mnav .wrap { padding-block: 0.4rem 1rem; }
#mnav a { display: block; padding: 0.75rem 0; font-weight: 600; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); }
#mnav .m-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding-top: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: "Libre Franklin", sans-serif; font-weight: 600; font-size: 0.97rem;
  padding: 0.8rem 1.35rem; border-radius: 4px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; line-height: 1.25; white-space: nowrap;
}
.btn--rust, .btn--ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--rust:hover, .btn--ink:hover { background: #000; }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--gold { background: var(--gold-lt); color: #241900; border-color: var(--gold-lt); }
.btn--gold:hover { background: #DDB44F; }
.btn--lg { padding: 0.95rem 1.65rem; font-size: 1.03rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Hero ---------- */
.hero, .hero-dark { background: var(--white); border-bottom: 1px solid var(--line); }
.hero-dark::before, .hero-dark::after { content: none; }
.hero__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.hero__copy { padding-block: clamp(2.4rem, 4.5vw, 3.9rem); }
.hero h1 { margin-bottom: 1.05rem; }
.hero-dark h1, .hero-dark h1 em { color: var(--ink); font-style: normal; }
.hero__sub { max-width: 50ch; font-size: clamp(1.06rem, 1.5vw, 1.17rem); color: var(--ink-soft); }
.hero__cta { margin-top: 1.7rem; }
.hero__note { margin-top: 0.95rem; font-size: 0.88rem; color: var(--ink-dim); }
.hero__aside { align-self: center; }

/* ---------- Trust list ---------- */
.trustlist { list-style: none; padding: 0; margin-top: 1.45rem; display: grid; gap: 0.55rem; }
.trustlist li { position: relative; padding-left: 1.7rem; color: var(--ink); font-size: 1rem; }
.trustlist li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 0.72rem; height: 0.38rem; border-left: 2.2px solid var(--ok); border-bottom: 2.2px solid var(--ok);
  transform: rotate(-45deg);
}

/* ---------- Inline form card ---------- */
.formcard { background: var(--white); border: 1px solid var(--line-2); border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(20,23,26,.06); }
.formcard__head { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 1rem 1.3rem; }
.formcard__head strong { display: block; font-family: "Libre Franklin", sans-serif; font-size: 1.06rem; color: var(--ink); font-weight: 700; }
.formcard__head span { display: block; font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.2rem; }
.formcard__body { padding: 1.3rem; }
.formcard__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.formcard__note { font-size: 0.81rem; color: var(--ink-dim); margin-top: 0.75rem; text-align: center; }
.formcard__alt { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 0.85rem 1.3rem; font-size: 0.89rem; color: var(--ink-soft); text-align: center; }
@media (max-width: 420px) { .formcard__row { grid-template-columns: 1fr; } }

/* ---------- Photo picker (mobile first) ----------
   The input is visually hidden but still focusable, and the label acts
   as a large tap target. On phones this opens the camera or photo
   library; the file count is written back into .filedrop__count. */
.filedrop { position: relative; }
.filedrop input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.filedrop__box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center;
  border: 2px dashed var(--line-2); border-radius: 10px;
  background: var(--bg-alt); padding: 1.6rem 1.1rem;
  min-height: 132px; transition: border-color .15s, background .15s;
}
.filedrop input[type="file"]:focus-visible + .filedrop__box,
.filedrop:hover .filedrop__box { border-color: var(--gold); background: #FAF7EF; }
.filedrop__icon { width: 30px; height: 30px; color: var(--gold); }
.filedrop__title { font-family: "Libre Franklin", sans-serif; font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.filedrop__hint { font-size: 0.88rem; color: var(--ink-soft); }
.filedrop__count { font-size: 0.9rem; font-weight: 600; color: var(--ok); margin-top: 0.55rem; display: none; }
.filedrop__count.on { display: block; }
.filedrop.has-files .filedrop__box { border-style: solid; border-color: var(--ok); background: #F3F9F4; }

/* ---------- Sticky mobile action bar ---------- */
.mobilebar { display: none; }
@media (max-width: 760px) {
  .mobilebar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line-2);
    box-shadow: 0 -2px 14px rgba(20,23,26,.10);
  }
  .mobilebar .btn { width: 100%; padding-block: 0.85rem; }
  body { padding-bottom: 78px; }
}

/* ---------- Fact strip ---------- */
.specbar { background: var(--bg-alt); border-block: 1px solid var(--line); }
.specbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.specbar__item { padding: 1.3rem 1.3rem; }
.specbar__item + .specbar__item { border-left: 1px solid var(--line); }
.specbar__n { font-family: "Libre Franklin", sans-serif; font-weight: 700; font-size: clamp(1.1rem, 1.9vw, 1.35rem); color: var(--ink); line-height: 1.2; }
.specbar__l { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.3rem; }

/* ---------- Section heading ---------- */
.sechead { max-width: 64ch; margin-bottom: clamp(1.6rem, 3vw, 2.35rem); }
.sechead h2 { margin-bottom: 0.75rem; }
.sechead p { color: var(--ink-soft); }

/* ---------- Page header ---------- */
.pagehead { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding-block: clamp(2.25rem, 4vw, 3.25rem); }
.pagehead::before { content: none; }
.pagehead h1 { margin-bottom: 0.8rem; }

/* ---------- Audience paths ---------- */
.paths { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
/* transparent top border on both so the accented card doesn't sit 3px lower */
.path { background: var(--white); border: 1px solid var(--line-2); border-top: 3px solid transparent; border-radius: 6px; padding: 1.75rem; display: flex; flex-direction: column; }
.path--primary { border-top-color: var(--gold); }
.path__tag { font-family: "Libre Franklin", sans-serif; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.55rem; }
.path h3 { font-size: 1.32rem; margin-bottom: 0.55rem; }
.path ul { list-style: none; padding: 0; margin: 1rem 0 1.4rem; display: grid; gap: 0.45rem; }
.path li { position: relative; padding-left: 1.15rem; font-size: 0.97rem; color: var(--ink-body); }
.path li::before { content: "\2022"; position: absolute; left: 0.15rem; color: var(--gold); font-weight: 700; }
.path .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--line); border-radius: 5px; padding: 1.55rem; }
.card--edge { border-top: 3px solid var(--gold); }
.card h3 { margin-bottom: 0.5rem; }
.card__k { font-family: "Libre Franklin", sans-serif; font-size: 0.73rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gold); font-weight: 700; display: block; margin-bottom: 0.45rem; }
.card--link:hover { border-color: var(--ink); }

/* ---------- Steps ---------- */
.steps { display: grid; }
.step { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1.15rem; padding: 1.45rem 0; border-top: 1px solid var(--line); align-items: start; }
.step:first-child { border-top: 1px solid var(--line-2); }
.step__n { font-family: "Libre Franklin", sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); background: var(--ink); width: 2rem; height: 2rem; border-radius: 4px; display: grid; place-content: center; }
.step h3 { margin-bottom: 0.35rem; }

/* ---------- Tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.tag { border: 1px solid var(--line-2); border-radius: 3px; padding: 0.5rem 1rem; font-weight: 600; font-size: 0.92rem; background: var(--white); color: var(--ink); }

/* ---------- Ledger ---------- */
.ledger { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border: 1px solid var(--line); border-radius: 5px; overflow: hidden; background: var(--white); }
.ledger__col { padding: 1.6rem; }
.ledger__col + .ledger__col { border-left: 1px solid var(--line); }
.ledger__head { font-family: "Libre Franklin", sans-serif; font-size: 0.79rem; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 1.05rem; font-weight: 700; }
.ledger--yes .ledger__head { color: var(--ok); }
.ledger--no  .ledger__head { color: var(--no); }
.ledger ul { list-style: none; padding: 0; margin: 0; }
.ledger li { padding: 0.6rem 0 0.6rem 1.6rem; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-body); font-size: 0.98rem; }
.ledger li:last-child { border-bottom: 0; }
.ledger--yes li::before { content: "\2713"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.ledger--no  li::before { content: "\00d7"; position: absolute; left: 0.1rem; color: var(--no); font-weight: 700; }

/* ---------- Price table ---------- */
.ptable { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: var(--white); }
.ptable th { font-family: "Libre Franklin", sans-serif; background: var(--bg-alt); color: var(--ink); text-align: left; padding: 0.9rem 1rem; font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid var(--line); }
.ptable td { padding: 1.05rem 1rem; border-top: 1px solid var(--line); vertical-align: top; color: var(--ink-body); font-size: 0.98rem; }
.ptable td:first-child { font-family: "Libre Franklin", sans-serif; font-weight: 700; color: var(--ink); }
.pill { display: inline-block; font-family: "Libre Franklin", sans-serif; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.28rem 0.6rem; border-radius: 3px; font-weight: 700; border: 1px solid; }
.pill--top { background: #F7EED6; color: #6E4E08; border-color: #DCC48A; }
.pill--hi  { background: #EEF2F7; color: #2F4A66; border-color: #C6D2E0; }
.pill--mid { background: var(--bg-alt); color: var(--ink-soft); border-color: var(--line-2); }

/* ---------- Comparison table ---------- */
.cmp { width: 100%; border-collapse: collapse; border: 1px solid var(--line); background: var(--white); }
.cmp th { font-family: "Libre Franklin", sans-serif; text-align: left; padding: 0.9rem 1rem; font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 700; border-bottom: 1px solid var(--line); background: var(--bg-alt); color: var(--ink); }
.cmp th.is-us { background: var(--ink); color: var(--white); }
.cmp td { padding: 0.95rem 1rem; border-top: 1px solid var(--line); font-size: 0.96rem; color: var(--ink-soft); vertical-align: top; }
.cmp td:first-child { font-weight: 600; color: var(--ink); width: 28%; }
.cmp td.is-us { background: #FBF9F3; color: var(--ink-body); font-weight: 600; border-inline: 1px solid var(--line); }
.cmp tr:last-child td.is-us { border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .cmp td, .cmp th { padding: 0.7rem; font-size: 0.88rem; } .cmp td:first-child { width: 32%; } }

/* ---------- Stats / metrics ---------- */
.stat { border-left: 2px solid var(--gold); padding-left: 1rem; }
.stat__num { font-family: "Libre Franklin", sans-serif; font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.15; color: var(--ink); }
.stat__lbl { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.3rem; }

.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.4rem; }
.metric__n { font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.5rem); color: var(--ink); line-height: 1; }
.metric__l { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.45rem; }

/* ---------- Quote / callout ---------- */
.ticket { background: var(--white); border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.ticket::before, .ticket::after { content: none; }
.ticket__bar { font-family: "Libre Franklin", sans-serif; background: var(--bg-alt); color: var(--ink); font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; padding: 0.75rem 1.1rem; display: flex; justify-content: space-between; align-items: center; font-weight: 700; border-bottom: 1px solid var(--line); }
.ticket__bar .dot { display: none; }
.ticket__body { padding: 1.3rem 1.35rem 1.45rem; }
.ticket__row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.62rem 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.ticket__row span:first-child { color: var(--ink-soft); }
.ticket__row span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.ticket__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.95rem; }
.ticket__total .lbl { font-family: "Libre Franklin", sans-serif; font-size: 0.76rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.ticket__total .val { font-family: "Libre Franklin", sans-serif; font-weight: 700; font-size: 1.32rem; color: var(--ink); }
.stamp { display: inline-block; margin-top: 1rem; border: 1px solid var(--ok); color: var(--ok); border-radius: 3px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.71rem; padding: 0.35rem 0.65rem; }

.callout { border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 5px; padding: clamp(1.35rem, 2.5vw, 2rem); background: var(--bg-alt); }
.pull { font-family: "Libre Franklin", sans-serif; font-weight: 600; font-size: clamp(1.12rem, 2vw, 1.4rem); line-height: 1.45; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- FAQ ---------- */
details.q { border-top: 1px solid var(--line); }
details.q:first-of-type { border-top: 1px solid var(--line-2); }
details.q summary { font-family: "Libre Franklin", sans-serif; cursor: pointer; list-style: none; padding: 1.15rem 0; font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; }
details.q summary:hover { color: var(--gold); }
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after { content: "+"; color: var(--gold); font-weight: 700; font-size: 1.3rem; line-height: 1; }
details.q[open] summary::after { content: "\2013"; }
details.q p { padding-bottom: 1.15rem; max-width: 74ch; }

.faqprev { display: grid; }
.faqprev__i { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.faqprev__i:first-child { border-top: 1px solid var(--line-2); }
.faqprev__q { font-family: "Libre Franklin", sans-serif; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }

/* ---------- Forms ---------- */
.field-l { display: block; font-size: 0.84rem; color: var(--ink); margin-bottom: 0.35rem; font-weight: 600; }
.req { color: var(--no); }
.inp { width: 100%; font: inherit; font-size: 1rem; padding: 0.75rem 0.9rem; border: 1px solid var(--line-2); border-radius: 4px; background: var(--white); color: var(--ink); }
.inp::placeholder { color: var(--ink-dim); }
.inp:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(138,100,16,.14); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
@media (max-width: 560px){ .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.foot { background: var(--dark); color: #A9B0B7; }
.foot::before { content: none; }
.foot a { color: #D8DDE2; text-decoration: none; }
.foot a:hover { color: var(--white); text-decoration: underline; }
/* `.foot a` outranks the .btn colour rules, so restate them for buttons
   inside the footer — otherwise the gold button gets pale grey text. */
.foot a.btn { text-decoration: none; }
.foot a.btn--gold { color: #241900; }
.foot a.btn--gold:hover { color: #241900; }
.foot a.btn--rust, .foot a.btn--ink { color: var(--white); }
.foot a.btn--ghost-light { color: var(--white); }
.foot a.btn--ghost-light:hover { color: var(--ink); }
.foot__top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.4rem 2rem;
  padding-block: clamp(1.9rem, 3.5vw, 2.6rem);
}
.foot__nav { display: flex; flex-wrap: wrap; gap: 1.6rem; }
.foot__nav a {
  font-family: "Libre Franklin", sans-serif; font-weight: 600; font-size: 0.94rem;
  color: #D8DDE2; text-decoration: none; white-space: nowrap;
}
.foot__nav a:hover { color: var(--white); text-decoration: underline; }
.foot h4 { font-family: "Libre Franklin", sans-serif; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; font-weight: 700; }
.foot ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: 0.95rem; }
.foot p { color: #A9B0B7; }
.foot .logo__txt { color: var(--white); }
.foot .logo__txt em { color: var(--gold-lt); }
.foot .logo__sub { color: #868E96; }
.foot__bar { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.05rem; font-size: 0.81rem; color: #868E96; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- Prose ---------- */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-body); line-height: 1.75; }
.prose h2 { font-size: clamp(1.35rem, 2.3vw, 1.65rem); margin: 2.1rem 0 0.75rem; }
.prose h3 { margin: 1.6rem 0 0.5rem; color: var(--ink); }
.prose ul { margin: 0 0 1.2rem; padding-left: 0; list-style: none; }
.prose li { position: relative; padding: 0.32rem 0 0.32rem 1.4rem; color: var(--ink-body); }
.prose li::before { content: "\2022"; position: absolute; left: 0.3rem; color: var(--gold); font-weight: 700; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 0.8rem; } .mt-2 { margin-top: 1.5rem; } .mt-3 { margin-top: 2.3rem; }
.mb-2 { margin-bottom: 1.5rem; }
.maxch { max-width: 64ch; }
.link-rust { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.link-rust:hover { color: #6E4E08; }
.reveal { opacity: 1 !important; transform: none !important; }
.imgframe { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 5px; overflow: hidden; }
.imgframe img { width: 100%; height: auto; }
.imgframe__cap { border-top: 1px solid var(--line); padding: 0.6rem 0.85rem; font-size: 0.8rem; color: var(--ink-dim); background: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) { .mainnav { gap: 1rem; } .mainnav a { font-size: 0.86rem; } }
@media (max-width: 940px) {
  .mainnav, .head-cta .phone-link { display: none; }
  /* nav is hidden here, so the button group needs the auto margin instead */
  .head-cta { margin-left: auto; }
  .head-cta .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding-block: 2rem 0.5rem; }
  .hero__aside { padding-bottom: 2.25rem; }
  .specbar__grid { grid-template-columns: 1fr 1fr; }
  .specbar__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .specbar__item:nth-child(3) { border-left: 0; }
  .utilbar__facts span:nth-child(n+3) { display: none; }
}
@media (max-width: 560px) {
  .foot__top { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .foot__nav { gap: 1.1rem; }
  .ledger__col + .ledger__col { border-left: 0; border-top: 1px solid var(--line); }
  .specbar__grid { grid-template-columns: 1fr; }
  .specbar__item + .specbar__item { border-left: 0; border-top: 1px solid var(--line); }
  .utilbar__facts { display: none; }
  /* comfortable tap targets and no iOS zoom-on-focus */
  .btn { padding: 0.85rem 1.2rem; }
  .inp { font-size: 16px; padding: 0.85rem 0.9rem; }
  .field-l { font-size: 0.9rem; }
  #mnav a { padding: 0.9rem 0; }
  .section { padding-block: 2.4rem; }
  .pagehead { padding-block: 1.9rem; }
  h1 { font-size: clamp(1.85rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 1.7rem); }
  .wrap { padding-inline: 1.1rem; }
  .formcard__body, .ticket__body { padding: 1.1rem; }
  .card, .path { padding: 1.25rem; }
  .utilbar__row { justify-content: center; min-height: 36px; font-size: 0.8rem; }
}
@media (min-width: 941px) { .burger { display: none; } #mnav { display: none !important; } }
