/* ============================================================
   PromoLineup — promolineup.com
   Swiss grid × constructivist palette: red / black / paper.
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }
a { color: inherit; }

/* === VARIABLES === */
:root {
  --paper:      #f4f0e8;
  --paper-dim:  #eae4d8;
  --ink:        #17130e;
  --ink-soft:   #2a241c;
  --red:        #d92a1c;
  --red-dark:   #ad1f13;
  --muted:      #6d6558;
  --line:       #17130e;
  --line-soft:  rgba(23, 19, 14, 0.18);

  --font-head: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --max-width: 1240px;
  --pad-x: 24px;
  --section-y: clamp(64px, 9vw, 120px);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--pad-x); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 18px;
  font-family: var(--font-mono); font-size: 14px; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before { content: ""; width: 12px; height: 12px; background: var(--red); flex: none; }
.kicker--onred::before { background: var(--paper); }
.kicker--onink { color: var(--paper); }
.kicker--center { justify-content: center; }

.lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.6; max-width: 62ch; }

a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
p a { color: var(--red-dark); }
p a:hover { color: var(--ink); }

.linklike {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  padding: 0;
}
.linklike:hover { color: var(--red); }

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

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-align: center;
  padding: 15px 30px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 44px;
}
.btn--red { background: var(--red); border-color: var(--red); color: var(--paper); }
.btn--red:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--red); border-color: var(--red); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--ink); border-color: var(--paper); color: var(--paper); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* === TOP STRIP === */
.topstrip {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topstrip__inner { display: flex; gap: 28px; padding-top: 8px; padding-bottom: 8px; overflow-x: auto; white-space: nowrap; }
.topstrip__item { position: relative; flex: none; }
.topstrip__item + .topstrip__item::before {
  content: "★"; color: var(--red); position: absolute; left: -20px;
}
.topstrip__item--right { margin-left: auto; }
@media (max-width: 767px) { .topstrip__item--right { margin-left: 0; } }

/* === HEADER === */
.siteheader {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.siteheader__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo__mark { flex: none; }
.logo__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}
.logo__name em { font-style: normal; color: var(--red); }
.logo__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 26px; }
.nav__link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav__link:hover { border-bottom-color: var(--ink); }
.nav__link.is-active { border-bottom-color: var(--red); color: var(--red-dark); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 26px; height: 3px; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0; top: 0; z-index: 90;
    background: var(--ink); color: var(--paper);
    flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 90px var(--pad-x) 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 8px; }
  .nav__link {
    font-family: var(--font-head); font-weight: 700;
    font-size: clamp(30px, 8vw, 44px); color: var(--paper);
  }
  .nav__link.is-active { color: var(--red); }
  .nav__cta { margin-top: 28px; }
  body.nav-locked { overflow: hidden; }
  .siteheader .burger { position: relative; z-index: 95; }
  .nav.is-open ~ .burger span, .burger.is-open span { background: var(--paper); }
}

/* === SECTIONS === */
.section { padding: var(--section-y) 0; }
.section--rule { border-top: 1px solid var(--line); }
.section--dim { background: var(--paper-dim); }

.band--ink { background: var(--ink); color: var(--paper); }
.band--red { background: var(--red); color: var(--paper); }

.section__head { max-width: 900px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__more { margin-top: 40px; }
.section__title { font-size: clamp(32px, 4.6vw, 56px); margin-bottom: 18px; }
.section__intro { color: var(--muted); max-width: 62ch; }
.band--ink .section__intro, .band--red .section__intro { color: rgba(244, 240, 232, 0.75); }

/* === HERO === */
.hero { padding: clamp(56px, 8vw, 110px) 0 0; border-bottom: 2px solid var(--ink); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: end; }
.hero__title {
  font-size: clamp(44px, 8.2vw, 108px);
  line-height: 0.94;
  margin: 26px 0 30px;
}
.hero__title em { font-style: normal; color: var(--red); display: block; }
.hero__lead { max-width: 56ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(44px, 6vw, 72px); }

.hero__aside {
  border-left: 1px solid var(--line);
  padding: 0 0 clamp(44px, 6vw, 72px) 28px;
  display: flex; flex-direction: column; gap: 24px;
}
.hero__fact { border-top: 1px solid var(--line-soft); padding-top: 14px; }
.hero__fact:first-child { border-top: 0; padding-top: 0; }
.hero__fact-num { font-family: var(--font-head); font-weight: 700; font-size: 38px; line-height: 1; }
.hero__fact-num sup { font-size: 20px; color: var(--red); }
.hero__fact-label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 6px; }

.hero__deco {
  position: absolute; right: -70px; top: -70px; width: 340px; height: 340px;
  border-radius: 50%; border: 60px solid var(--red); opacity: 0.12; pointer-events: none;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 40px; flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .hero__fact { border-top: 0; padding-top: 0; }
}

/* === TICKER STRIP === */
.ticker { background: var(--red); color: var(--paper); border-bottom: 2px solid var(--ink); overflow: hidden; }
.ticker__track {
  display: flex; gap: 48px; white-space: nowrap; width: max-content;
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
}
.ticker__track span::after { content: "★"; margin-left: 48px; opacity: 0.7; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* === PHOTOS === */
.photoband { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); position: relative; }
.photoband img { width: 100%; height: auto; display: block; filter: grayscale(25%) contrast(1.04); }
.photoband__cap {
  position: absolute; left: 0; bottom: 0;
  background: var(--red); color: var(--paper);
  font-family: var(--font-mono); font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 10px 18px; max-width: min(85%, 560px);
}
.photo { border: 2px solid var(--ink); position: relative; }
.photo img { width: 100%; height: auto; display: block; filter: grayscale(25%) contrast(1.04); }
.photo--cap figcaption {
  font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  border-top: 2px solid var(--ink); background: var(--paper-dim);
  padding: 9px 14px; color: var(--muted);
}
.formatcard__img { border: 1px solid var(--line); margin-bottom: 4px; }
.formatcard__img img { width: 100%; height: auto; display: block; filter: grayscale(25%) contrast(1.04); }
.detail__img { border: 2px solid var(--ink); margin-bottom: 20px; }
.detail__img img { width: 100%; height: auto; display: block; filter: grayscale(25%) contrast(1.04); }
.case__img { border: 2px solid var(--ink); }
.case__img img { width: 100%; height: auto; display: block; filter: grayscale(25%) contrast(1.04); }

/* === MANIFESTO === */
.manifesto { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.manifesto__item { padding: clamp(24px, 3vw, 44px); border-left: 1px solid var(--line); }
.manifesto__item:first-child { border-left: 0; }
.manifesto__num { font-family: var(--font-mono); font-size: 13px; color: var(--red); letter-spacing: 0.2em; margin-bottom: 16px; }
.manifesto__title { font-size: 24px; margin-bottom: 12px; }
.manifesto__text { color: var(--muted); font-size: 16px; }
.manifesto--onink, .manifesto--onink .manifesto__item { border-color: rgba(244, 240, 232, 0.3); }
.manifesto--onink .manifesto__title { color: var(--paper); }
.manifesto--onink .manifesto__text { color: rgba(244, 240, 232, 0.65); }
@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto__item { border-left: 0; border-top: 1px solid var(--line); }
  .manifesto__item:first-child { border-top: 0; }
}

/* === FORMAT CARDS === */
.formatgrid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.formatcard {
  grid-column: span 2;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.formatcard:nth-child(4), .formatcard:nth-child(5) { grid-column: span 3; }
.formatcard:hover { background: var(--ink); color: var(--paper); }
.formatcard:hover .formatcard__meta { color: rgba(244, 240, 232, 0.65); }
.formatcard:hover .formatcard__arrow { color: var(--red); transform: translateX(6px); }
.formatcard__num { font-family: var(--font-mono); font-size: 13px; color: var(--red); letter-spacing: 0.2em; }
.formatcard__title { font-size: clamp(22px, 2.2vw, 30px); }
.formatcard__meta { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.formatcard__text { font-size: 15.5px; flex: 1; }
.formatcard__arrow { font-family: var(--font-head); font-weight: 700; font-size: 22px; align-self: flex-end; transition: transform var(--transition), color var(--transition); }
@media (max-width: 900px) {
  .formatgrid { grid-template-columns: 1fr; }
  .formatcard, .formatcard:nth-child(4), .formatcard:nth-child(5) { grid-column: span 1; }
}

/* === TABLES (disciplines) === */
.tables3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(244, 240, 232, 0.25); border: 1px solid rgba(244, 240, 232, 0.25); }
.tables3__item { background: var(--ink); padding: clamp(28px, 3.4vw, 48px); }
.tables3__glyph { width: 56px; height: 56px; margin-bottom: 22px; }
.tables3__title { font-size: 26px; color: var(--paper); margin-bottom: 12px; }
.tables3__text { color: rgba(244, 240, 232, 0.72); font-size: 15.5px; }
@media (max-width: 900px) { .tables3 { grid-template-columns: 1fr; } }

/* === STEPS === */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-left: 1px solid var(--line); }
.step { border-right: 1px solid var(--line); padding: 0 clamp(18px, 2vw, 30px) 8px; position: relative; }
.step__num {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(56px, 6vw, 88px);
  line-height: 1; color: var(--red);
}
.step__title { font-size: 21px; margin: 14px 0 10px; }
.step__text { font-size: 15.5px; color: var(--muted); }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; border-left: 0; }
  .step { border-right: 0; border-top: 1px solid var(--line); padding: 24px 0 16px; }
  .step:first-child { border-top: 0; padding-top: 0; }
}

/* === STATS === */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--paper); border: 1px solid var(--paper); }
.stats--onred { background: rgba(244, 240, 232, 0.4); border-color: rgba(244, 240, 232, 0.4); }
.stats--onink { background: var(--line); border-color: var(--line); }
.stats--onink .stat { background: var(--ink); }
.statsband { padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px); }
.stat { background: var(--red); padding: clamp(26px, 3.4vw, 46px) clamp(20px, 2.4vw, 36px); }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(40px, 5vw, 68px); line-height: 1; color: var(--paper); }
.stat__num sup { font-size: 0.5em; }
.stat__label { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(244, 240, 232, 0.85); margin-top: 10px; }
@media (max-width: 900px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr; } }

/* === QUOTES === */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.quote { border: 1px solid var(--line); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; }
.quote__mark { font-family: var(--font-head); font-weight: 700; font-size: 64px; line-height: 0.6; color: var(--red); margin-bottom: 22px; }
.quote__text { flex: 1; font-size: 16px; }
.quote__by { margin-top: 22px; font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); border-top: 1px solid var(--line-soft); padding-top: 14px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* === CTA BAND === */
.ctaband { background: var(--red); color: var(--paper); border-top: 2px solid var(--ink); }
.ctaband__inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: center; padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px);
}
.ctaband__title { font-size: clamp(34px, 4.6vw, 58px); }
.ctaband__text { color: rgba(244, 240, 232, 0.85); margin-bottom: 24px; }
@media (max-width: 900px) { .ctaband__inner { grid-template-columns: 1fr; } }

/* === FOOTER === */
.sitefooter { background: var(--ink); color: var(--paper); }
.sitefooter__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(40px, 5vw, 56px);
}
.sitefooter__logo { font-family: var(--font-head); font-weight: 700; font-size: 28px; text-transform: uppercase; margin-bottom: 16px; }
.sitefooter__logo em { font-style: normal; color: var(--red); }
.sitefooter__desc { font-size: 15px; color: rgba(244, 240, 232, 0.7); margin-bottom: 18px; }
.sitefooter__badge {
  display: inline-block; font-family: var(--font-mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--red); color: var(--paper);
  padding: 8px 12px;
}
.sitefooter__head { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red); margin-bottom: 18px; }
.sitefooter__list li { margin-bottom: 10px; font-size: 15px; }
.sitefooter__list a { color: rgba(244, 240, 232, 0.85); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--transition), color var(--transition); }
.sitefooter__list a:hover { color: var(--paper); border-bottom-color: var(--red); }
.sitefooter__list .linklike { color: rgba(244, 240, 232, 0.85); text-decoration: none; border-bottom: 1px solid transparent; }
.sitefooter__list .linklike:hover { color: var(--paper); border-bottom-color: var(--red); }
.sitefooter__list--contact li { color: rgba(244, 240, 232, 0.7); }
.sitefooter__bottom {
  border-top: 1px solid rgba(244, 240, 232, 0.2);
  padding-top: 22px; padding-bottom: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: rgba(244, 240, 232, 0.6);
}
@media (max-width: 1024px) { .sitefooter__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .sitefooter__grid { grid-template-columns: 1fr; } }

/* === PAGE HEADER === */
.pagehead { border-bottom: 2px solid var(--ink); padding: clamp(48px, 7vw, 90px) 0; position: relative; overflow: hidden; }
.pagehead__title { font-size: clamp(40px, 6.4vw, 84px); max-width: 20ch; }
.pagehead__title em { font-style: normal; color: var(--red); }
.pagehead__lead { margin-top: 22px; }
.pagehead__deco { position: absolute; right: -50px; bottom: -90px; width: 260px; height: 260px; border: 46px solid var(--red); opacity: 0.1; transform: rotate(45deg); pointer-events: none; }
.breadcrumb { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--red-dark); }

/* === DETAIL BLOCKS (formats page) === */
.detail { display: grid; grid-template-columns: 120px 1.4fr 1fr; gap: clamp(24px, 3.4vw, 56px); padding: clamp(36px, 5vw, 64px) 0; border-top: 1px solid var(--line); }
.detail:first-of-type { border-top: 0; }
.detail__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(48px, 5vw, 76px); line-height: 1; color: var(--red); }
.detail__title { font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; }
.detail__text p { margin-bottom: 14px; }
.detail__side { border-left: 1px solid var(--line); padding-left: clamp(20px, 2.4vw, 36px); }
.detail__glyph { width: 64px; height: 64px; margin-bottom: 20px; }
.speclist li {
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--line-soft); padding: 10px 0; font-size: 15px;
}
.speclist__key { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); padding-top: 2px; }
.speclist__val { text-align: right; font-weight: 500; }
@media (max-width: 900px) {
  .detail { grid-template-columns: 1fr; gap: 16px; }
  .detail__side { border-left: 0; border-top: 1px solid var(--line); padding: 18px 0 0; }
}

/* === COMPARE TABLE === */
.tablewrap { overflow-x: auto; border: 1px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 760px; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); vertical-align: top; }
.compare th:last-child, .compare td:last-child { border-right: 0; }
.compare thead th {
  font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase;
  letter-spacing: 0.14em; background: var(--ink); color: var(--paper); border-bottom: 2px solid var(--red);
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare td:first-child { font-weight: 600; }

/* === INCLUDED GRID === */
.included { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.included__item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(22px, 2.6vw, 36px); }
.included__num { font-family: var(--font-mono); font-size: 12.5px; color: var(--red); letter-spacing: 0.2em; margin-bottom: 12px; }
.included__title { font-size: 19px; margin-bottom: 8px; }
.included__text { font-size: 15px; color: var(--muted); }
.included--onink, .included--onink .included__item { border-color: rgba(244, 240, 232, 0.3); }
.included--onink .included__title { color: var(--paper); }
.included--onink .included__text { color: rgba(244, 240, 232, 0.65); }
@media (max-width: 900px) { .included { grid-template-columns: 1fr; } }

/* === TIMELINE (run of evening) === */
.runsheet { border: 1px solid var(--line); }
.runsheet__row { display: grid; grid-template-columns: 140px 1fr; border-top: 1px solid var(--line-soft); }
.runsheet__row:first-child { border-top: 0; }
.runsheet__time {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.08em;
  background: var(--paper-dim); border-right: 1px solid var(--line);
  padding: 16px 18px; display: flex; align-items: center;
}
.runsheet__body { padding: 16px 22px; }
.runsheet__what { font-weight: 600; }
.runsheet__note { font-size: 14.5px; color: var(--muted); }
@media (max-width: 600px) {
  .runsheet__row { grid-template-columns: 1fr; }
  .runsheet__time { border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 10px 18px; }
}

/* === FAQ === */
.faq { border: 1px solid var(--line); }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:first-child { border-top: 0; }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  text-align: left; padding: 20px clamp(18px, 2.4vw, 30px);
  font-family: var(--font-head); font-weight: 700; font-size: 18px; text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
}
.faq__q:hover { background: var(--ink); color: var(--paper); }
.faq__q[aria-expanded="true"] { background: var(--ink); color: var(--paper); }
.faq__q[aria-expanded="true"] .faq__icon { color: var(--red); transform: rotate(45deg); }
.faq__icon { font-size: 26px; line-height: 1; transition: transform var(--transition), color var(--transition); flex: none; }
.faq__a { padding: 0 clamp(18px, 2.4vw, 30px); max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq__a.is-open { padding: 18px clamp(18px, 2.4vw, 30px) 24px; max-height: 400px; }
.faq__a p { max-width: 72ch; }

/* === CASE STUDIES === */
.case { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(24px, 4vw, 64px); padding: clamp(40px, 5.4vw, 72px) 0; border-top: 1px solid var(--line); }
.case:first-of-type { border-top: 0; }
.case__side { display: flex; flex-direction: column; gap: 18px; }
.case__tag { display: inline-block; align-self: flex-start; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; background: var(--red); color: var(--paper); padding: 6px 12px; }
.case__title { font-size: clamp(26px, 3.2vw, 42px); }
.case__facts { border-top: 2px solid var(--ink); }
.case__facts li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line-soft); padding: 9px 0; font-size: 14.5px; }
.case__facts .k { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); padding-top: 2px; }
.case__body h3 { font-size: 17px; letter-spacing: 0.06em; color: var(--red-dark); margin: 22px 0 8px; }
.case__body h3:first-child { margin-top: 0; }
.case__body p { max-width: 68ch; }
@media (max-width: 900px) { .case { grid-template-columns: 1fr; } }

/* === TEAM === */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.team__card { background: var(--paper); padding: clamp(24px, 3vw, 36px); }
.team__avatar {
  width: 72px; height: 72px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--paper);
}
.team__card:nth-child(odd) .team__avatar { background: var(--red); }
.team__card:nth-child(even) .team__avatar { background: var(--ink); }
.team__name { font-size: 21px; }
.team__role { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red-dark); margin: 6px 0 12px; }
.team__bio { font-size: 15px; color: var(--muted); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } }

/* === TIMELINE (history) === */
.history { border-left: 2px solid var(--ink); padding-left: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; gap: clamp(28px, 3.6vw, 44px); }
.history__item { position: relative; }
.history__item::before {
  content: ""; position: absolute; left: calc(-1 * clamp(24px, 3vw, 44px) - 9px);
  top: 8px; width: 16px; height: 16px; background: var(--red);
}
.history__year { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--red); }
.history__title { font-size: 20px; margin: 4px 0 6px; }
.history__text { color: var(--muted); font-size: 15.5px; max-width: 62ch; }

/* === CONTACT === */
.contactgrid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(32px, 5vw, 80px); }
.contactinfo__block { border-top: 2px solid var(--ink); padding: 18px 0 26px; }
.contactinfo__label { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--red-dark); margin-bottom: 8px; }
.contactinfo__val { font-size: 17px; font-weight: 500; }
.contactinfo__val a { text-decoration: none; }
.contactinfo__val a:hover { color: var(--red-dark); }
.contactinfo__note { font-size: 14px; color: var(--muted); margin-top: 4px; }
@media (max-width: 900px) { .contactgrid { grid-template-columns: 1fr; } }

/* === FORM === */
.form { border: 1px solid var(--line); padding: clamp(24px, 3.4vw, 44px); background: var(--paper); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; }
.form__label .req { color: var(--red); }
.form__input, .form__select, .form__textarea {
  width: 100%; font: inherit; font-size: 16px;
  padding: 13px 14px; min-height: 44px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2317130e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form__textarea { min-height: 140px; resize: vertical; }
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.form__input.is-invalid, .form__select.is-invalid, .form__textarea.is-invalid { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.form__check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; }
.form__check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); flex: none; }
.form__error { display: none; color: var(--red-dark); font-size: 13.5px; font-family: var(--font-mono); margin-top: 6px; }
.form__error.is-visible { display: block; }
.form__note { font-size: 13.5px; color: var(--muted); margin-top: 16px; }
.form--errors { border-color: var(--red-dark); margin-bottom: 20px; }
.form__label--error { color: var(--red-dark); }
.form__errorlist { list-style: square; padding-left: 22px; }
.form__errorlist li { margin-bottom: 6px; font-size: 15px; }
.form__errorlist li::marker { color: var(--red); }
.form__honeypot { position: absolute; left: -9999px; }
.form .btn { width: 100%; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* === LEGAL PAGES === */
.legal { max-width: 820px; }
.legal h2 { font-size: 26px; margin: 44px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 19px; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 16px; margin-bottom: 12px; max-width: 75ch; }
.legal ul { list-style: square; padding-left: 22px; }
.legal ul li::marker { color: var(--red); }
.legal ol { list-style: decimal; padding-left: 22px; }
.legal .tablewrap { margin: 18px 0; }
.legal .compare { min-width: 560px; }
.legal__updated { font-family: var(--font-mono); font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 34px; }

/* === COOKIE BAR === */
.cookiebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--paper); border-top: 2px solid var(--ink);
  box-shadow: 0 -6px 24px rgba(23, 19, 14, 0.12);
}
.cookiebar__inner { display: flex; align-items: center; gap: 24px; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
.cookiebar__text { flex: 1 1 380px; font-size: 14.5px; }
.cookiebar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === MODAL === */
.modal { position: fixed; inset: 0; z-index: 160; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal__overlay { position: absolute; inset: 0; background: rgba(23, 19, 14, 0.65); }
.modal__box {
  position: relative; background: var(--paper); border: 2px solid var(--ink);
  max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto;
}
.modal__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 2px solid var(--ink); }
.modal__title { font-size: 22px; }
.modal__close { font-size: 30px; line-height: 1; padding: 4px 10px; min-width: 44px; min-height: 44px; }
.modal__close:hover { color: var(--red); }
.modal__body { padding: 22px 26px; }
.modal__foot { padding: 18px 26px 24px; display: flex; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--line-soft); }

.cookieopt { border-bottom: 1px solid var(--line-soft); padding: 16px 0; }
.cookieopt:last-child { border-bottom: 0; }
.cookieopt__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cookieopt__name { font-family: var(--font-head); font-weight: 700; font-size: 17px; text-transform: uppercase; }
.cookieopt__always { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red-dark); }
.cookieopt__desc { font-size: 14px; color: var(--muted); }

.switch { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.switch input { position: absolute; opacity: 0; width: 44px; height: 24px; cursor: pointer; }
.switch__track { width: 44px; height: 24px; background: var(--paper-dim); border: 1px solid var(--line); position: relative; transition: background var(--transition); display: inline-block; }
.switch__track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--ink); transition: transform var(--transition), background var(--transition); }
.switch input:checked + .switch__track { background: var(--red); }
.switch input:checked + .switch__track::after { transform: translateX(20px); background: var(--paper); }
.switch input:focus-visible + .switch__track { outline: 2px solid var(--red); outline-offset: 2px; }

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* === THANK YOU === */
.thanks { min-height: 46vh; display: flex; align-items: center; }
.thanks__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(70px, 12vw, 150px); line-height: 1; color: var(--red); }
.thanks__title { font-size: clamp(32px, 5vw, 58px); margin: 10px 0 18px; }
.thanks__text { max-width: 56ch; margin-bottom: 30px; }
