/* ============================================================
   Urethane Manufacturers of Australia (UMA)
   Design system — industrial / premium B2B
   ============================================================ */

:root {
  /* Brand */
  --ink:      #0b1a23;
  --ink-2:    #10242f;
  --ink-3:    #17323f;
  --amber:    #f3901a;
  --amber-d:  #d9760a;
  --amber-l:  #ffb454;
  /* Text/icon amber. The brand orange only clears 2.3:1 on white, so anything that
     is read rather than filled uses these instead. 4.9:1 and 6.2:1 on white. */
  --amber-ink:   #a75f09;
  --amber-ink-h: #8a4e05;
  --steel:    #5c6f7a;

  /* Dark chrome — header bands and footer. Built around the brand row's #392817.
     --amber-ink is tuned for light surfaces and is far too dark here, so anything
     accented on these bands uses --hdr-accent instead. */
  --hdr-bg:      #241910;   /* utility bar, nav row, footer */
  --hdr-bg-3:    #2f2113;   /* dropdown panel, mobile drawer */
  --hdr-line:    rgba(255,255,255,.13);
  --hdr-text:    #c8bcaf;   /* 9.2:1 on --hdr-bg */
  --hdr-text-hi: #f2ece6;   /* 14.7:1 */
  --hdr-dim:     #9a8d80;   /* 5.3:1 on --hdr-bg */
  --hdr-accent:  #ffb454;   /* 9.8:1 */
  /* Logo lockup colours, set by the client. */
  --brand-blue: #2681e5;

  /* Neutrals */
  --bg:        #ffffff;
  --bg-soft:   #f4f7f9;
  --bg-soft-2: #eaeef1;
  --line:      #e2e8ec;
  --line-2:    #d4dde2;
  --text:      #15262f;
  --text-muted:#566771;
  --white:     #ffffff;

  /* Type */
  --font-head: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-strap: Georgia, "Times New Roman", Times, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(11,26,35,.06), 0 2px 6px rgba(11,26,35,.05);
  --sh:    0 6px 18px rgba(11,26,35,.08), 0 2px 6px rgba(11,26,35,.05);
  --sh-lg: 0 24px 60px rgba(11,26,35,.16), 0 8px 20px rgba(11,26,35,.08);

  /* Layout */
  --container: 1200px;
  --header-h: 104px;   /* brand row: mark + company name */
  --nav-h:    58px;    /* nav row, sits under the brand row */
  --utility-h: 46px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--amber-ink); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--amber-ink-h); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 8vw, 116px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--bg-soft-2); color: var(--text); border-block: 1px solid var(--line); }
.section--ink h2, .section--ink h3 { color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--amber-ink);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); border-radius: 2px; }
.section--ink .eyebrow { color: var(--amber-ink); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.lead { font-size: 1.13rem; color: var(--text-muted); margin-top: 18px; }
.section--ink .lead { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--amber); color: #22160a; box-shadow: 0 8px 20px rgba(243,144,26,.32); }
/* Compact variant, for the utility bar. The full-size shadow is far too heavy at
   this scale, so it is dialled right back. */
.btn--sm { padding: 6px 18px; font-size: .78rem; border-width: 1px; }
.btn--sm.btn--primary { box-shadow: 0 2px 8px rgba(243,144,26,.3); }
.btn--primary:hover { background: var(--amber-l); color: #22160a; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(243,144,26,.42); }
.btn--ghost { background: #fff; border-color: var(--line-2); color: var(--ink); box-shadow: var(--sh-sm); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-ink); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--outline:hover { border-color: var(--amber); color: var(--amber-ink); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--hdr-bg);
  border-bottom: 1px solid rgba(0,0,0,.2);
}
/* NOTE: no backdrop-filter/filter/transform on the header — those would make it the
   containing block for the fixed mobile drawer (.primary-nav), collapsing its height. */
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }

/* Utility bar — slim strip above the brand row */
.utility-bar { background: var(--hdr-bg); border-bottom: 1px solid var(--hdr-line); color: var(--hdr-text); font-size: .82rem; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--utility-h); }
.utility-bar__tag { display: inline-flex; align-items: center; gap: 8px; letter-spacing: .02em; }
.utility-bar__tag svg { width: 16px; height: 16px; color: var(--hdr-accent); flex-shrink: 0; }
.utility-bar__links { display: flex; align-items: center; gap: 26px; }
/* The CTA is the last item, so it needs a little more air than the text links. */
.utility-bar__links .btn { margin-left: 6px; }
.utility-bar__links a:not(.btn) { display: inline-flex; align-items: center; gap: 7px; color: var(--hdr-text); }
.utility-bar__links a:not(.btn):hover { color: var(--hdr-accent); }
.utility-bar__links svg { width: 15px; height: 15px; color: var(--hdr-accent); flex-shrink: 0; }

/* Brand row. The brochure's swoosh sits behind its title, but at this row's much
   wider aspect the artwork's dark streak lands straight across the x-height and
   wrecks legibility — so only its red base rule is kept. */
.brand-row { background: #ffffff; border-bottom: 8px solid #e02718; }

/* Logo lockup: the mark, the company name in the brochure's outlined heavy italic,
   and the strapline in gold italic serif beneath it. */
.logo { display: flex; align-items: center; gap: 18px; min-width: 0; }
.logo__mark { width: 72px; height: auto; flex-shrink: 0; }
.logo__lockup { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.logo__name {
  /* No font-family: inherits the body face. ("auto" is not a valid font-family
     value — the browser drops the declaration and inherits, so this is the same
     result, written so it validates.) */
  font-weight: 900; font-style: italic; font-stretch: 88%;
  text-transform: uppercase;
  font-size: clamp(.9rem, 2.46vw, 2.06rem);
  line-height: 1.02; letter-spacing: -.012em;
  color: var(--amber);
  text-shadow: .05em .045em 0 rgb(27 28 29 / 10%);
}
.logo__tagline {
  font-family: var(--font-strap);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  font-size: clamp(.6rem, 1.02vw, .90rem);
  line-height: 1.28; letter-spacing: .008em; color: var(--brand-blue);
  /* The lockup is a flex column sized by its widest child (the name), so aligning
     right lands the strapline flush with the end of the company name above it. */
  text-align: right;
}

/* Nav sits on its own row beneath the brand row. */
.nav-row { background: var(--hdr-bg); }
.nav-row__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--nav-h); }

/* Primary nav */
.primary-nav { min-width: 0; }
.nav-list { display: flex; align-items: center; gap: 4px; margin-left: -15px; }
.nav-list > li > a,
.nav-list > li > .nav-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 15px; border-radius: 10px;
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--hdr-text-hi); background: none; border: none;
}
.nav-list > li > a:hover,
.nav-list > li > .nav-trigger:hover,
.nav-list > li.is-active > a { color: var(--hdr-accent); background: rgba(255,255,255,.08); }
.nav-trigger svg { width: 15px; height: 15px; transition: transform .2s ease; opacity: .7; }

/* Mega menu */
.has-mega { position: relative; }
.mega {
  /* Anchored to the trigger's left edge, not centred on it. Centring worked when the
     nav was right-aligned in a single-row header; now that the nav has its own
     left-aligned row, a centred panel hangs off the left of the viewport. */
  position: absolute; top: calc(100% + 14px); left: 0; transform: translateY(8px);
  width: min(620px, 92vw);
  background: var(--hdr-bg-3); border: 1px solid var(--hdr-line); border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.45); padding: 22px 20px;
  display: grid; grid-template-columns: 1fr; gap: 10px 22px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
/* 10 products read better as two columns than one tall list */
.mega__col ul { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-mega:hover .mega,
.has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.has-mega:hover .nav-trigger svg { transform: rotate(180deg); }
.mega__col h4 { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--hdr-dim); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--hdr-line); }
.mega__col h4 a { color: inherit; }
.mega__col h4 a:hover { color: var(--hdr-accent); }
.mega__col li a {
  display: block; padding: 7px 10px; border-radius: 8px;
  color: var(--hdr-text); font-size: .94rem; font-weight: 400;
}
.mega__col li a:hover { background: rgba(255,255,255,.07); color: var(--hdr-accent); padding-left: 14px; }

/* Header contact + burger */

.nav-cta { display: none; }
/* Sits in the brand row, which is white — so this is styled for a light surface,
   unlike the rest of the header chrome. */
.burger { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line-2); background: #fff; position: relative; }
.burger span, .burger span::before, .burger span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s ease; transform: translate(-50%,-50%); }
/* offset the outer bars symmetrically about the middle bar's centre (not its top edge) */
.burger span::before { transform: translate(-50%,-50%) translateY(-6px); }
.burger span::after  { transform: translate(-50%,-50%) translateY(6px); }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: translate(-50%,-50%) rotate(45deg); }
body.nav-open .burger span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Hero (home) ---------- */
.hero { position: relative; color: var(--text); overflow: hidden; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
/* Light scrim: the photo reads as a soft wash behind the copy rather than a dark backdrop.
   Heavier on the left where the text sits, lighter on the right so the image still shows. */
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.88) 42%, rgba(244,247,249,.66) 100%); }
/* padding-block only — the .container class supplies the horizontal (side) padding.
   Using the `padding` shorthand here would zero out the container's side padding
   and stick the text to the screen edge on mobile. */
.hero__inner { position: relative; z-index: 1; padding-block: clamp(80px, 11vw, 150px); max-width: 760px; }
.hero h1 { color: var(--ink); }
.hero .lead { color: var(--text-muted); max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 16px 8px 8px; font-size: .85rem; font-weight: 500; color: var(--text-muted); margin-bottom: 26px; box-shadow: var(--sh-sm); }
.hero__badge b { background: var(--amber); color: #22160a; padding: 3px 10px; border-radius: 999px; font-family: var(--font-head); font-size: .78rem; }

/* Trust strip */
.trust { border-top: 1px solid var(--line); position: relative; z-index: 1; background: rgba(255,255,255,.72); }
.trust .container { display: flex; flex-wrap: wrap; gap: 14px 44px; padding-block: 26px; }
.trust__item { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: .93rem; }
.trust__item svg { width: 22px; height: 22px; color: var(--amber-ink); flex-shrink: 0; }
.trust__item b { color: var(--ink); font-family: var(--font-head); }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; color: var(--text); background: var(--bg-soft); overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.95), rgba(244,247,249,.78)); }
/* No max-width here: this element is also a .container, and a narrower max-width would
   re-centre it and pull the breadcrumb out of line with the nav above and body below. */
.page-hero__inner { position: relative; z-index: 1; padding-block: 13px 15px; }
.page-hero h1 { color: var(--ink); font-size: clamp(1.5rem, 2.6vw, 2rem); }
.page-hero .lead { color: var(--text-muted); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; margin-bottom: 6px; color: var(--steel); }
/* The page lead lives here now, on white, so it doesn't inflate the tinted band. */
.page-intro { padding-top: clamp(36px, 5vw, 58px); }
.page-intro .lead { max-width: 820px; margin-top: 0; font-size: 1.16rem; }
.page-intro + .section { padding-top: clamp(30px, 4vw, 48px); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--amber-ink); }
.breadcrumb span { color: var(--amber-ink); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Feature card */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 28px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
}
.feature::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--amber), var(--amber-l)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature__icon { width: 54px; height: 54px; border-radius: 14px; background: var(--bg-soft); color: var(--amber-ink); display: grid; place-items: center; margin-bottom: 20px; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--text-muted); font-size: .97rem; }

/* Product card */
.card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag { position: absolute; top: 14px; left: 14px; background: rgba(11,26,35,.85); color: #fff; font-family: var(--font-head); font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card__body p { color: var(--text-muted); font-size: .94rem; margin-bottom: 18px; }
.card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--amber-ink); }
.card__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--sh); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media .badge-float {
  position: absolute; bottom: -22px; right: -14px; background: var(--ink); color: #fff;
  border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-lg); text-align: center; max-width: 180px;
}
.split__media .badge-float strong { font-family: var(--font-head); font-size: 2rem; color: var(--amber); display: block; line-height: 1; }
.split__media .badge-float span { font-size: .8rem; color: #b9c6cd; }
.prose > * + * { margin-top: 16px; }
.prose p { color: var(--text-muted); }
.prose h3 { margin-top: 26px; }

/* Check list */
.checklist { display: grid; gap: 14px; margin-top: 22px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--text); font-size: .98rem; }
.checklist svg { width: 22px; height: 22px; color: var(--amber-ink); flex-shrink: 0; margin-top: 2px; }
.checklist b { font-family: var(--font-head); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 12px; min-width: 0; }
.stat strong { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--amber-ink); display: block; line-height: 1; letter-spacing: -.02em; }
.stat span { display: block; margin-top: 10px; color: var(--text-muted); font-size: .9rem; letter-spacing: .02em; }


/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, #fff6ea, #ffeeda); border: 1px solid #f6dcb8; color: var(--text); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 68px); }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(243,144,26,.18), transparent 70%); }
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: var(--ink); max-width: 620px; }
.cta-band p { color: var(--text-muted); margin-top: 10px; max-width: 560px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; font-family: var(--font-head); font-weight: 500; font-size: .92rem; color: var(--ink); transition: .2s ease; }
.chip:hover, .chip.is-active { border-color: var(--amber); background: var(--amber); color: #22160a; }
.chip.is-active { box-shadow: 0 6px 16px rgba(243,144,26,.28); }


/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r); background: #fff; transition: .2s ease; }
.info-card + .info-card { margin-top: 16px; }
.info-card:hover { box-shadow: var(--sh); transform: translateX(4px); }
.info-card__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft); color: var(--amber-ink); display: grid; place-items: center; flex-shrink: 0; }
.info-card__icon svg { width: 24px; height: 24px; }
.info-card h4 { font-family: var(--font-head); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.info-card a:hover { color: var(--amber-ink); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--sh); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--amber-ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  font: inherit; font-size: .98rem; color: var(--text); background: var(--bg-soft); transition: .18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--amber); background: #fff; box-shadow: 0 0 0 4px rgba(243,144,26,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .84rem; color: var(--text-muted); margin-top: 6px; }
.form-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--r-sm); font-size: .92rem; display: none; }
.form-status.ok { display: block; background: #e8f6ec; color: #1c7a3e; border: 1px solid #b6e2c2; }

.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); margin-top: 26px; }
.map-embed img { width: 100%; }

/* ---------- Simple content page ---------- */
.content-media img { border-radius: var(--r-lg); box-shadow: var(--sh); width: 100%; }
.oem-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.oem-logos span { padding: 8px 16px; border: 1px solid var(--line-2); border-radius: 999px; font-family: var(--font-head); font-weight: 500; font-size: .85rem; color: var(--steel); background: var(--bg-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--hdr-bg); color: var(--hdr-text); padding-top: 72px; font-size: .93rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr .8fr 1.2fr; gap: 40px 32px; padding-bottom: 52px; border-bottom: 1px solid var(--hdr-line); }
.logo--footer { gap: 13px; }
.logo--footer .logo__mark { width: 48px; }
.logo--footer .logo__name { font-size: 1.04rem; line-height: 1.12; }
/* second products column lines its items up with the first, minus a repeated heading */
.footer-col h4.is-spacer { visibility: hidden; }
.footer-brand p { margin-top: 18px; max-width: 320px; color: var(--hdr-text); }
.footer-brand .acn { margin-top: 14px; font-size: .82rem; color: var(--hdr-dim); }
.footer-col h4 { font-family: var(--font-head); color: var(--hdr-text-hi); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--hdr-text); }
.footer-col a:hover { color: var(--hdr-accent); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 15px; align-items: flex-start; }
.footer-contact svg { width: 19px; height: 19px; color: var(--hdr-accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact a, .footer-contact span { color: var(--hdr-text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 26px 0; color: var(--hdr-dim); font-size: .84rem; }
.footer-bottom a { color: var(--hdr-text); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-col h4.is-spacer { display: none; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}
@media (max-width: 900px) {
  :root { --header-h: 78px; }
  /* Utility bar is desktop-only — its content lives in the drawer and footer on mobile,
     and keeping it would break the fixed drawer's top offset. */
  .utility-bar { display: none; }
  /* The nav row collapses to nothing: .primary-nav is its only child and becomes a
     fixed drawer, i.e. out of flow, leaving nothing to give the row height.
     It must keep no transform/filter of its own or the fixed drawer would anchor to it. */
  .nav-row { border-top: none; background: none; }
  .nav-row__inner { display: block; min-height: 0; }

  .logo { gap: 12px; }
  .logo__mark { width: 50px; }
  .logo__name { font-size: clamp(.78rem, 3.05vw, 1.05rem); }
  .nav-list { margin-left: 0; }
  .burger { display: block; flex-shrink: 0; }
  .nav-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--hdr-line); }
  /* .btn--outline is styled for light surfaces; the drawer is dark. */
  .nav-cta .btn--outline { border-color: var(--hdr-line); color: var(--hdr-text-hi); }
  .nav-cta .btn--outline:hover { border-color: var(--hdr-accent); color: var(--hdr-accent); }
  .nav-cta .btn { width: 100%; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 auto; width: min(360px, 86vw);
    background: var(--hdr-bg-3); border-left: 1px solid var(--hdr-line); box-shadow: var(--sh-lg);
    transform: translateX(105%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; padding: 20px; margin: 0;
    z-index: 101; /* must sit ABOVE .nav-backdrop (99), or the backdrop intercepts every tap */
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a, .nav-list > li > .nav-trigger { width: 100%; justify-content: space-between; padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav-backdrop { position: fixed; inset: var(--header-h) 0 0 0; background: rgba(9,20,27,.4); opacity: 0; visibility: hidden; transition: .3s; z-index: 99; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  /* mobile mega -> accordion */
  .mega {
    position: static; transform: none; width: 100%; box-shadow: none; border: none;
    grid-template-columns: 1fr; gap: 0; padding: 4px 8px 8px; opacity: 1; visibility: visible; pointer-events: auto;
    display: none;
  }
  .has-mega.open .mega { display: block; }
  .has-mega:hover .mega { transform: none; }
  .mega__col { padding: 6px 0; }
  .mega__col h4 { border: none; margin-bottom: 4px; }
  .mega__col ul { grid-template-columns: 1fr; }
  .has-mega .nav-trigger svg { transition: transform .2s; }
  .has-mega.open .nav-trigger svg { transform: rotate(180deg); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  /* Below this the strapline wraps and pushes the brand row too tall. */
  .logo__tagline { display: none; }

  /* 1fr tracks won't shrink past min-content, and the stat numerals are ~200px wide,
     so two columns overflow the viewport on phones. */
  .stats { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media .badge-float { right: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  /* .logo__text is gone — the lockup is the mark plus .logo__name now. */
  .logo { gap: 10px; }
  .logo__mark { width: 44px; }
}
