/* Patinedb — Career Advancement
   Brutalist editorial · off-white/black/red · Bilbao
   Type: Fraunces + JetBrains Mono */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #efece5;
  color: #0f0f0f;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --bg: #efece5;
  --bg-dark: #0f0f0f;
  --bg-cream: #f8f6f0;
  --ink: #0f0f0f;
  --ink-dim: #5e5e5e;
  --red: #d9342b;
  --red-soft: #f0a09a;
  --line: #0f0f0f;
  --container: 1280px;
  --pad: clamp(20px, 4vw, 40px);
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --serif: 'Fraunces', Georgia, serif;
}

h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.025em; line-height: 1; color: var(--ink); }
h1 { font-size: clamp(56px, 11vw, 180px); font-weight: 400; letter-spacing: -0.04em; }
h2 { font-size: clamp(40px, 6vw, 88px); font-weight: 500; }
h3 { font-size: clamp(26px, 3vw, 40px); }
h4 { font-size: 22px; font-weight: 600; }
.italic { font-style: italic; }
.red { color: var(--red); }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: '[ '; color: var(--ink); font-weight: 400;
}
.eyebrow::after {
  content: ' ]'; color: var(--ink); font-weight: 400;
}
p { color: var(--ink); font-family: var(--serif); }
.lede { font-size: 22px; line-height: 1.55; max-width: 60ch; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(80px, 9vw, 144px) 0; position: relative; }

/* === Header === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px; color: var(--ink); letter-spacing: -0.03em;
}
.brand .mark { color: var(--red); font-style: italic; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--mono); font-size: 13px;
  color: var(--ink); text-transform: lowercase;
  padding: 6px 0; position: relative;
  transition: color 0.3s ease;
}
.nav-links a::before { content: ''; }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--red);
}
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 14px 24px; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }
.burger { display: none; background: none; border: 0; flex-direction: column; gap: 4px; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--ink); }

/* === Hero (text-led, no image) === */
.hero {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--ink);
}
.hero-meta-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px; padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 56px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-meta-top .item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-top .item .label { color: var(--red); }
.hero-meta-top .item .value { color: var(--ink); }
.hero h1 { line-height: 0.92; }
.hero h1 .italic { color: var(--red); font-style: italic; }
.hero-bottom { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; margin-top: 56px; }
.hero-bottom p { font-family: var(--serif); font-size: 21px; line-height: 1.5; }
.hero-meta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; border: 1px solid var(--ink);
  transition: all 0.2s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: var(--ink); border-color: var(--ink); }

/* === Marquee strip === */
.marquee-strip {
  background: var(--ink); color: var(--bg-cream);
  padding: 24px 0; overflow: hidden;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 28px; font-weight: 500;
}
.marquee-track span::before { content: '✶ '; color: var(--red); margin-right: 16px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* === Section head === */
.sec-head {
  display: grid; grid-template-columns: 200px 1fr 1fr;
  gap: 32px; padding-bottom: 32px; align-items: end;
  border-bottom: 1px solid var(--ink); margin-bottom: 80px;
}
.sec-head .num { font-family: var(--mono); font-size: 13px; text-transform: uppercase; }
.sec-head .num strong { display: block; font-size: 56px; font-family: 'Fraunces', serif; font-weight: 400; line-height: 1; color: var(--red); margin-top: 8px; }
.sec-head h2 { max-width: 14ch; }
.sec-head p { font-size: 17px; color: var(--ink); max-width: 50ch; }

/* === Manifesto block === */
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--ink); }
.manifesto-cell {
  padding: 56px 48px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.manifesto-cell:nth-child(2n) { border-right: 0; }
.manifesto-cell:nth-last-child(-n+2) { border-bottom: 0; }
.manifesto-cell.dark { background: var(--ink); color: var(--bg); }
.manifesto-cell.dark h3 { color: var(--bg-cream); }
.manifesto-cell.dark p { color: #d1d1d1; }
.manifesto-cell .num { font-family: var(--mono); font-size: 13px; color: var(--red); text-transform: uppercase; margin-bottom: 24px; }
.manifesto-cell h3 { margin-bottom: 18px; }

/* === Service cards (numbered editorial) === */
.offering-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.offering-card {
  padding: 56px 36px; border-right: 1px solid var(--ink);
  position: relative;
  transition: background 0.3s ease;
}
.offering-card:last-child { border-right: 0; }
.offering-card:hover { background: var(--bg-cream); }
.offering-card .order { font-family: var(--mono); font-size: 14px; color: var(--red); text-transform: uppercase; margin-bottom: 16px; }
.offering-card h3 { margin-bottom: 18px; }
.offering-card p { font-size: 16px; margin-bottom: 28px; }
.offering-card ul { list-style: none; }
.offering-card li {
  padding: 12px 0; border-top: 1px solid var(--ink);
  font-family: var(--mono); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; gap: 12px;
}
.offering-card li::before { content: '→'; color: var(--red); }
.offering-card .meta {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding-top: 20px; margin-top: 28px; border-top: 1px solid var(--ink);
  display: flex; justify-content: space-between;
}
.offering-card .meta strong { color: var(--red); }

/* === Stats === */
.stats {
  background: var(--ink); color: var(--bg);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-cell { padding: 64px 32px; border-right: 1px solid #2a2a2a; }
.stat-cell:last-child { border-right: 0; }
.stat-cell .num {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(72px, 9vw, 144px); line-height: 1;
  color: var(--bg-cream); letter-spacing: -0.03em;
}
.stat-cell .num .red { color: var(--red); }
.stat-cell .label {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--red); margin-top: 18px;
}
.stat-cell p { color: #d1d1d1; font-size: 14px; margin-top: 14px; max-width: 28ch; }

/* === Process steps === */
.process-list { border-top: 1px solid var(--ink); }
.process-row {
  display: grid; grid-template-columns: 100px 1fr 1.5fr 220px;
  gap: 32px; padding: 40px 0; align-items: start;
  border-bottom: 1px solid var(--ink);
  transition: background 0.3s ease;
}
.process-row:hover { background: var(--bg-cream); }
.process-row .index { font-family: var(--mono); font-size: 13px; color: var(--red); text-transform: uppercase; }
.process-row h3 { font-size: 32px; line-height: 1.05; }
.process-row p { font-size: 16px; }
.process-row .when {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink);
}
.process-row .when strong { display: block; font-family: 'Fraunces', serif; font-style: italic; font-size: 22px; color: var(--red); margin-top: 4px; text-transform: none; letter-spacing: 0; }

/* === Consultants (editorial portraits) === */
.consultants-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 1px solid var(--ink);
}
.consultant {
  padding: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid; grid-template-rows: auto 1fr;
}
.consultant:nth-child(2n) { border-right: 0; }
.consultant:nth-last-child(-n+2) { border-bottom: 0; }
.consultant-img { aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--ink); }
.consultant-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.6); transition: filter 0.5s ease; }
.consultant:hover .consultant-img img { filter: grayscale(0); }
.consultant-body { padding: 36px 40px; }
.consultant-body .role { font-family: var(--mono); font-size: 12px; color: var(--red); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.consultant-body h3 { font-size: 36px; margin-bottom: 14px; }
.consultant-body p { font-size: 15px; margin-bottom: 16px; }
.consultant-body .creds { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--ink-dim); display: flex; flex-direction: column; gap: 4px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ink); }

/* === Testimonials === */
.testi-rows { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.testi-row {
  display: grid; grid-template-columns: 200px 1fr 240px;
  gap: 32px; padding: 64px 0; align-items: center;
  border-bottom: 1px solid var(--ink);
}
.testi-row:last-child { border-bottom: 0; }
.testi-row .meta { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); }
.testi-row .meta strong { display: block; color: var(--ink); font-family: 'Fraunces', serif; font-style: italic; font-size: 18px; margin-top: 6px; text-transform: none; letter-spacing: 0; }
.testi-row blockquote { font-family: 'Fraunces', serif; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; font-style: italic; max-width: 36em; }
.testi-row .who { display: flex; align-items: center; gap: 12px; }
.testi-row .who img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; filter: grayscale(0.4); }
.testi-row .who .name { font-weight: 500; font-size: 15px; }
.testi-row .who .role { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.04em; }

/* === Archive (magazine grid) === */
.archive-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}
.archive-card {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--ink); padding-top: 24px;
  transition: opacity 0.3s ease;
}
.archive-card:hover { opacity: 0.7; }
.archive-large { grid-column: span 7; }
.archive-medium { grid-column: span 5; }
.archive-small { grid-column: span 4; }
.archive-img { overflow: hidden; margin-bottom: 24px; }
.archive-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.archive-card:hover .archive-img img { transform: scale(1.04); }
.archive-large .archive-img { aspect-ratio: 16/10; }
.archive-medium .archive-img { aspect-ratio: 4/3; }
.archive-small .archive-img { aspect-ratio: 3/2; }
.archive-card .meta { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red); margin-bottom: 12px; display: flex; gap: 16px; }
.archive-card .meta .dot { color: var(--ink); }
.archive-card h3 { font-size: 26px; line-height: 1.15; margin-bottom: 12px; }
.archive-large h3 { font-size: clamp(28px, 3vw, 44px); }
.archive-card p { font-size: 15px; }
.archive-card .read { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--red); margin-top: auto; padding-top: 18px; border-top: 1px solid var(--ink); display: inline-block; }

/* === FAQ === */
.faq-list { max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.faq-item { padding: 32px 0; border-bottom: 1px solid var(--ink); cursor: pointer; }
.faq-item:last-child { border-bottom: 0; }
.faq-q { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: center; }
.faq-q .index { font-family: var(--mono); font-size: 13px; color: var(--red); text-transform: uppercase; }
.faq-q h3 { font-size: 28px; line-height: 1.15; }
.faq-q .ico { font-family: 'Fraunces', serif; font-size: 36px; color: var(--red); line-height: 1; transition: transform 0.3s ease; }
.faq-item.open .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s ease, margin 0.3s ease; padding-left: 104px; }
.faq-item.open .faq-a { max-height: 400px; margin-top: 18px; }
.faq-a p { font-size: 17px; max-width: 70ch; }

/* === Form === */
.form-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; }
.form-wrap > div:first-child { background: var(--ink); color: var(--bg); padding: clamp(40px, 5vw, 64px); }
.form-wrap > div:first-child .eyebrow { color: var(--red); }
.form-wrap > div:first-child h2 { color: var(--bg-cream); margin-bottom: 28px; }
.form-wrap > div:first-child p { color: #d1d1d1; }
.form { display: grid; gap: 18px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label { font-family: var(--mono); font-size: 11px; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; }
.form input, .form textarea, .form select {
  background: transparent; color: var(--bg);
  border: 0; border-bottom: 1px solid var(--bg-cream);
  padding: 12px 0; font-size: 17px; font-family: 'Fraunces', serif;
  transition: border-color 0.3s ease;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 0; border-color: var(--red); }
.form select { color: var(--bg); }
.form select option { color: var(--ink); }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-family: var(--mono); font-size: 12px; color: #d1d1d1; }
.form .consent input { width: auto; }
.form .consent a { color: var(--red); text-decoration: underline; }
.form textarea { resize: vertical; min-height: 100px; }
.form button { margin-top: 8px; background: var(--red); color: #fff; border: 1px solid var(--red); }
.form button:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

.contact-info .info-row {
  padding: 28px 0; border-bottom: 1px solid var(--ink);
  display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: start;
}
.contact-info .info-row:first-child { padding-top: 0; }
.contact-info .info-row .label { font-family: var(--mono); font-size: 12px; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info .info-row p { font-size: 18px; color: var(--ink); font-family: 'Fraunces', serif; }
.contact-info a:hover { color: var(--red); }

.map-wrap { margin-top: 64px; aspect-ratio: 21/9; border: 1px solid var(--ink); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(1.1); }

/* === Page head === */
.page-head { padding: 200px 0 80px; border-bottom: 1px solid var(--ink); }
.page-head .crumbs { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--red); letter-spacing: 0.06em; margin-bottom: 36px; }
.page-head .crumbs a { color: var(--ink); }
.page-head h1 { font-size: clamp(56px, 9vw, 144px); line-height: 0.95; }
.page-head .lede { margin-top: 40px; }

/* === Legal === */
.legal { max-width: 860px; margin: 0 auto; }
.legal h2 { font-size: 32px; margin: 56px 0 18px; font-weight: 500; }
.legal h3 { font-size: 20px; margin: 32px 0 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.04em; color: var(--red); }
.legal p, .legal li { font-size: 16px; line-height: 1.75; color: var(--ink); margin-bottom: 12px; font-family: 'Fraunces', serif; }
.legal ul { margin: 8px 0 20px 24px; }
.legal a { color: var(--red); text-decoration: underline; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); text-transform: uppercase; padding-bottom: 16px; border-bottom: 1px solid var(--ink); }
.legal table { font-family: var(--mono); }
.legal table th { color: var(--red) !important; }

/* === Footer === */
.site-footer { background: var(--ink); color: var(--bg); padding: 80px 0 28px; border-top: 1px solid var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid #2a2a2a; }
.site-footer h5 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; font-weight: 500; }
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: #d1d1d1; font-size: 16px; font-family: 'Fraunces', serif; transition: color 0.3s ease; }
.footer-grid a:hover { color: var(--red); }
.footer-brand .brand { color: var(--bg); font-size: 32px; margin-bottom: 18px; display: inline-block; }
.footer-brand .brand .mark { color: var(--red); }
.footer-brand p { color: #b8b8b8; max-width: 36ch; font-family: 'Fraunces', serif; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 44px; height: 44px;
  border: 1px solid #2a2a2a;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bg); transition: all 0.3s ease;
}
.socials a:hover { background: var(--red); border-color: var(--red); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--mono); font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-bottom a:hover { color: var(--red); }

/* === Cookie banner === */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  background: var(--ink); color: var(--bg);
  border: 1px solid var(--ink); border-top: 4px solid var(--red);
  padding: 24px 28px; z-index: 1000;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  max-width: 1000px; margin: 0 auto;
  transform: translateY(140%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: #d1d1d1; font-size: 14px; font-family: 'Fraunces', serif; }
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-banner .actions { display: flex; gap: 10px; }
.cookie-banner button {
  padding: 12px 22px; border: 1px solid; cursor: pointer;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cookie-accept { background: var(--red); color: #fff; border-color: var(--red); }
.cookie-reject { background: transparent; color: var(--bg); border-color: #2a2a2a; }

/* === Reveal === */
[data-reveal], [data-reveal-stagger] > * { opacity: 0; transform: translateY(28px); }
[data-reveal].animate, [data-reveal-stagger].animate > * { animation: revealUp 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
[data-reveal-stagger].animate > *:nth-child(1) { animation-delay: 0s; }
[data-reveal-stagger].animate > *:nth-child(2) { animation-delay: 0.08s; }
[data-reveal-stagger].animate > *:nth-child(3) { animation-delay: 0.16s; }
[data-reveal-stagger].animate > *:nth-child(4) { animation-delay: 0.24s; }
[data-reveal-stagger].animate > *:nth-child(5) { animation-delay: 0.32s; }
[data-reveal-stagger].animate > *:nth-child(6) { animation-delay: 0.4s; }
@keyframes revealUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1024px) {
  .hero-meta-top { grid-template-columns: 1fr 1fr; }
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; }
  .sec-head { grid-template-columns: 1fr; gap: 20px; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-cell { border-right: 0; }
  .manifesto-cell:nth-child(2n) { border-right: 0; }
  .offering-grid { grid-template-columns: 1fr; }
  .offering-card { border-right: 0; border-bottom: 1px solid var(--ink); }
  .offering-card:last-child { border-bottom: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell { border-bottom: 1px solid #2a2a2a; }
  .stat-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .process-row { grid-template-columns: 60px 1fr; }
  .process-row .when, .process-row p:last-of-type { grid-column: 1 / -1; }
  .consultants-grid { grid-template-columns: 1fr; }
  .consultant { border-right: 0; }
  .testi-row { grid-template-columns: 1fr; gap: 24px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-large, .archive-medium, .archive-small { grid-column: 1; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; gap: 14px; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); padding: 24px; border-bottom: 1px solid var(--ink); }
  .hero-meta-top { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: 0; border-bottom: 1px solid #2a2a2a; }
  .form .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-banner .actions { flex-wrap: wrap; }
  .faq-q { grid-template-columns: 50px 1fr 30px; gap: 14px; }
  .faq-a { padding-left: 64px; }
  .testi-row { padding: 40px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}
