/* ==========================================================================
   Plews Tyres Baltics — plewstyres.lv
   Design system mirrors plewstyres.com:
   black surfaces, #D80000 accent, Montserrat 700/800 display, Open Sans body.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;0,700;0,800;0,900;1,800;1,900&family=Open+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg:            #000000;
  --bg-raise:      #0d0d0d;
  --bg-card:       #161616;
  --bg-card-hover: #1e1e1e;
  --line:          #2a2a2a;
  --line-strong:   #3d3d3d;

  --text:          #ffffff;
  --text-dim:      #d9d9d9;
  --text-mute:     #b3b3b3;
  --text-faint:    #7a7a7a;

  --red:           #d80000;
  --red-hot:       #ff1414;
  --red-deep:      #a00000;

  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --wrap:   1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1,h2,h3,h4,h5 { margin: 0; font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; text-transform: uppercase; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--raise { background: var(--bg-raise); }

/* ---------- type ---------- */
.display  { font-size: clamp(2.6rem, 8.5vw, 6.5rem); font-weight: 900; font-style: italic; line-height: .92; letter-spacing: -.035em; }
.h-xl     { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h-lg     { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.h-md     { font-size: clamp(1.15rem, 2vw, 1.45rem); }
.lead     { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--text-mute); line-height: 1.7; }
.muted    { color: var(--text-mute); }
.faint    { color: var(--text-faint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: .72rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red-hot);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { margin-top: 1rem; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--red); --btn-fg: #fff; --btn-bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bd); border-radius: 0;
  font-family: var(--font-display); font-weight: 800; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .12s var(--ease);
}
.btn:hover  { --btn-bg: var(--red-hot); --btn-bd: var(--red-hot); }
.btn:active { transform: translateY(1px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: #fff; }
.btn--ghost:hover { --btn-bg: #fff; --btn-fg: #000; --btn-bd: #fff; }
.btn--sm { padding: .7rem 1.3rem; font-size: .74rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 800; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text);
  border-bottom: 2px solid var(--red); padding-bottom: .25rem;
  transition: color .18s var(--ease), gap .18s var(--ease);
}
.link-arrow:hover { color: var(--red-hot); gap: .85rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease);
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; height: 100%; }

.logo { display: flex; align-items: baseline; gap: .45rem; font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.32rem; letter-spacing: -.04em; text-transform: uppercase; white-space: nowrap; }
.logo__mark { color: #fff; }
.logo__sub  { font-size: .58rem; font-style: normal; font-weight: 800; letter-spacing: .18em; color: var(--red-hot); align-self: center; border: 1.5px solid var(--red); padding: .18rem .4rem; }

.nav { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav__link {
  position: relative; padding: .55rem .9rem; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; font-size: .76rem;
  letter-spacing: .11em; text-transform: uppercase; color: var(--text-mute);
  transition: color .18s var(--ease);
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: .25rem;
  height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: #fff; }

.header__actions { display: flex; align-items: center; gap: .75rem; }

/* narrow desktop: trim the nav so the longest labels (Lithuanian) still fit */
@media (min-width: 1101px) and (max-width: 1280px) {
  .header__inner { gap: 1rem; }
  .logo__sub { display: none; }
  .nav__link { padding: .55rem .62rem; font-size: .72rem; letter-spacing: .08em; }
  .nav__link::after { left: .62rem; right: .62rem; }
}

/* language switcher */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: .45rem;
  padding: .5rem .7rem; background: transparent;
  border: 1px solid var(--line-strong); cursor: pointer;
  font-family: var(--font-display); font-weight: 800; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim);
  transition: border-color .18s var(--ease), color .18s var(--ease);
}
.lang__btn:hover { border-color: var(--red); color: #fff; }
.lang__btn svg { transition: transform .2s var(--ease); }
.lang[data-open="true"] .lang__btn svg { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + .5rem); right: 0; min-width: 168px;
  background: var(--bg-card); border: 1px solid var(--line-strong);
  padding: .3rem; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 10;
}
.lang[data-open="true"] .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  display: flex; align-items: center; gap: .6rem; width: 100%;
  padding: .6rem .75rem; background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: .85rem; color: var(--text-mute); text-align: left;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.lang__opt:hover { background: var(--bg-card-hover); color: #fff; }
.lang__opt[aria-selected="true"] { color: #fff; font-weight: 600; }
.lang__opt[aria-selected="true"]::after { content: ''; margin-left: auto; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.lang__code { font-family: var(--font-display); font-weight: 800; font-size: .68rem; letter-spacing: .08em; color: var(--text-faint); min-width: 20px; }

/* burger */
.burger { display: none; width: 42px; height: 42px; background: none; border: 1px solid var(--line-strong); cursor: pointer; padding: 0; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
body[data-menu="open"] .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body[data-menu="open"] .burger span:nth-child(2) { opacity: 0; }
body[data-menu="open"] .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .burger { display: block; }
  /* .nav goes position:fixed below, so its margin-left:auto no longer
     pushes the actions cluster to the right edge — do it explicitly */
  .header__actions { margin-left: auto; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: #000; border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body[data-menu="open"] .nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link { padding: 1rem .25rem; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
}

/* very narrow phones: the wordmark badge is nowrap and would push the burger
   past the viewport, so drop it and tighten the header */
@media (max-width: 480px) {
  .header__inner { gap: .6rem; }
  .logo { font-size: 1.15rem; }
  .logo__sub { display: none; }
  .lang__btn { padding: .5rem .55rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: clamp(560px, 92vh, 880px);
  display: flex; align-items: flex-end;
  padding-top: var(--header-h); overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to top, #000 3%, rgba(0,0,0,.82) 42%, rgba(0,0,0,.35) 74%, rgba(0,0,0,.62) 100%),
    linear-gradient(to right, rgba(0,0,0,.92) 0%, rgba(0,0,0,.74) 34%, rgba(0,0,0,.28) 66%, rgba(0,0,0,.15) 100%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.hero__content { max-width: 46rem; }
.hero .display { text-shadow: 0 4px 40px rgba(0,0,0,.6); }
.hero .display em { font-style: italic; color: var(--red-hot); }
.hero__sub { margin-top: 1.4rem; max-width: 44ch; font-size: clamp(1rem, 1.6vw, 1.22rem); color: var(--text-dim); line-height: 1.65; }
.hero .btn-row { margin-top: 2.2rem; }

.hero__scroll { position: absolute; bottom: 1.5rem; right: var(--gutter); z-index: 2; display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-size: .64rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ---------- stat strip ---------- */
.stats { border-block: 1px solid var(--line); background: var(--bg-raise); }
.stats__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stat { padding: clamp(1.75rem, 3.5vw, 2.75rem) 1.25rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1; color: #fff; }
.stat__num span { color: var(--red-hot); }
.stat__label { margin-top: .6rem; font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }

/* category card */
.cat {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 320px; padding: 1.75rem; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.cat:hover { border-color: var(--red); transform: translateY(-4px); }
.cat__img { position: absolute; inset: 0; z-index: 0; }
.cat__img img { width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: opacity .35s var(--ease), transform .5s var(--ease); }
.cat:hover .cat__img img { opacity: .68; transform: scale(1.05); }
.cat__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, #000 8%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.2) 100%); }
.cat__body { position: relative; z-index: 1; }
.cat__count { font-family: var(--font-display); font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--red-hot); }
.cat__title { margin: .5rem 0 .6rem; font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.cat__desc { font-size: .92rem; color: var(--text-mute); line-height: 1.6; }
.cat__go { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; transition: gap .2s var(--ease); }
.cat:hover .cat__go { gap: .9rem; color: var(--red-hot); }

/* tyre model card */
.tyre {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.tyre:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.tyre__media { position: relative; aspect-ratio: 4/3; background: radial-gradient(circle at 50% 45%, #232323 0%, #0b0b0b 72%); display: grid; place-items: center; padding: 1.25rem; overflow: hidden; }
.tyre__media--light { background: radial-gradient(circle at 50% 45%, #fdfdfd 0%, #d6d6d6 78%); }
.tyre__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s var(--ease); }
.tyre:hover .tyre__media img { transform: scale(1.06); }
.tyre__badge { position: absolute; top: .8rem; left: .8rem; padding: .3rem .6rem; background: var(--red); font-family: var(--font-display); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.tyre__badge--alt { background: #fff; color: #000; }
.tyre__badge--ece { top: .8rem; left: auto; right: .8rem; background: transparent; border: 1px solid var(--line-strong); color: var(--text-mute); }
.tyre__body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; border-top: 1px solid var(--line); }
.tyre__code { font-family: var(--font-display); font-size: .64rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red-hot); }
.tyre__name { margin: .45rem 0 .7rem; font-size: 1.18rem; }
.tyre__desc { font-size: .875rem; color: var(--text-mute); line-height: 1.6; }
.tyre__meta { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: grid; gap: .55rem; }
.tyre__row { display: flex; gap: .75rem; font-size: .8rem; }
.tyre__row dt { flex: 0 0 5.5rem; font-family: var(--font-display); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); padding-top: .15rem; }
.tyre__row dd { margin: 0; color: var(--text-dim); }
.chips { display: flex; flex-wrap: wrap; gap: .3rem; }
.chip { padding: .22rem .5rem; background: #000; border: 1px solid var(--line-strong); font-family: var(--font-body); font-size: .72rem; color: var(--text-dim); white-space: nowrap; }
.tyre__cta { margin-top: auto; padding-top: 1.2rem; }

/* filter bar */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.25rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.filter {
  padding: .6rem 1.15rem; background: transparent; border: 1px solid var(--line-strong); cursor: pointer;
  font-family: var(--font-display); font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mute);
  transition: all .18s var(--ease);
}
.filter:hover { color: #fff; border-color: var(--text-faint); }
.filter[aria-pressed="true"] { background: var(--red); border-color: var(--red); color: #fff; }

/* rider card — typographic; we do not licence rider portraits */
.rider {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 230px; padding: 1.6rem 1.5rem 1.4rem; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line); border-left: 2px solid var(--line-strong);
  transition: border-color .25s var(--ease), border-left-color .25s var(--ease),
              background .25s var(--ease), transform .25s var(--ease);
}
.rider:hover { border-left-color: var(--red); background: var(--bg-card-hover); transform: translateY(-3px); }
.rider__ghost {
  position: absolute; top: -.18em; right: .06em; z-index: 0; pointer-events: none;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 6.2rem; line-height: 1; letter-spacing: -.06em;
  color: rgba(255,255,255,.045);
}
.rider:hover .rider__ghost { color: rgba(216,0,0,.16); }
.rider__num {
  position: absolute; top: 1.15rem; right: 1.3rem; z-index: 2;
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: .95rem;
  color: var(--red-hot);
}
.rider__body { position: relative; z-index: 1; }
.rider__flag { font-size: 1.15rem; line-height: 1; margin-bottom: .6rem; }
.rider__name { font-size: 1.08rem; line-height: 1.12; margin-bottom: .4rem; }
.rider__disc {
  font-family: var(--font-display); font-size: .62rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--red-hot);
}
.rider__note { margin-top: .55rem; font-size: .82rem; color: var(--text-mute); line-height: 1.5; }

/* feature / split */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; grid-template-columns: 1fr; }
.split--top { align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.15fr .85fr; } }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border: 1px solid var(--line); }
.split__media::before { content: ''; position: absolute; inset: auto auto -14px -14px; width: 60%; height: 60%; border-left: 3px solid var(--red); border-bottom: 3px solid var(--red); z-index: -1; }

/* checklist */
.checks { display: grid; gap: .9rem; margin-top: 1.75rem; }
.check { display: flex; gap: .85rem; align-items: flex-start; }
.check__i { flex: 0 0 auto; width: 22px; height: 22px; margin-top: .18rem; display: grid; place-items: center; background: var(--red); }
.check__i svg { width: 12px; height: 12px; }
.check__t { font-family: var(--font-display); font-size: .92rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.check__d { font-size: .875rem; color: var(--text-mute); line-height: 1.55; margin-top: .15rem; }

/* steps */
.steps { counter-reset: s; display: grid; gap: 1rem; }
.step { counter-increment: s; position: relative; padding: 1.6rem 1.6rem 1.6rem 4.5rem; background: var(--bg-card); border: 1px solid var(--line); }
.step::before {
  content: counter(s, decimal-leading-zero); position: absolute; left: 1.5rem; top: 1.35rem;
  font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.5rem; color: var(--red);
}
.step h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.step p { font-size: .9rem; color: var(--text-mute); line-height: 1.6; }

/* dealer list */
.dealer {
  display: grid; gap: .35rem; padding: 1.35rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--line);
  transition: border-color .2s var(--ease);
}
.dealer:hover { border-color: var(--line-strong); }
.dealer__flag { font-size: 1.5rem; line-height: 1; margin-bottom: .35rem; }
.dealer__name { font-family: var(--font-display); font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: -.01em; }
.dealer__status { display: inline-block; justify-self: start; margin-top: .2rem; padding: .22rem .5rem; border: 1px solid var(--line-strong);
  font-family: var(--font-display); font-size: .58rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mute); }
.dealer__meta { font-size: .85rem; color: var(--text-mute); }
.dealer__links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .5rem; font-size: .82rem; }
.dealer__links a { color: var(--text-dim); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; transition: color .18s var(--ease), border-color .18s var(--ease); }
.dealer__links a:hover { color: var(--red-hot); border-color: var(--red); }
.country-head { display: flex; align-items: center; gap: .75rem; margin: 2.5rem 0 1.15rem; }
.country-head:first-of-type { margin-top: 0; }
.country-head__flag { font-size: 1.4rem; line-height: 1; }
.country-head__name { font-size: 1.15rem; }
.country-head__rule { flex: 1; height: 1px; background: var(--line); }

/* ---------- forms ---------- */
.form { display: grid; gap: 1.1rem; }
/* honeypot: off-screen for people, still fillable by bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden; opacity: 0; pointer-events: none; }
.field { display: grid; gap: .45rem; }
.field--row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .field--row { grid-template-columns: 1fr 1fr; } }
.label { font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); }
.label span { color: var(--red-hot); }
.input, .textarea, .select {
  width: 100%; padding: .85rem 1rem;
  background: #000; border: 1px solid var(--line-strong); border-radius: 0;
  color: #fff; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: #5c5c5c; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--red); background: #0a0a0a; }
.textarea { min-height: 148px; resize: vertical; }
.select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b3b3b3' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.select option { background: #111; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .82rem; color: var(--text-mute); line-height: 1.5; }
.consent input { margin-top: .25rem; accent-color: var(--red); width: 16px; height: 16px; flex: 0 0 auto; }
.form__note { font-size: .78rem; color: var(--text-faint); }
.form-status { padding: .9rem 1.1rem; border: 1px solid var(--red); background: rgba(216,0,0,.09); font-size: .88rem; color: var(--text-dim); }
.form-status[hidden] { display: none; }

/* contact detail blocks */
.info { display: grid; gap: 1.5rem; }
.info__item { padding-left: 1.1rem; border-left: 2px solid var(--red); }
.info__label { font-family: var(--font-display); font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: .35rem; }
.info__value { font-size: 1rem; color: var(--text); line-height: 1.55; }
.info__value a:hover { color: var(--red-hot); }
.wa { display: inline-flex; align-items: center; gap: .5rem; }
.wa svg { width: 18px; height: 18px; color: #25d366; flex: 0 0 auto; }
.wa:hover svg { color: #3ceb7d; }
.social--wa:hover { background: #25d366; border-color: #25d366; color: #000; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--bg-raise); border-block: 1px solid var(--line); }
.cta-band__inner { position: relative; z-index: 1; text-align: center; padding-block: clamp(3rem, 7vw, 5.5rem); }
.cta-band__inner p { margin: 1.1rem auto 0; max-width: 52ch; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(115deg, transparent 0 38px, rgba(216,0,0,.05) 38px 40px); }

/* ---------- page hero (inner pages) ---------- */
.phero { position: relative; padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)); padding-bottom: clamp(2.5rem, 5vw, 4rem); overflow: hidden; border-bottom: 1px solid var(--line); }
.phero__bg { position: absolute; inset: 0; z-index: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.phero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, #000 6%, rgba(0,0,0,.6) 60%, rgba(0,0,0,.75) 100%); }
.phero__inner { position: relative; z-index: 1; }
.phero p { margin-top: 1.1rem; max-width: 58ch; }
/* legal / prose pages */
.phero--plain { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.4rem; margin-bottom: .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-mute); line-height: 1.75; font-size: 1rem; }
.prose a { color: var(--text); border-bottom: 1px solid var(--red); }
.prose a:hover { color: var(--red-hot); }
.prose__meta { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  font-size: .82rem; color: var(--text-faint); }

.crumbs { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.1rem; font-family: var(--font-display); font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); }
.crumbs a:hover { color: var(--red-hot); }
.crumbs span { color: var(--line-strong); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #000; border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px)  { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.footer__brand p { margin-top: 1.1rem; max-width: 34ch; font-size: .875rem; color: var(--text-mute); line-height: 1.65; }
.footer__title { font-family: var(--font-display); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.1rem; }
.footer__list { display: grid; gap: .65rem; font-size: .9rem; }
.footer__list a { color: var(--text-mute); transition: color .18s var(--ease); }
.footer__list a:hover { color: var(--red-hot); }
.socials { display: flex; gap: .6rem; margin-top: 1.35rem; }
.social { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--text-mute); transition: all .2s var(--ease); }
.social:hover { border-color: var(--red); background: var(--red); color: #fff; }
.social svg { width: 17px; height: 17px; }
.footer__bottom { margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-block: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--text-faint); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__legal a:hover { color: var(--text-mute); }
.footer__disclaimer { width: 100%; font-size: .74rem; color: #5c5c5c; line-height: 1.6; padding-bottom: 1.5rem; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* 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; }
[hidden] { display: none !important; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.center { text-align: center; }
