/* ==========================================================================
   Tigermac — design system
   Type : Barlow Condensed (display) + Barlow (text)
   Color: concrete/white base, charcoal ink, Tigermac yellow, safety orange
   ========================================================================== */

:root {
  /* ink */
  --ink:        #14171a;
  --ink-soft:   #39424e;
  --muted:      #6c757f;
  --muted-light:#9aa2ab;

  /* surface */
  --paper:      #ffffff;
  --concrete:   #f4f5f2;
  --concrete-2: #e9ebe5;
  --steel:      #232b35;
  --steel-2:    #2e3846;

  /* line */
  --line:       #e2e5e0;
  --line-2:     #cfd3cc;
  --line-dark:  #3c4654;

  /* brand */
  --yellow:     #ffd400;
  --amber:      #f5a81c;
  --orange:     #c93c13;   /* carries white text — 5.1:1 */
  --orange-hi:  #e0451c;   /* decorative only */
  --orange-dk:  #a63010;

  /* geometry */
  --wrap: 1240px;
  --r: 2px;

  /* spacing */
  --s1: .5rem;  --s2: 1rem;   --s3: 1.5rem;
  --s4: 2rem;   --s5: 3rem;   --s6: 4rem;   --s7: 6rem;

  --ease: cubic-bezier(.2,.6,.3,1);
  --t: 180ms var(--ease);
}

/* --------------------------------------------------------------- reset */

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Barlow Narrow", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.005em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 var(--s2); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* --------------------------------------------------------------- type bits */

.eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 var(--s2);
  display: flex; align-items: center; gap: .625rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px; background: var(--yellow); flex: none;
}
.eyebrow--light { color: var(--yellow); }
.eyebrow--light::before { background: var(--yellow); }

.sec-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  text-transform: uppercase;
}
.sec-title--light { color: #fff; }

.sec-lede {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: var(--s3);
}

.sub {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: var(--s5) 0 var(--s2);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ink);
  display: inline-block;
}
.detail__prose > .sub:first-child { margin-top: 0; }

.num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .1em;
  color: var(--muted);
  display: inline-block;
  padding-bottom: .25rem;
  border-bottom: 3px solid var(--yellow);
  margin-bottom: var(--s2);
}

/* --------------------------------------------------------------- buttons */

.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  min-height: 46px;
  padding: .6rem 1.4rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2px solid var(--btn-bd);
  border-radius: var(--r);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }

.btn--cta { --btn-bg: var(--orange); --btn-bd: var(--orange); }
.btn--cta:hover { --btn-bg: var(--orange-dk); --btn-bd: var(--orange-dk); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn--ghost:hover { --btn-bd: var(--ink); --btn-bg: var(--ink); --btn-fg: #fff; }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.4); }
.btn--ghost-light:hover { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }

.btn--lg { min-height: 54px; padding: .75rem 1.9rem; font-size: 1.125rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; font-size: 1.0625rem;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}
.link-arrow svg {
  width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--t);
}
.link-arrow:hover svg, a:hover .link-arrow svg { transform: translateX(5px); }
.link-arrow--sm { font-size: .9375rem; }

/* --------------------------------------------------------------- utility bar */

.utility {
  background: var(--steel);
  color: #c3cad3;
  font-size: .8125rem;
}
.utility__in {
  display: flex; align-items: center; gap: .875rem;
  min-height: 42px; flex-wrap: wrap;
}
.utility__item { color: inherit; text-decoration: none; }
/* Inline bar links still need a 24px hit area (WCAG 2.5.8). */
a.utility__item { display: inline-flex; align-items: center; min-height: 26px; }
a.utility__item:hover { color: var(--yellow); }
.utility__sep { width: 1px; height: 14px; background: var(--line-dark); }
.utility__phone { color: #fff; font-weight: 600; }

/* --------------------------------------------------------------- header */

.head {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.head::after {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0 22%, var(--amber) 22% 34%, var(--line) 34%);
}
.head__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s3); min-height: 82px;
}
.brand { display: inline-flex; flex: none; }
.brand img { width: 176px; height: auto; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav > a {
  position: relative;
  padding: .65rem .85rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; font-size: 1.0625rem;
  letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  border-radius: var(--r);
  transition: color var(--t);
}
.nav > a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .35rem;
  height: 3px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav > a:hover::after, .nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav > a[aria-current="page"] { color: var(--ink); }
.nav__cta { margin-left: .75rem; }
.nav__cta::after { display: none; }

.burger {
  display: none;
  width: 46px; height: 46px;
  background: none; border: 2px solid var(--line-2); border-radius: var(--r);
  cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); transition: transform var(--t), opacity var(--t); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- hero */

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  background: var(--concrete);
  border-bottom: 1px solid var(--line);
}
.hero__text { display: flex; align-items: center; padding: clamp(3rem, 6vw, 6rem) 0; }
.hero__text-in {
  max-width: 620px;
  margin-left: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  width: 100%;
}
.hero__title {
  font-size: clamp(2.75rem, 6.2vw, 5rem);
  text-transform: uppercase;
  margin-bottom: var(--s3);
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em;
  height: .12em; background: var(--yellow); z-index: -1;
}
.hero__lede { font-size: 1.125rem; color: var(--ink-soft); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--s4); }

.hero__media { position: relative; min-height: 460px; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__flash {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--concrete) 0 3%, transparent 3.6%);
  pointer-events: none;
}
.hero__media::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 46%; height: 6px; background: var(--yellow);
}

/* --------------------------------------------------------------- stats */

.stats { background: var(--paper); border-bottom: 1px solid var(--line); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: var(--s4) var(--s3) var(--s4) 0;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat + .stat { padding-left: var(--s4); }
.stat__n {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1;
  color: var(--ink);
}
.stat__n i { font-style: normal; color: var(--orange); font-size: .55em; margin-left: .05em; }
.stat__l { display: block; margin-top: .5rem; font-size: .9375rem; color: var(--muted); max-width: 24ch; }

/* --------------------------------------------------------------- sections */

.section { padding: clamp(3.5rem, 7vw, var(--s7)) 0; }
.section--concrete { background: var(--concrete); }
.section--steel { background: var(--steel); color: #dbe1e8; }
.section--steel p { color: #b3bcc6; }

.sec-head { margin-bottom: var(--s5); max-width: 70ch; }
.sec-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s3); max-width: none;
}
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------- categories */

.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.cat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.cat:hover { border-color: var(--line-2); box-shadow: 0 18px 40px -24px rgba(20,23,26,.35); transform: translateY(-3px); }
.cat__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--concrete-2); }
.cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.cat:hover .cat__media img { transform: scale(1.04); }
.cat__body { padding: var(--s4); display: flex; flex-direction: column; flex: 1; }
.cat__title { font-size: clamp(1.6rem, 2.6vw, 2.125rem); text-transform: uppercase; }
.cat__title a { text-decoration: none; }
.cat__title a::after { content: ""; position: absolute; inset: 0; }
.cat { position: relative; }
.cat__tag { color: var(--ink-soft); margin: .75rem 0 var(--s3); flex: 1; }

/* --------------------------------------------------------------- product cards */

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }
.prod-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 0; height: 4px;
  background: var(--yellow); z-index: 2;
  transition: width 260ms var(--ease);
}
.card:hover { border-color: var(--line-2); box-shadow: 0 18px 40px -26px rgba(20,23,26,.4); transform: translateY(-3px); }
.card:hover::before { width: 100%; }

.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--concrete-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }

.card__body { padding: var(--s3); display: flex; flex-direction: column; flex: 1; }
.card__cat {
  font-family: "Barlow Condensed", sans-serif;
  font-size: .8125rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .4rem;
}
.card__title { font-size: 1.375rem; text-transform: uppercase; }
.card__title a { text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card__sum { font-size: .9375rem; color: var(--ink-soft); margin: .6rem 0 var(--s3); flex: 1; }

/* nameplate — mirrors the plate riveted on the real machines */
.plate {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: .25rem .6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; font-size: .9375rem; letter-spacing: .12em;
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(0,0,0,.18);
}
.plate__mark {
  width: 12px; height: 13px; flex: none;
  background: var(--yellow);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
}
.plate--lg { left: 20px; bottom: 20px; font-size: 1.125rem; padding: .35rem .8rem; }

/* --------------------------------------------------------------- split */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%; border-radius: var(--r);
  border: 1px solid var(--line);
}
.split__media::after {
  content: ""; position: absolute; left: -12px; bottom: -12px;
  width: 96px; height: 96px;
  border-left: 6px solid var(--yellow); border-bottom: 6px solid var(--yellow);
}
.split__body > p { color: var(--ink-soft); }
.split__body .btn { margin-top: var(--s2); }

.ticks { list-style: none; padding: 0; margin: var(--s3) 0; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; color: var(--ink-soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 13px; height: 8px;
  border-left: 3px solid var(--orange); border-bottom: 3px solid var(--orange);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------- steps */

.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4);
}
.step { padding-top: var(--s3); border-top: 2px solid var(--line-dark); }
.step__n {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; font-size: 2.25rem; line-height: 1;
  color: var(--yellow); display: block; margin-bottom: .6rem;
}
.step__t { font-size: 1.375rem; text-transform: uppercase; color: #fff; margin-bottom: .5rem; }
.step__d { font-size: .9375rem; margin: 0; }

/* --------------------------------------------------------------- pillars */

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: var(--s4);
}
.pillar__t { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .6rem; }
.pillar p { color: var(--ink-soft); font-size: .9375rem; margin: 0; }

/* --------------------------------------------------------------- page head */

.phead {
  background: var(--concrete);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.phead::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 180px; height: 4px; background: var(--yellow);
}
.phead--tight { padding-bottom: var(--s3); }
.phead--tight::after { display: none; }
.phead__title { font-size: clamp(2.25rem, 5vw, 3.75rem); text-transform: uppercase; margin-top: var(--s3); }
.phead__lede { font-size: 1.0625rem; color: var(--ink-soft); max-width: 62ch; margin-top: var(--s3); }

.crumbs {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  font-size: .875rem; color: var(--muted);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--orange); text-decoration: underline; }
.crumbs span[aria-hidden] { color: var(--line-2); }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* --------------------------------------------------------------- filters */

.filters { display: flex; flex-wrap: wrap; gap: .625rem; margin-bottom: var(--s4); }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 44px; padding: .5rem 1.1rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft);
  background: var(--paper);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip__n { font-size: .8125rem; color: var(--muted); }
.chip.is-on .chip__n { color: var(--yellow); }

.cat-intro { max-width: 78ch; color: var(--ink-soft); margin-bottom: var(--s4); font-size: 1.0625rem; }
.empty { color: var(--muted); }

/* --------------------------------------------------------------- detail */

.detail { padding: var(--s5) 0 0; }
.detail__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.detail__media { position: relative; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.detail__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.detail__title { font-size: clamp(2.25rem, 4.4vw, 3.25rem); text-transform: uppercase; margin-bottom: var(--s2); }
.detail__sum { font-size: 1.0625rem; color: var(--ink-soft); }

.keyspec { margin: var(--s4) 0; border-top: 1px solid var(--line); }
.keyspec__row {
  display: flex; justify-content: space-between; gap: var(--s2);
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.keyspec dt { color: var(--muted); font-size: .9375rem; }
.keyspec dd {
  margin: 0; font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; font-size: 1.125rem; letter-spacing: .02em; text-align: right;
}
.detail__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.detail__cols { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.detail__prose p { color: var(--ink-soft); }

.specsheet { border: 1px solid var(--line); border-radius: var(--r); background: var(--concrete); overflow: hidden; }
.specsheet__h {
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: .04em;
  padding: var(--s3); margin: 0;
  background: var(--ink); color: #fff;
  border-bottom: 4px solid var(--yellow);
}
.specsheet__t { width: 100%; border-collapse: collapse; }
.specsheet__t th, .specsheet__t td { padding: .7rem var(--s3); text-align: left; font-size: .9375rem; }
.specsheet__t th { font-weight: 500; color: var(--muted); width: 52%; }
.specsheet__t td {
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 1.0625rem;
}
.specsheet__t tr + tr { border-top: 1px solid var(--line); }
.specsheet__t tr:nth-child(odd) { background: rgba(255,255,255,.6); }
.specsheet__note { padding: var(--s3); margin: 0; font-size: .8125rem; color: var(--muted); border-top: 1px solid var(--line); }

.askbox {
  margin-top: var(--s3);
  border: 2px solid var(--ink);
  border-radius: var(--r);
  padding: var(--s3);
  background: var(--paper);
}
.askbox__h { font-size: 1.375rem; text-transform: uppercase; margin-bottom: .5rem; }
.askbox p { font-size: .9375rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- contact */

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact__info { display: grid; gap: var(--s2); }

.infocard {
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--r);
  background: var(--concrete);
  padding: var(--s3);
}
.infocard__h {
  font-size: .875rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .5rem; font-weight: 600;
}
.infocard__a { font-style: normal; color: var(--ink-soft); }
.infocard__big {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600; font-size: 1.375rem; letter-spacing: .01em;
  color: var(--ink); text-decoration: none; word-break: break-word;
}
.infocard__big:hover { color: var(--orange); }

.contact__form {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper);
  scroll-margin-top: 120px;
}
.form__h { font-size: 1.75rem; text-transform: uppercase; margin-bottom: var(--s3); }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s3); }
.field { margin-bottom: var(--s3); }
.field label {
  display: block; margin-bottom: .35rem;
  font-weight: 600; font-size: .875rem;
  letter-spacing: .04em; color: var(--ink);
}
.req { color: var(--orange); }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 46px;
  padding: .6rem .8rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  background: var(--paper);
  font: inherit; color: var(--ink);
  transition: border-color var(--t), box-shadow var(--t);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(201,60,19,.18);
}
.field [aria-invalid="true"] { border-color: var(--orange); }

.hint { font-size: .8125rem; color: var(--muted); margin: .35rem 0 0; }
.err { font-size: .8125rem; color: var(--orange-dk); font-weight: 600; margin: .35rem 0 0; }

.hp { position: absolute; left: -9999px; }

.alert { border-radius: var(--r); padding: var(--s3); margin-bottom: var(--s3); }
.alert h2 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: .4rem; }
.alert p { margin: 0; }
.alert--ok { background: #eef7ee; border: 1px solid #bcd9bc; border-left: 4px solid #2e7d32; }
.alert--bad { background: #fdeeea; border: 1px solid #f0c4b8; border-left: 4px solid var(--orange); }

.hours { display: grid; grid-template-columns: auto auto; gap: .3rem var(--s2); margin: 0; font-size: .9375rem; }
.hours dt { color: inherit; opacity: .8; }
.hours dd { margin: 0; text-align: right; font-weight: 600; }
.hours--light dt { color: var(--muted); opacity: 1; }
.hours--light dd { color: var(--ink); }

.about-addr { font-style: normal; color: var(--ink-soft); margin: var(--s3) 0; }
.about-addr a { color: var(--orange); }

/* --------------------------------------------------------------- cta band */

.cta { background: var(--orange); color: #fff; }
.cta__in {
  display: grid; grid-template-columns: 1.4fr .6fr;
  gap: var(--s4); align-items: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.cta .eyebrow--light { color: #fff; }
.cta .eyebrow--light::before { background: var(--yellow); }
.cta__title { font-size: clamp(1.85rem, 3.6vw, 2.75rem); text-transform: uppercase; color: #fff; }
.cta__text { margin-top: var(--s2); color: rgba(255,255,255,.9); max-width: 58ch; }
.cta__actions { display: flex; flex-direction: column; gap: .75rem; }
.cta .btn--cta { --btn-bg: var(--ink); --btn-bd: var(--ink); }
.cta .btn--cta:hover { --btn-bg: #000; --btn-bd: #000; }

/* --------------------------------------------------------------- footer */

.foot { background: var(--steel); color: #aeb7c2; padding-top: clamp(3rem, 6vw, 4.5rem); }
.foot__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--s4);
  padding-bottom: var(--s5);
}
.foot__logo { background: #fff; padding: .6rem .8rem; border-radius: var(--r); width: 164px; }
.foot__blurb { margin-top: var(--s3); font-size: .9375rem; max-width: 40ch; }
.foot__h {
  font-size: 1.0625rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin-bottom: var(--s2);
  padding-bottom: .5rem; border-bottom: 2px solid var(--line-dark);
}
.foot__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .25rem; font-size: .9375rem; }
/* 24px minimum hit area on stacked link lists (WCAG 2.5.8). */
.foot__list a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; min-height: 26px; }
.foot__list a:hover { color: var(--yellow); }
.foot__addr { font-style: normal; font-size: .9375rem; }
.foot__addr a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; min-height: 26px; }
.foot__addr a:hover { color: var(--yellow); }
.foot .hours { margin-top: var(--s3); font-size: .875rem; }
.foot .hours dd { color: #fff; }

.foot__bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2);
  border-top: 1px solid var(--line-dark);
  padding-top: var(--s3); padding-bottom: var(--s3);
  font-size: .8125rem;
}
.foot__bar p { margin: 0; }
.foot__made { color: var(--muted-light); }

/* --------------------------------------------------------------- responsive */

@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .head__in { min-height: 68px; }
  .burger { display: flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px -20px rgba(0,0,0,.3);
    padding: var(--s2);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav > a { padding: .9rem .75rem; border-bottom: 1px solid var(--line); }
  .nav > a::after { display: none; }
  .nav > a[aria-current="page"] { color: var(--orange); }
  .nav__cta { margin: var(--s2) 0 0; border-bottom: 0; }

  .hero { grid-template-columns: 1fr; }
  .hero__text-in { margin-left: 0; max-width: none; }
  .hero__media { min-height: 320px; order: -1; }
  .hero__flash { display: none; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: var(--s3) var(--s3) var(--s3) 0; }
  .stat + .stat { padding-left: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); padding-right: var(--s3); }
  .stat:nth-child(even) { padding-left: var(--s3); }

  .cat-grid { grid-template-columns: 1fr; }
  .split, .detail__grid, .detail__cols, .contact, .cta__in { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .pillars { grid-template-columns: 1fr; }
  .sec-head--row { flex-direction: column; align-items: flex-start; }
  .cta__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .utility__addr, .utility__sep { display: none; }
  .prod-grid, .prod-grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(odd), .stat:nth-child(even) { border-right: 0; padding-inline: 0; }
  .grid2 { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .detail__actions .btn, .cta__actions .btn { width: 100%; }
  .brand img { width: 148px; }
}

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