/* =========================================================
   IRONWORKS STRENGTH — strength & conditioning / powerlifting gym
   Aesthetic: gritty strength. Near-black concrete, blood red,
   raw steel-grey. Heavy condensed uppercase display (Anton),
   clean sans body (Barlow). Hard edges, big numbers, raw.
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Tokens ---- */
:root {
  --black:    #0b0b0d;   /* near-black */
  --coal:     #131418;
  --coal-2:   #1a1c22;
  --steel:    #23262e;   /* raw steel-grey */
  --steel-2:  #2e323c;
  --iron:     #3a3f4b;
  --ash:      #8b9099;   /* muted text */
  --ash-2:    #b6bbc4;
  --chalk:    #eef0f2;   /* off-white */
  --red:      #e02323;   /* blood red */
  --red-d:    #a81414;
  --red-l:    #ff3b3b;
  --emerald:  #1fbf6b;   /* on-brand success */
  --emerald-d:#13934f;

  --display: "Anton", "Arial Narrow", sans-serif;
  --body:    "Barlow", system-ui, sans-serif;

  --mw: 1220px;
  --gutter: clamp(20px, 5vw, 64px);
  --shadow: 0 30px 70px -30px rgba(0,0,0,0.85);
  --shadow-red: 0 18px 50px -22px rgba(224,35,35,0.55);
  --concrete:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.018) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,0.014) 0 1px, transparent 1.5px),
    radial-gradient(circle at 45% 85%, rgba(0,0,0,0.25) 0 1px, transparent 2px);
}

/* ---- Base ---- */
body {
  font-family: var(--body);
  color: var(--ash-2);
  background: var(--black);
  font-size: 17px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

.wrap { max-width: var(--mw); margin: 0 auto; padding-inline: var(--gutter); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--chalk);
}

.display { font-family: var(--display); }
.red { color: var(--red); }
.steel-text { color: var(--ash); }

/* ---- Eyebrow ---- */
.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--red); }
.eyebrow.center { justify-content: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95em 1.6em;
  border: 2px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 94% 100%, 0 100%);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .2s ease;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-solid:hover { background: var(--red-l); transform: translateY(-2px); }
.btn-ghost { border-color: var(--iron); color: var(--chalk); clip-path: none; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-block { width: 100%; justify-content: center; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,11,13,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--steel);
}
.nav { display: flex; align-items: center; gap: 1.5rem; padding: 0.9rem 0; }
.brand { display: flex; flex-direction: column; line-height: 1; margin-right: auto; }
.brand-mark {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--chalk);
  text-transform: uppercase;
}
.brand-mark .fx { color: var(--red); }
.brand-sub {
  font-size: 0.6rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ash); margin-top: 4px; font-weight: 600;
}
.nav-links { display: flex; gap: 1.7rem; align-items: center; }
.nav-links a {
  font-family: var(--body); font-weight: 600; font-size: 0.84rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash-2);
  position: relative; padding: 4px 0; transition: color .18s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--red); transition: width .22s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--chalk); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.1rem; }
.nav-phone {
  font-family: var(--display); font-size: 1rem; color: var(--chalk);
  letter-spacing: 0.04em;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--chalk); transition: .25s; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, var(--black), var(--coal) 60%, var(--black)),
    var(--concrete);
  background-size: cover, 180px 180px, 220px 220px, 200px 200px;
  border-bottom: 1px solid var(--steel);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 75% 30%, rgba(224,35,35,0.16), transparent 70%);
  pointer-events: none;
}
.hero-bignum {
  position: absolute; right: -2%; bottom: -8%;
  font-family: var(--display); font-size: clamp(12rem, 30vw, 28rem);
  color: rgba(255,255,255,0.022); line-height: 0.8; pointer-events: none;
  letter-spacing: -0.02em;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
}
.hero h1 {
  font-size: clamp(3.4rem, 8.5vw, 7rem);
  margin: 1rem 0 1.2rem;
}
.hero h1 .out {
  -webkit-text-stroke: 2px var(--red); color: transparent;
  display: inline-block;
}
.hero-tag {
  font-size: 1.12rem; color: var(--ash-2); max-width: 30ch; margin-bottom: 2rem;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-tags span {
  font-family: var(--body); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700; color: var(--ash);
  border: 1px solid var(--steel-2); padding: 0.45em 0.9em;
}

/* hero media / barbell svg */
.hero-media { position: relative; }
.hero-plate {
  border: 1px solid var(--steel-2);
  background: linear-gradient(145deg, var(--coal-2), var(--black));
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  box-shadow: var(--shadow);
}
.hero-plate .badge {
  position: absolute; left: 0; bottom: -1px;
  background: var(--red); color: #fff; padding: 0.7rem 1.2rem;
  font-family: var(--display); letter-spacing: 0.05em;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.hero-plate .badge b { font-size: 1.4rem; }

/* ---- Section base ---- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.section.coal { background: var(--coal); border-block: 1px solid var(--steel); }
.section.dark {
  background: linear-gradient(180deg, var(--black), var(--coal-2)), var(--concrete);
  background-size: cover, 200px 200px, 240px 240px, 220px 220px;
}
.sec-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 0.8rem 0 1rem; }
.sec-head p { color: var(--ash); font-size: 1.06rem; max-width: 60ch; }
.sec-head.center p { margin-inline: auto; }

/* ---- Stat strip ---- */
.stats { background: var(--red); position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.07) 0 14px, transparent 14px 28px);
}
.stats-inner {
  position: relative; display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat { padding: clamp(1.8rem, 4vw, 2.8rem) 1rem; border-right: 1px solid rgba(0,0,0,0.18); }
.stat:last-child { border-right: none; }
.stat .n {
  font-family: var(--display); font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: #fff; line-height: 1;
}
.stat .l {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); font-weight: 700; margin-top: 0.5rem;
}

/* ---- Membership / pricing cards ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.price-card {
  background: linear-gradient(160deg, var(--coal-2), var(--black));
  border: 1px solid var(--steel); padding: 2.2rem 1.9rem;
  position: relative; transition: transform .22s ease, border-color .22s ease;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--iron); }
.price-card.feature { border-color: var(--red); box-shadow: var(--shadow-red); }
.price-card.feature::before {
  content: "Most Popular"; position: absolute; top: 0; right: 0;
  background: var(--red); color: #fff; font-family: var(--display);
  font-size: 0.72rem; letter-spacing: 0.14em; padding: 0.4em 0.9em;
}
.price-card .tier {
  font-family: var(--display); font-size: 1.5rem; color: var(--chalk);
  letter-spacing: 0.04em;
}
.price-card .blurb { color: var(--ash); font-size: 0.92rem; margin: 0.4rem 0 1.4rem; min-height: 2.6em; }
.price-card .price {
  font-family: var(--display); font-size: 3.2rem; color: var(--red); line-height: 1;
}
.price-card .price small { font-family: var(--body); font-size: 0.9rem; color: var(--ash); font-weight: 600; letter-spacing: 0.02em; }
.price-card .feats { margin: 1.5rem 0 1.8rem; display: grid; gap: 0.7rem; }
.price-card .feats li {
  font-size: 0.94rem; color: var(--ash-2); display: flex; gap: 0.6rem; align-items: flex-start;
}
.price-card .feats li::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px;
  background: var(--emerald);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 22%, 86% 8%, 38% 70%);
}

/* ---- Programme steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  background: var(--coal); border: 1px solid var(--steel); padding: 2rem 1.6rem;
  position: relative; counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 3.4rem; color: var(--steel-2);
  display: block; line-height: 0.8; margin-bottom: 1rem;
}
.step:hover::before { color: var(--red); }
.step h3 { font-size: 1.35rem; margin-bottom: 0.6rem; color: var(--chalk); }
.step p { font-size: 0.95rem; color: var(--ash); }

/* ---- Coaching feature ---- */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.feature-panel {
  background: linear-gradient(155deg, var(--steel), var(--coal));
  border: 1px solid var(--steel-2); padding: clamp(2rem, 4vw, 3rem);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}
.feature-list { display: grid; gap: 1.4rem; margin-top: 1.5rem; }
.feature-list .fl {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--steel);
}
.feature-list .fl:last-child { border-bottom: none; padding-bottom: 0; }
.feature-list .ico {
  flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center;
  border: 1px solid var(--red); color: var(--red);
}
.feature-list h4 { font-size: 1.15rem; color: var(--chalk); margin-bottom: 0.25rem; }
.feature-list p { font-size: 0.92rem; color: var(--ash); }

/* ---- Reviews / transformations ---- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--coal); border: 1px solid var(--steel); padding: 2rem 1.8rem;
  position: relative;
}
.review::before {
  content: "\201C"; font-family: var(--display); font-size: 4rem; color: var(--red);
  line-height: 0.6; display: block;
}
.review p { color: var(--ash-2); font-size: 1rem; margin: 0.5rem 0 1.4rem; line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 0.9rem; }
.review .av {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 2px;
  background: linear-gradient(135deg, var(--red), var(--red-d));
  display: grid; place-items: center; font-family: var(--display);
  color: #fff; font-size: 1.1rem;
}
.review .who b { color: var(--chalk); display: block; font-family: var(--display); letter-spacing: 0.03em; }
.review .who span { font-size: 0.78rem; color: var(--ash); letter-spacing: 0.08em; text-transform: uppercase; }
.review .pb {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-family: var(--display); font-size: 0.8rem; color: var(--emerald);
  letter-spacing: 0.06em;
}

/* ---- Blog teaser / list ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post {
  background: var(--coal); border: 1px solid var(--steel);
  transition: transform .22s ease, border-color .22s ease; overflow: hidden;
}
.post:hover { transform: translateY(-5px); border-color: var(--iron); }
.post .thumb {
  height: 160px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--steel), var(--black));
  border-bottom: 1px solid var(--steel);
}
.post .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(224,35,35,0.10) 0 10px, transparent 10px 22px);
}
.post .thumb.t2 { background: linear-gradient(135deg, var(--red-d), var(--black)); }
.post .thumb.t3 { background: linear-gradient(135deg, var(--coal-2), var(--steel-2)); }
.post .cat {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--red); color: #fff; font-family: var(--display);
  font-size: 0.68rem; letter-spacing: 0.1em; padding: 0.35em 0.8em;
}
.post .pbody { padding: 1.6rem 1.5rem; }
.post .meta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); font-weight: 700; }
.post h3 { font-size: 1.4rem; margin: 0.6rem 0 0.7rem; color: var(--chalk); line-height: 1; }
.post p { font-size: 0.92rem; color: var(--ash); margin-bottom: 1rem; }
.post .more { font-family: var(--display); color: var(--red); font-size: 0.85rem; letter-spacing: 0.06em; }

/* featured post */
.post-feature {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  border: 1px solid var(--steel); background: var(--coal); margin-bottom: 2.5rem;
}
.post-feature .pf-media {
  background: linear-gradient(140deg, var(--red-d), var(--black)), var(--concrete);
  background-size: cover, 160px 160px, 200px 200px, 180px 180px;
  min-height: 320px; position: relative;
}
.post-feature .pf-media .num {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--display); font-size: clamp(5rem, 12vw, 9rem);
  color: rgba(255,255,255,0.10);
}
.post-feature .pf-body { padding: clamp(2rem, 4vw, 3rem); align-self: center; }
.post-feature .pf-body h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.8rem 0 1rem; }
.post-feature .pf-body p { color: var(--ash); margin-bottom: 1.5rem; }

/* ---- CTA band ---- */
.cta-band {
  background: linear-gradient(120deg, var(--red-d), var(--red)), var(--concrete);
  background-size: cover, 180px 180px, 200px 200px, 220px 220px;
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,0.08) 0 16px, transparent 16px 32px);
}
.cta-band .wrap { position: relative; padding: clamp(3.5rem, 8vw, 6rem) var(--gutter); }
.cta-band h2 { font-size: clamp(2.6rem, 6vw, 5rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 1rem auto 2rem; max-width: 50ch; }
.cta-band .btn-solid { background: var(--black); }
.cta-band .btn-solid:hover { background: var(--coal-2); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ---- Filter bar (services) ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.2rem; align-items: center; }
.filter-btn {
  font-family: var(--display); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ash-2);
  border: 1px solid var(--steel-2); padding: 0.6em 1.1em; transition: .18s;
}
.filter-btn:hover { border-color: var(--red); color: var(--chalk); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.filter-count { margin-left: auto; font-size: 0.8rem; color: var(--ash); letter-spacing: 0.1em; text-transform: uppercase; }
.filter-count b { color: var(--red); font-family: var(--display); font-size: 1.1rem; }

.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.prog-card {
  background: var(--coal); border: 1px solid var(--steel); padding: 1.9rem 1.7rem;
  transition: transform .2s ease, border-color .2s ease;
}
.prog-card.hide { display: none; }
.prog-card:hover { transform: translateY(-4px); border-color: var(--iron); }
.prog-card .tag {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  color: var(--red); border: 1px solid var(--steel-2); padding: 0.3em 0.7em; display: inline-block;
}
.prog-card h3 { font-size: 1.5rem; margin: 0.9rem 0 0.5rem; color: var(--chalk); }
.prog-card p { font-size: 0.93rem; color: var(--ash); margin-bottom: 1.2rem; }
.prog-card .pf {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--steel); padding-top: 1rem;
}
.prog-card .pp { font-family: var(--display); font-size: 1.8rem; color: var(--chalk); }
.prog-card .pp small { font-family: var(--body); font-size: 0.8rem; color: var(--ash); font-weight: 600; }
.prog-card .dur { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash); }

/* ---- Schedule table ---- */
.sched { width: 100%; border-collapse: collapse; }
.sched th, .sched td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--steel); }
.sched th { font-family: var(--display); color: var(--red); letter-spacing: 0.06em; font-size: 0.92rem; }
.sched td { font-size: 0.92rem; color: var(--ash-2); }
.sched td .cls { font-weight: 700; color: var(--chalk); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ash); font-weight: 700; margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--black); border: 1px solid var(--steel-2);
  color: var(--chalk); padding: 0.85em 1em; transition: border-color .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.92rem; margin-top: 0.6rem; min-height: 1.4em; font-weight: 600; }

.info-card {
  background: var(--coal); border: 1px solid var(--steel); padding: 2rem 1.8rem; margin-bottom: 1.4rem;
}
.info-card h3 { font-size: 1.4rem; color: var(--chalk); margin-bottom: 1rem; }
.nap-row { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.7rem 0; border-bottom: 1px solid var(--steel); }
.nap-row:last-child { border-bottom: none; }
.nap-row .ico { flex: 0 0 22px; color: var(--red); margin-top: 2px; }
.nap-row .k { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ash); font-weight: 700; }
.nap-row .v { color: var(--ash-2); font-size: 0.96rem; }
.nap-row .v a:hover { color: var(--red); }

.hours { width: 100%; }
.hours tr { border-bottom: 1px solid var(--steel); }
.hours td { padding: 0.6rem 0; font-size: 0.94rem; }
.hours td:first-child { color: var(--ash); font-weight: 600; }
.hours td:last-child { text-align: right; color: var(--chalk); font-family: var(--display); letter-spacing: 0.04em; }
.hours .closed td:last-child { color: var(--red); }

/* faux map */
.map-wrap { border: 1px solid var(--steel); overflow: hidden; background: var(--coal); }
.map-wrap svg { display: block; width: 100%; height: auto; }

/* ---- Footer ---- */
.site-footer {
  background: var(--coal); border-top: 2px solid var(--red);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2rem; margin-bottom: 2.5rem; }
.foot-grid h4 { font-family: var(--display); color: var(--chalk); font-size: 1.05rem; letter-spacing: 0.06em; margin-bottom: 1rem; }
.foot-grid a, .foot-grid p { color: var(--ash); font-size: 0.92rem; display: block; margin-bottom: 0.5rem; }
.foot-grid a:hover { color: var(--red); }
.foot-brand .brand-mark { font-size: 1.7rem; }
.foot-brand p { margin-top: 0.8rem; max-width: 32ch; }
.foot-bottom {
  border-top: 1px solid var(--steel); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.foot-bottom small { color: var(--ash); font-size: 0.8rem; }
.disclaimer {
  margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--black);
  border: 1px solid var(--steel); color: var(--ash); font-size: 0.78rem;
  line-height: 1.5; letter-spacing: 0.02em;
}

/* ---- Accessibility / focus ---- */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
.filter-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.btn:focus-visible { outline-offset: 5px; }
::selection { background: var(--red); color: #fff; }

/* ---- Section divider rule ---- */
.rule {
  height: 2px; width: 60px; background: var(--red); margin: 1.4rem 0;
}

/* ---- Plate badge accent (reused chips) ---- */
.kicker-num {
  display: inline-block; font-family: var(--display); color: var(--red);
  font-size: 0.9rem; letter-spacing: 0.06em; border: 1px solid var(--steel-2);
  padding: 0.25em 0.7em; margin-bottom: 0.8rem;
}

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---- Misc ---- */
.lede { font-size: 1.2rem; color: var(--ash-2); line-height: 1.6; max-width: 62ch; }
.page-hero {
  background: linear-gradient(180deg, var(--black), var(--coal)), var(--concrete);
  background-size: cover, 200px 200px, 240px 240px, 220px 220px;
  border-bottom: 1px solid var(--steel); padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 20%, rgba(224,35,35,0.14), transparent 70%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(3rem, 8vw, 6rem); margin: 1rem 0; }
.crumb { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); font-weight: 700; }
.crumb a:hover { color: var(--red); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-grid, .feature-grid, .contact-grid, .post-feature { grid-template-columns: 1fr; }
  .price-grid, .rev-grid, .blog-grid, .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .post-feature .pf-media { min-height: 220px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-cta {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start; gap: 0.4rem;
    background: var(--coal); border-bottom: 1px solid var(--steel);
    padding: 1rem var(--gutter); display: none;
  }
  .nav.open .nav-links { display: flex; }
  .nav.open .nav-cta { display: flex; top: calc(100% + 0px); transform: translateY(160px); padding-top: 0; border: none; }
  .nav.open .nav-cta { position: static; transform: none; flex-direction: row; padding: 0 var(--gutter) 1rem; background: var(--coal); }
  .nav.open { position: relative; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.18); }
  .price-grid, .rev-grid, .blog-grid, .prog-grid, .steps, .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
}
@media (max-width: 760px) {
  .nav-links { z-index: 70; }
  .nav-cta { z-index: 70; top: auto; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
  .btn, .post, .price-card, .prog-card { transition: none; }
}

/* ---- Print ---- */
@media print {
  .site-header, .cta-band, .nav-toggle { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 1rem 0; }
}
