/* ==========================================================================
   Frametec - shared stylesheet
   Steel frames and roof trusses, Perth WA. Since 1996.
   Token system lives in brand-spec.md. One accent, one radius, hairlines.
   ========================================================================== */

:root {
  /* brand, locked from assets/logos/frametec-logo.svg */
  --navy: oklch(0.42 0.088 268);        /* #37487C */
  --navy-deep: oklch(0.30 0.083 258);   /* #002E5B */
  --ink: oklch(0.22 0.03 262);
  --sky: oklch(0.75 0.095 235);         /* #74B9E8 */

  /* core six */
  --bg: oklch(0.972 0.004 250);
  --surface: oklch(1 0 0);
  --surface-2: oklch(0.955 0.006 250);
  --fg: oklch(0.28 0.035 264);
  --muted: oklch(0.45 0.02 260);
  --border: oklch(0.905 0.008 255);

  /* derived */
  --border-2: oklch(0.84 0.012 255);
  --accent: var(--sky);
  --accent-ink: oklch(0.47 0.10 240);
  --on-dark-muted: oklch(0.83 0.015 250);
  --on-dark-link: oklch(0.79 0.09 236);
  --on-dark-border: oklch(1 0 0 / 0.16);
  --success: oklch(0.48 0.12 152);
  --danger: oklch(0.48 0.19 27);
  --warn: oklch(0.45 0.12 62);
  --warn-on-dark: oklch(0.84 0.1 78);

  --radius: 3px;
  --container: 1200px;
  --shadow: 0 1px 2px oklch(0.3 0.05 265 / 0.06), 0 18px 40px -26px oklch(0.3 0.05 265 / 0.45);

  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
svg { display: block; }
figure { margin: 0; }
a { color: var(--accent-ink); text-underline-offset: 3px; }
a:hover { color: var(--navy); }

:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 2px; }
.on-dark :focus-visible { outline-color: var(--sky); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--fg);
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.2vw, 64px); line-height: 1.03; }
h2 { font-size: clamp(29px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 1.9vw, 25px); line-height: 1.15; }
h4 { font-size: 18px; letter-spacing: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
li + li { margin-top: 0.4em; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }

/* ---------- layout ------------------------------------------------------- */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.container--wide { max-width: 1360px; }

.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--tint { background: var(--surface-2); }
.section--white { background: var(--surface); }
.section--line { border-top: 1px solid var(--border); }

.on-dark { background: var(--navy-deep); color: var(--on-dark-muted); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark a { color: var(--on-dark-link); }
.on-dark a:hover { color: #fff; }
.on-dark .tag, .quote--dark .tag { color: var(--warn-on-dark); }
.on-dark .lede, .on-dark .muted { color: var(--on-dark-muted); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head--wide { max-width: 900px; }
.section-head p { color: var(--muted); font-size: 18px; margin-bottom: 0; }
.on-dark .section-head p { color: var(--on-dark-muted); }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split--top { align-items: start; }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--sidebar { grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.grid--projects { grid-template-columns: 1.25fr 1fr; gap: 28px; }
.grid--stack { gap: 28px; }
.grid--gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 28px; }

.stack > * + * { margin-top: 20px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- type helpers ------------------------------------------------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.on-dark .eyebrow { color: var(--on-dark-link); }

.lede { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 58ch; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-size: 0.86em; letter-spacing: 0.01em; }
.small { font-size: 14px; line-height: 1.55; }
.measure { max-width: 65ch; }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warn);
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 2px 6px;
  white-space: normal;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--accent-ink);
}
.arrow-link::after { content: "\2192"; transition: transform 0.15s ease; }
.arrow-link:hover::after { transform: translateX(3px); }
.on-dark .arrow-link { color: var(--on-dark-link); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: oklch(0.34 0.085 268); color: #fff; }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--fg); color: var(--fg); }
.btn--white { background: #fff; color: var(--navy-deep); }
.btn--white:hover { background: oklch(0.93 0.02 240); color: var(--navy-deep); }
.btn--outline-light { background: transparent; color: #fff; border-color: var(--on-dark-border); }
.btn--outline-light:hover { background: oklch(1 0 0 / 0.1); border-color: #fff; color: #fff; }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: 0 16px; font-size: 14px; }

/* Dark sections paint every anchor with the on-dark link colour, which beat the
   button variant colours. These rules carry two classes so they outrank
   `.on-dark a`, and the visited state is pinned to the same colour. */
.btn, .btn:visited, .btn:hover, .btn:focus, .btn:active { text-decoration: none; }
.on-dark .btn--white,
.on-dark .btn--white:visited,
.on-dark .btn--white:hover,
.on-dark .btn--white:focus,
.on-dark .btn--white:focus-visible { color: var(--navy-deep); }
.on-dark .btn--outline-light,
.on-dark .btn--outline-light:visited,
.on-dark .btn--outline-light:hover,
.on-dark .btn--outline-light:focus { color: #fff; }
.on-dark .btn--primary,
.on-dark .btn--primary:visited,
.on-dark .btn--primary:hover,
.on-dark .btn--primary:focus { color: #fff; }
.on-dark .btn--ghost,
.on-dark .btn--ghost:visited,
.on-dark .btn--ghost:focus { color: #fff; border-color: var(--on-dark-border); }
.on-dark .btn--ghost:hover { color: #fff; background: oklch(1 0 0 / 0.1); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; }
.text-link { font-weight: 600; font-size: 15.5px; color: var(--accent-ink); text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--navy); }

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(1 0 0 / 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav__link:hover { background: var(--surface-2); color: var(--fg); }
.nav__link[aria-current="page"] { color: var(--navy); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 2px;
  height: 2px;
  background: var(--sky);
}
.nav__caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }

.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 268px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  color: var(--fg);
  text-decoration: none;
  border-radius: var(--radius);
}
.nav__menu a:hover { background: var(--surface-2); color: var(--navy); }
.nav__menu .meta { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.header-phone:hover { color: var(--navy); }
.header-phone span.lbl { font-family: var(--font-body); font-size: 13px; color: var(--muted); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--fg);
}
.nav-toggle__bars { position: relative; width: 20px; height: 2px; background: currentColor; }
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
  max-height: calc(100dvh - 74px);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav li:last-child { border-bottom: 0; }
.mobile-nav a { display: block; padding: 15px 24px; font-size: 16px; font-weight: 500; color: var(--fg); text-decoration: none; }
.mobile-nav a:hover { background: var(--surface-2); color: var(--navy); }
.mobile-nav .sub a { padding-left: 44px; font-weight: 400; color: var(--muted); }
.mobile-nav .mobile-cta { padding: 18px 24px 24px; display: grid; gap: 10px; }

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

.hero { background: var(--navy-deep); color: var(--on-dark-muted); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 76px 0 80px; }
.hero h1 { color: #fff; font-size: clamp(34px, 3.8vw, 48px); letter-spacing: -0.015em; }
.hero__sub { font-size: 19px; line-height: 1.55; color: var(--on-dark-muted); max-width: 46ch; margin: 20px 0 32px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--on-dark-border); list-style: none; padding-left: 0; }
.hero__facts li { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--on-dark-muted); margin: 0; }
.hero__facts li::before { content: ""; display: inline-block; width: 6px; height: 6px; background: var(--sky); margin-right: 9px; vertical-align: 1px; }

.hero__media { position: relative; }

/* ---------- photo frame (signature flourish) ----------------------------- */

.frame { position: relative; }
.frame__img { position: relative; border: 1px solid var(--border-2); background: var(--surface-2); overflow: hidden; }
.frame__img img { width: 100%; height: 100%; object-fit: cover; }
.frame__img::before,
.frame__img::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--sky);
  opacity: 0.9;
}
.frame__img::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.frame__img::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.frame__cap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 16px;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.on-dark .frame__img { border-color: var(--on-dark-border); background: oklch(1 0 0 / 0.04); }
.on-dark .frame__cap { border-color: var(--on-dark-border); color: var(--on-dark-muted); }
.frame--tall .frame__img { aspect-ratio: 3 / 4; }
.frame--wide .frame__img { aspect-ratio: 16 / 9; }
.frame--4x3 .frame__img { aspect-ratio: 4 / 3; }
.frame--3x2 .frame__img { aspect-ratio: 3 / 2; }

.photo-needed {
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--border-2);
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, var(--surface-2) 0 10px, var(--bg) 10px 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}
.photo-needed span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.photo-needed strong { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--fg); letter-spacing: 0; }

/* ---------- trust strip -------------------------------------------------- */

.trust { background: var(--surface-2); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust__facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0 0 22px; padding: 0; list-style: none; }
.trust__facts li {
  margin: 0;
  padding: 0 20px;
  border-left: 1px solid var(--border-2);
  font-size: 14.5px;
  line-height: 1.4;
}
.trust__facts li:first-child { padding-left: 0; border-left: 0; }
.trust__facts b { display: block; font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--navy); letter-spacing: 0; }
.trust__logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--border-2); }
.trust__logos img { height: 34px; width: auto; mix-blend-mode: multiply; }
.trust__logos img.h-sm { height: 26px; }
.trust__logos--bare { border-top: 0; padding-top: 0; }
.article-meta { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.03em; color: var(--on-dark-link); margin-top: 18px; }
.frame__img--focus img { object-position: center 36%; }

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.card--pad-lg { padding: 32px; }
.card__kicker { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 12px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__foot { margin-top: auto; padding-top: 18px; }

.product-card { text-decoration: none; color: inherit; border-top: 2px solid var(--navy); display: block; background: var(--surface); border-left: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; transition: border-color 0.16s ease, transform 0.16s ease; }
.product-card:hover { border-top-color: var(--sky); transform: translateY(-2px); }
.product-card:hover h3 { color: var(--navy); }
.product-card__img { aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 20px 22px 24px; }
.product-card h3 { margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.product-card .arrow-link { font-size: 14px; }

.project-card { text-decoration: none; color: inherit; display: block; }
.project-card__btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.project-card__btn:hover h3 { color: var(--navy); }
.project-card__btn:focus-visible { outline: 2px solid var(--accent-ink); outline-offset: 4px; }
.project-card[hidden] { display: none; }
.project-card--feature { display: flex; flex-direction: column; }
.project-card--feature > .frame { flex: 1; display: flex; flex-direction: column; }
.project-card--feature > .frame .frame__img { flex: 1; min-height: 280px; aspect-ratio: auto; }
.project-card--feature > .frame .frame__img img { height: 100%; }
.project-card .frame__img { margin-bottom: 0; }
.project-card:hover h3 { color: var(--navy); }
.project-card h3 { font-size: 22px; margin: 14px 0 4px; }
.project-card .meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }

/* ---------- split panel (who we help) ------------------------------------ */

.split-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.split-panel__half { padding: 48px; }
.split-panel__half--light { background: var(--surface); }
.split-panel__half--dark { background: var(--navy); color: var(--on-dark-muted); border-left: 1px solid var(--navy); }
.split-panel__half--dark h3 { color: #fff; }
.split-panel__half--dark .arrow-link { color: var(--on-dark-link); }
.split-panel__half--dark a:hover { color: #fff; }
.split-panel__list { list-style: none; margin: 22px 0 26px; padding: 0; }
.split-panel__list li { padding-left: 22px; position: relative; font-size: 15.5px; margin-top: 11px; }
.split-panel__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--sky); }
.split-panel__half--light .split-panel__list li::before { background: var(--navy); }
.split-panel h3 { font-size: 28px; margin-bottom: 12px; }
.split-panel p { font-size: 15.5px; }

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

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps > li { margin: 0; }
.step { position: relative; padding: 0 22px 0 0; }
.step::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  right: 26px;
  height: 1px;
  background: var(--border-2);
}
.step:last-child::before { right: 0; }
.step__num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--navy);
  margin-bottom: 18px;
}
.step:last-child .step__num { background: var(--sky); border-color: var(--sky); color: var(--ink); }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step__note { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--warn); text-transform: uppercase; }

.steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- feature list ------------------------------------------------- */

.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { padding: 22px 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 44px 1fr; gap: 18px; }
.feature-list li:last-child { border-bottom: 1px solid var(--border); }
.feature-list .idx { font-family: var(--font-mono); font-size: 12px; color: var(--accent-ink); padding-top: 5px; }
.feature-list h3 { font-size: 21px; margin-bottom: 6px; }
.feature-list p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }

.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
.check-list--plain { list-style: none; padding-left: 0; margin-bottom: 0; }
.field .hint--strong { font-weight: 600; color: var(--fg); }
.check-list li { position: relative; padding-left: 26px; font-size: 15.5px; margin-top: 12px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 1.6px solid var(--accent-ink);
  border-bottom: 1.6px solid var(--accent-ink);
  transform: rotate(-45deg);
}
.on-dark .check-list li::before { border-color: var(--sky); }

/* ---------- quotes ------------------------------------------------------- */

.quote { background: var(--surface); border: 1px solid var(--border); border-top: 2px solid var(--navy); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; }
.quote blockquote { margin: 0 0 22px; font-size: 17.5px; line-height: 1.55; color: var(--fg); }
.quote blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 44px; line-height: 0.6; color: var(--sky); display: block; margin-bottom: 8px; }
.quote figcaption { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); font-size: 14px; }
.quote figcaption b { display: block; font-weight: 600; color: var(--fg); font-size: 15px; }
.quote figcaption span { color: var(--muted); display: block; }
.quote figcaption .tag { margin-top: 10px; display: inline-block; }
.quote--dark { background: var(--navy); border-color: var(--navy); border-top-color: var(--sky); color: var(--on-dark-muted); }
.quote--dark blockquote { color: #fff; }
.quote--dark blockquote::before { color: var(--sky); }
.quote--dark figcaption { border-color: var(--on-dark-border); }
.quote--dark figcaption b { color: #fff; }
.quote--dark figcaption span { color: var(--on-dark-muted); }

/* ---------- areas -------------------------------------------------------- */

.area-list { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.area-list li { margin: 0; }
.area-chip {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--fg);
  text-decoration: none;
  background: var(--surface);
}
.area-chip:hover { border-color: var(--navy); color: var(--navy); }
.area-chip--live { border-color: var(--navy); font-weight: 600; }
.area-chip--todo { color: var(--muted); border-style: dashed; }

/* ---------- faq ---------------------------------------------------------- */

.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--fg);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 20px; color: var(--accent-ink); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq__body { padding: 0 0 24px; max-width: 68ch; color: var(--muted); font-size: 16px; }
.faq summary:hover { color: var(--navy); }

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

.cta-band { background: var(--navy-deep); color: var(--on-dark-muted); }
.cta-band__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; padding: 72px 0; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: var(--on-dark-muted); font-size: 17.5px; max-width: 52ch; }
.cta-band .proof { border-top: 1px solid var(--on-dark-border); padding-top: 22px; }
.cta-band .proof p { font-size: 16px; margin-bottom: 6px; }
.cta-band .proof .attr { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--on-dark-muted); }

/* ---------- upload dropzone ---------------------------------------------- */

.dropzone {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 30px 28px;
  border: 1px dashed oklch(1 0 0 / 0.38);
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.05);
  text-decoration: none;
  color: #fff;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}
.on-dark .dropzone,
.on-dark .dropzone:visited,
.on-dark .dropzone:hover,
.on-dark .dropzone:focus { color: #fff; }
.dropzone:hover { background: oklch(1 0 0 / 0.1); border-color: var(--sky); }
.dropzone__title { font-family: var(--font-display); font-size: 26px; font-weight: 600; line-height: 1.1; }
.dropzone__meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-link); }
.dropzone__hint { font-size: 15px; line-height: 1.5; color: var(--on-dark-muted); }
.dropzone__cta { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 15px; font-weight: 600; }
.dropzone__cta::after { content: "\2192"; transition: transform 0.15s ease; }
.dropzone:hover .dropzone__cta::after { transform: translateX(3px); }

/* ---------- page hero (subpages) ----------------------------------------- */

.page-hero { background: var(--navy-deep); color: var(--on-dark-muted); padding: 54px 0 58px; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.2vw, 54px); max-width: 22ch; }
.page-hero p { color: var(--on-dark-muted); font-size: 18px; max-width: 60ch; margin: 16px 0 0; }
.page-hero .btn-row { margin-top: 30px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 22px; padding: 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.breadcrumb li { margin: 0; color: var(--on-dark-muted); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--on-dark-muted); }
.breadcrumb a { color: var(--on-dark-muted); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ---------- spec table --------------------------------------------------- */

.spec-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.spec-group { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.spec-group h3 { font-size: 20px; padding-bottom: 14px; margin-bottom: 6px; border-bottom: 1px solid var(--border); }
.spec-group dl { margin: 0; }
.spec-group dt { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }
.spec-group dd { margin: 3px 0 0; font-size: 15.5px; }

.data-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.data-strip div { padding: 22px 24px; border-left: 1px solid var(--border); }
.data-strip div:first-child { border-left: 0; }
.data-strip b { display: block; font-family: var(--font-mono); font-size: 22px; color: var(--navy); font-weight: 500; }
.data-strip span { font-size: 14.5px; color: var(--muted); }

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

.filter-bar { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.filter-group__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.filter-count { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.empty-state { padding: 64px 0; text-align: center; color: var(--muted); }
.empty-state p { font-size: 17px; }

/* ---------- modal -------------------------------------------------------- */

dialog.modal {
  width: min(900px, calc(100vw - 40px));
  max-height: calc(100dvh - 60px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  overflow: auto;
}
dialog.modal::backdrop { background: oklch(0.22 0.03 262 / 0.62); }
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 26px 28px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--surface); z-index: 2; }
.modal__head h3 { margin: 0; font-size: 26px; }
.modal__head .meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.modal__close { width: 42px; height: 42px; flex: none; background: transparent; border: 1px solid var(--border-2); border-radius: var(--radius); cursor: pointer; font-size: 20px; line-height: 1; color: var(--fg); }
.modal__close:hover { background: var(--surface-2); color: var(--fg); }
.modal__body { padding: 28px; }
.modal__body img { width: 100%; border: 1px solid var(--border-2); }
.modal dl { display: grid; grid-template-columns: 150px 1fr; gap: 10px 20px; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--border); font-size: 15.5px; }
.modal dt { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.modal dd { margin: 0; }

/* ---------- forms -------------------------------------------------------- */

.form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.step-bar { display: flex; gap: 0; list-style: none; margin: 0 0 32px; padding: 0; border-bottom: 1px solid var(--border); }
.step-bar li { display: flex; align-items: center; gap: 10px; padding: 0 26px 14px 0; margin: 0 26px 0 0; position: relative; font-size: 14.5px; color: var(--muted); }
.step-bar li::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: transparent; }
.step-bar li.is-active { color: var(--fg); font-weight: 600; }
.step-bar li.is-active::after { background: var(--sky); }
.step-bar .n { width: 26px; height: 26px; border: 1px solid var(--border-2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; flex: none; }
.step-bar li.is-active .n { border-color: var(--navy); background: var(--navy); color: #fff; }

.form-step[hidden] { display: none; }
.fieldset { border: 0; margin: 0 0 30px; padding: 0; }
.fieldset legend { font-family: var(--font-display); font-size: 20px; font-weight: 600; padding: 0 0 16px; margin-bottom: 4px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: grid; gap: 7px; margin-bottom: 20px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; letter-spacing: 0.01em; }
.field .hint { font-size: 13px; color: var(--muted); }
.field .err { font-size: 13px; color: var(--danger); display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); }
.field.is-invalid .err { display: block; }
input[type="text"], input[type="tel"], input[type="email"], input[type="file"], select, textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
}
textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
input::placeholder, textarea::placeholder { color: oklch(0.47 0.02 260); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%234a5570' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
input[type="file"] { padding: 9px 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); outline: 2px solid var(--accent-ink); outline-offset: 1px; }

.radio-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice { display: flex; align-items: center; gap: 10px; padding: 14px 15px; border: 1px solid var(--border-2); border-radius: var(--radius); background: var(--surface); font-size: 15px; cursor: pointer; }
.choice:hover { border-color: var(--navy); }
.choice input { width: 18px; height: 18px; accent-color: var(--navy); flex: none; margin: 0; }
.choice:has(input:checked) { border-color: var(--navy); background: var(--surface-2); font-weight: 500; }

.upload { border: 1px dashed var(--border-2); border-radius: var(--radius); background: var(--surface-2); padding: 22px; text-align: center; }
.upload input[type="file"] { border: 0; background: transparent; padding: 0; }
.file-list { list-style: none; margin: 14px 0 0; padding: 0; text-align: left; font-family: var(--font-mono); font-size: 12.5px; }
.file-list li { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--border); margin: 0; }
.file-list li:last-child { border-bottom: 0; }

.form-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); }
.form-note { font-size: 13px; color: var(--muted); max-width: 46ch; }

.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.aside-card + .aside-card { margin-top: 20px; }
.aside-card h3 { font-size: 20px; }
.aside-card .phone { font-family: var(--font-mono); font-size: 21px; font-weight: 500; color: var(--navy); text-decoration: none; display: inline-block; margin-bottom: 6px; }

/* ---------- article ------------------------------------------------------ */

.aside-sticky { position: sticky; top: 98px; }
@media (max-width: 1100px) { .aside-sticky { position: static; } }
.prose { max-width: 68ch; font-size: 17.5px; }
.prose h2 { font-size: clamp(26px, 2.6vw, 34px); margin-top: 1.9em; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: oklch(0.34 0.02 262); }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose img { margin: 2rem 0 0; border: 1px solid var(--border-2); }
.prose figure { margin: 2rem 0; }
.prose figcaption { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-top: 10px; }
.prose blockquote { margin: 2rem 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--sky); font-size: 19px; color: var(--fg); }
.keyline { background: var(--surface-2); border: 1px solid var(--border); border-left: 3px solid var(--navy); border-radius: var(--radius); padding: 24px 26px; margin: 2rem 0; }
.keyline h3 { margin-top: 0; font-size: 21px; }
.keyline ul { margin-bottom: 0; }

.toc { list-style: none; margin: 0; padding: 0; font-size: 15px; }
.toc li { margin: 0; padding: 9px 0; border-bottom: 1px solid var(--border); }
.toc li:last-child { border-bottom: 0; }
.toc a { text-decoration: none; color: var(--fg); }
.toc a:hover { color: var(--navy); }
.resource-list { list-style: none; margin: 0; padding: 0; }
.resource-list li { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 4px 16px; padding: 14px 0; border-top: 1px solid var(--border); font-size: 15.5px; margin: 0; }
.resource-list li:last-child { border-bottom: 1px solid var(--border); }
.resource-list a { text-decoration: none; color: var(--fg); font-weight: 500; }
.resource-list a:hover { color: var(--navy); }

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

.site-footer { background: var(--ink); color: var(--on-dark-muted); padding: 64px 0 0; }
.site-footer h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.72 0.02 250); margin-bottom: 16px; font-weight: 500; }
.site-footer a { color: var(--on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; font-size: 15px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .wordmark { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; letter-spacing: 0.01em; line-height: 1; }
.footer-brand p { font-size: 15px; margin: 14px 0 0; }
.footer-contact { margin-top: 20px; font-family: var(--font-mono); font-size: 14px; line-height: 1.9; }
.footer-bottom { border-top: 1px solid oklch(1 0 0 / 0.12); padding: 22px 0 30px; display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center; font-size: 13.5px; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.social-row { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 15px; }
.social-row span { color: var(--on-dark-muted); }

/* ---------- sticky mobile bar -------------------------------------------- */

.sticky-bar { display: none; }
@media (max-width: 900px) {
  .sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: oklch(1 0 0 / 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
  }
  .sticky-bar .btn { min-height: 52px; }
  .sticky-bar .btn--accent { background: var(--sky); color: var(--ink); }
  .sticky-bar .btn--accent:hover { background: oklch(0.7 0.1 235); color: var(--ink); }
  body.has-sticky-bar { padding-bottom: 84px; }
}

/* ---------- utilities ---------------------------------------------------- */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.note-row { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; padding: 14px 18px; border: 1px dashed var(--border-2); border-radius: var(--radius); font-size: 14px; color: var(--muted); }
.mt-0 { margin-top: 0 !important; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.flow-56 > * + * { margin-top: 56px; }

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

/* Desktop nav needs ~1150px of width. Below that the drawer takes over and the
   phone number and quote button stay visible in the header. */
@media (max-width: 1240px) {
  .header-phone .lbl { display: none; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 1100px) {
  .grid--sidebar, .form-layout { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .nav__list { gap: 0; }
  .nav__link { padding: 9px 8px; font-size: 14.5px; }
}

@media (max-width: 1024px) {
  .header-phone .lbl { display: none; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps, .steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .step::before { display: none; }
  .spec-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .grid--projects { grid-template-columns: minmax(0, 1fr); }
  .grid--gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .header-phone { display: none; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 52px 0 60px; }
  .hero h1 { font-size: clamp(32px, 7vw, 44px); }
  .split { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split-panel { grid-template-columns: minmax(0, 1fr); }
  .split-panel__half { padding: 36px 28px; }
  .split-panel__half--dark { border-left: 0; border-top: 1px solid var(--navy); }
  .cta-band__inner { grid-template-columns: minmax(0, 1fr); gap: 34px; padding: 56px 0; }
  .trust__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; }
  .trust__facts li:nth-child(3) { padding-left: 0; border-left: 0; }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .data-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .data-strip div:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .data-strip div:nth-child(4) { border-top: 1px solid var(--border); }
  .page-hero { padding: 44px 0 48px; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .header-inner { gap: 14px; height: 66px; }
  .brand img { height: 24px; }
  .mobile-nav { max-height: calc(100dvh - 66px); }
  .grid--2, .grid--3, .grid--4, .grid--gallery { grid-template-columns: minmax(0, 1fr); }
  .spec-groups { grid-template-columns: minmax(0, 1fr); }
  .steps, .steps--4 { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .form-grid, .radio-row { grid-template-columns: minmax(0, 1fr); }
  .form-card { padding: 24px 20px; }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .trust__facts { grid-template-columns: minmax(0, 1fr); }
  .trust__facts li { padding-left: 0; border-left: 0; }
  .filter-bar { gap: 18px; }
  .step-bar li { padding-right: 12px; margin-right: 12px; }
  .step-bar .lbl { display: none; }
  .modal dl { grid-template-columns: minmax(0, 1fr); gap: 4px 0; }
  .modal dt { margin-top: 12px; }
  .btn { width: 100%; }
  .btn-row { gap: 10px; }
  .btn-row .btn { width: 100%; }
  .header-actions .btn { width: auto; }
  .quote blockquote { font-size: 16.5px; }
}

/* Phones: the header quote button hands over to the sticky bottom bar, so the
   logo, the toggle and the padding are the only things sharing the row. */
@media (max-width: 480px) {
  .header-actions { gap: 0; }
  .header-actions .btn { display: none; }
  .header-inner { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .product-card:hover { transform: none; }
  .btn:active { transform: none; }
}
