/* ============================================================
   AMJ — section styles
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 22px;
}
.nav.solid {
  background: var(--scrim);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 14px;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { height: 42px; width: auto; display: block; transition: height 0.5s var(--ease), transform 0.5s var(--ease); }
.nav.solid .brand .logo { height: 36px; }
.brand:hover .logo { transform: scale(1.03); }
.brand .logo-dark { display: none; }
:root[data-theme="dark"] .brand .logo-light { display: none; }
:root[data-theme="dark"] .brand .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  padding: 9px 16px; border-radius: 999px; position: relative;
  transition: color 0.35s var(--ease);
}
.nav-links a::before {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::before { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  padding: 11px 22px; border-radius: 999px;
  border: 1px solid var(--accent); color: var(--ink);
  position: relative; overflow: hidden;
  transition: color 0.4s var(--ease);
}
.nav-cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.nav-cta:hover { color: var(--accent-ink); }
.nav-cta:hover::after { transform: scaleX(1); }
.nav-cta .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 oklch(0.585 0.108 244 / .6);} 70%{box-shadow:0 0 0 9px oklch(0.585 0.108 244 / 0);} 100%{box-shadow:0 0 0 0 oklch(0.585 0.108 244 / 0);} }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: -10% 0 0 0; z-index: 0; will-change: transform; }
.hero-bg .ph { width: 100%; height: 120%; border: 0; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, color-mix(in oklch, var(--bg), transparent 48%) 0%, color-mix(in oklch, var(--bg), transparent 64%) 40%, var(--bg) 96%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 100% 25%, 25% 100%;
  opacity: 0.4;
  mask-image: radial-gradient(120% 80% at 50% 40%, black, transparent 80%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; padding-top: clamp(110px, 16vh, 150px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

.hero h1 { margin-top: 22px; }
.hero .est {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em;
  color: var(--ink-2); text-transform: uppercase;
}
.hero .num { font-family: var(--serif); font-style: italic; }

.hero-meta { display: flex; gap: 46px; align-items: flex-end; flex-wrap: wrap; }
.hero-meta .lede { margin-bottom: 4px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* scroll cue */
.scroll-cue { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; }
.scroll-cue .bar { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position:absolute; top:-50%; left:0; width:100%; height:50%; background: var(--ink); animation: drop 2s var(--ease) infinite; }
/* minimal hero: centre the single statement, anchor the cue to the bottom-centre */
.hero-top { justify-content: center; }
.hero > .scroll-cue { position: absolute; z-index: 3; left: 0; right: 0; bottom: clamp(74px, 11vh, 120px); display: block; text-align: center; }
.hero > .scroll-cue .bar { display: block; margin: 0 auto 9px; }
@keyframes drop { 0%{ transform: translateY(0);} 100%{ transform: translateY(300%);} }

/* heritage marquee strip under hero */
.strip { border-block: 1px solid var(--line-soft); background: var(--bg-2); overflow: hidden; position: relative; z-index: 3; }
.strip .track {
  display: flex;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}
.strip-item {
  --strip-gap: clamp(24px, 2.8vw, 48px);
  display: inline-flex; align-items: center; gap: var(--strip-gap); flex: 0 0 auto;
  padding: 22px var(--strip-gap) 22px 0;
  font-family: var(--serif); font-size: 22px; line-height: 1; color: var(--ink-2);
  text-align: center;
}
.strip-item .star {
  color: var(--accent); font-size: 13px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transform: translateY(-0.02em);
}

/* ---------- ABOUT / PILLARS ---------- */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(38px, 5.4vw, 82px); align-items: start; }
.about-grid .h2 { font-size: clamp(32px, 3.45vw, 50px); }
.about-grid .lede { max-width: 46ch; font-size: clamp(15px, 1vw, 16.5px); line-height: 1.62; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.pillar {
  background: var(--bg); padding: 34px 30px 38px;
  position: relative; overflow: hidden;
  transition: background 0.5s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pillar:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px oklch(0.16 0.04 250 / 0.18);
}
.pillar h4 {
  font-family: var(--serif); font-weight: 500; font-size: 23px; margin: 20px 0 12px; line-height: 1.1;
  transition: color 0.4s var(--ease);
}
.pillar p {
  color: var(--ink-3); font-size: 15px; line-height: 1.6;
  transition: color 0.4s var(--ease);
}
.pillar:hover h4 { color: var(--accent-ink); }
.pillar:hover p { color: oklch(0.96 0.006 250 / 0.82); }
.pillar .pbar { position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--accent); transition: height 0.6s var(--ease); }
.pillar:hover .pbar { height: 100%; background: var(--accent-ink); opacity: 0.82; }

/* ---------- COUNTERS / INFRASTRUCTURE ---------- */
.infra { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 56px; }
.stat {
  background: var(--bg-2);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  min-height: 190px;
}
.stat::before {
  content: "";
  position: absolute;
  inset: auto 24px 24px 24px;
  height: 1px;
  background: var(--line-soft);
}
.stat .val { font-family: var(--serif); font-size: clamp(48px, 6vw, 86px); line-height: 0.9; letter-spacing: -0.02em; }
.stat .val .u { color: var(--accent); font-size: 0.4em; vertical-align: super; font-style: italic; }
.stat .lab { margin-top: 16px; font-size: 14px; color: var(--ink-3); letter-spacing: 0.02em; }
.stat .ic { position: absolute; right: 26px; top: 30px; width: 30px; height: 30px; color: var(--ink-3); opacity: 0.5; }
.stat-lane {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  overflow: hidden;
}
.stat-lane::after {
  content: "";
  position: absolute;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-120%);
  animation: statLane 3.1s linear infinite;
}
.stat:nth-child(2) .stat-lane::after { animation-delay: 0.35s; }
.stat:nth-child(3) .stat-lane::after { animation-delay: 0.7s; }
.stat:nth-child(4) .stat-lane::after { animation-delay: 1.05s; }
@keyframes statLane {
  to { transform: translateX(280%); }
}

/* ---------- BRANDS ---------- */
.brand-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px); margin-top: 56px;
}
.brand-preview {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: 34px;
  background: transparent;
  border: 0;
}
.brand-directory {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}
.brand-cell {
  background: oklch(0.995 0.002 250); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: 0 10px 28px oklch(0 0 0 / 0.035);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.brand-preview .brand-cell {
  min-height: 138px;
  background: oklch(0.995 0.002 250);
  border: 1px solid var(--line-soft);
}
.brand-directory .brand-cell { min-height: 142px; }
.brand-cell.has-logo {
  flex-direction: column;
  gap: 12px;
  padding: clamp(18px, 3vw, 30px);
}
.brand-cell .brand-logo {
  width: auto;
  height: auto;
  max-width: min(74%, 230px);
  max-height: 88px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.34s var(--ease), filter 0.34s var(--ease), opacity 0.34s var(--ease);
}
.brand-cell.has-logo::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  z-index: 2;
}
.brand-cell.has-logo .name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.brand-cell .name {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 500; color: var(--ink-2);
  letter-spacing: 0.02em; transition: transform 0.55s var(--ease), color 0.4s var(--ease); z-index: 2;
  text-align: center; padding: 0 16px;
}
.brand-cell .cat {
  position: absolute; bottom: 18px; left: 0; right: 0; text-align: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
  opacity: 0; transform: translateY(10px); transition: all 0.5s var(--ease); z-index: 2;
}
.brand-cell::before { display: none; }
.brand-cell:hover {
  border-color: color-mix(in oklch, var(--accent), var(--line-soft) 56%);
  box-shadow: 0 18px 42px oklch(0 0 0 / 0.075);
}
.brand-cell:hover::after { opacity: 0; transform: scaleX(0.4); }
.brand-cell:hover .brand-logo { transform: translate3d(0, -4px, 40px) scale(1.045); filter: saturate(1.05) drop-shadow(0 10px 16px oklch(0 0 0 / 0.12)); }
.brand-cell:hover .name { color: var(--ink); transform: translate3d(0, -8px, 40px); }
.brand-cell:hover .cat { opacity: 1; transform: translateY(0); }
.brand-cta-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.brand-note {
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-3);
  font-size: 14px;
}
.brand-note b {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
  font-weight: 500;
}
.brand-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 38px;
  border-block: 1px solid var(--line-soft);
}
.brand-proof div {
  padding: 22px clamp(14px, 2vw, 26px);
  border-right: 1px solid var(--line-soft);
}
.brand-proof div:last-child { border-right: 0; }
.brand-proof b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.brand-proof span {
  display: block;
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.brand-proof-home {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  border: 0;
}
.brand-proof-home div,
.brand-proof-home div:last-child {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: color-mix(in oklch, var(--bg), var(--accent) 2.5%);
}
.brand-proof-home b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-proof-home span {
  margin-top: 0;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-3);
}

/* ---------- RESTAURANTS ---------- */
.resto { display: flex; flex-direction: column; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); margin-top: 56px; }
.resto-row {
  background: var(--bg); display: grid; grid-template-columns: 150px 1fr 1fr 190px; align-items: center;
  gap: 32px; padding: 30px 36px; position: relative; transition: background 0.5s var(--ease);
}
.resto-row:hover { background: var(--bg-2); }
.resto-row .rno { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.resto-logo-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: oklch(0.995 0.002 250);
  box-shadow: 0 10px 28px oklch(0 0 0 / 0.035);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.resto-logo-card::before { display: none; }
.resto-logo-card .rno {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
}
.resto-logo-card img {
  width: auto;
  max-width: 112px;
  max-height: 58px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.34s var(--ease), filter 0.34s var(--ease);
}
.resto-logo-dark { border-color: var(--line-soft); }
.resto-logo-dark img {
  filter: brightness(0) saturate(1) invert(17%) sepia(22%) saturate(980%) hue-rotate(169deg) brightness(92%);
}
.resto-logo-light { background: oklch(0.995 0.002 250); }
.resto-row:hover .resto-logo-card {
  transform: translateY(-3px) scale(1.015);
  border-color: color-mix(in oklch, var(--accent), var(--line-soft) 50%);
  box-shadow: 0 18px 38px oklch(0 0 0 / 0.08);
}
.resto-row:hover .resto-logo-card img { transform: translateY(-4px) scale(1.045); filter: saturate(1.06) drop-shadow(0 10px 16px oklch(0 0 0 / 0.12)); }
.resto-row .rname { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 500; line-height: 1; transition: transform 0.5s var(--ease); }
.resto-row:hover .rname { transform: translateX(8px); }
.resto-row .rtag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-top: 12px; }
.resto-row .rdesc { color: var(--ink-3); font-size: 14.5px; line-height: 1.6; }
.resto-row .rcta { justify-self: end; }
/* hover preview thumb */
.resto-thumb {
  position: fixed; width: 280px; height: 200px; z-index: 40; pointer-events: none;
  opacity: 0; transform: scale(0.92) rotate(-3deg); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  border-radius: 8px; overflow: hidden; box-shadow: 0 30px 80px oklch(0 0 0 / 0.6);
}
.resto-thumb.show { opacity: 1; transform: scale(1) rotate(-2deg); }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 56px; }
.news-card { display: flex; flex-direction: column; gap: 0; }
.news-card .nimg { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.news-card .nimg .ph { width: 100%; height: 100%; transition: transform 0.8s var(--ease); }
.news-card:hover .nimg .ph { transform: scale(1.05); }
.news-card .nmeta { display: flex; gap: 14px; align-items: center; margin-top: 22px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.news-card .nmeta .dt { color: var(--ink-3); }
.news-card h4 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.12; margin: 14px 0; transition: color 0.4s var(--ease); }
.news-card:hover h4 { color: var(--accent); }
.news-card p { color: var(--ink-3); font-size: 15px; }

/* ---------- CLIENTS / COVERAGE ---------- */
.cover { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.cover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.map-ph { aspect-ratio: 4/3; border-radius: 10px; }
.client-logos {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  margin-top: 34px; perspective: 1100px;
}
.client-logo-card {
  position: relative; min-height: 124px; overflow: visible;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: oklch(0.995 0.002 250);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  box-shadow: 0 10px 28px oklch(0 0 0 / 0.035);
  padding: 18px 16px;
  animation: clientFloat 6s var(--ease) infinite alternate;
  animation-delay: calc(var(--i, 0) * -1.4s);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.client-logo-card::before { display: none; }
.client-logo-card:hover {
  border-color: color-mix(in oklch, var(--accent), var(--line-soft) 56%);
  box-shadow: 0 18px 42px oklch(0 0 0 / 0.075);
}
.client-logo-card img {
  position: relative; z-index: 2; width: clamp(150px, 78%, 230px); max-width: 100%; height: auto;
  filter: saturate(0.95); transition: transform 0.34s var(--ease), filter 0.34s var(--ease);
}
.client-logo-card:hover img { transform: translateY(-4px) scale(1.045); filter: saturate(1.08) drop-shadow(0 10px 16px oklch(0 0 0 / 0.12)); }
.client-logo-card span {
  position: relative; z-index: 2; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3);
}
@keyframes clientFloat {
  0% { translate: 0 0; }
  100% { translate: 0 -8px; }
}
.client-channels {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
}
.client-channels span {
  border: 1px solid var(--line-soft); background: var(--bg); color: var(--ink-3);
  border-radius: 999px; padding: 8px 12px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
:root[data-motion="off"] .client-logo-card { animation: none; }

/* ---------- Coverage stage: network animation behind, content centred ---------- */
.cover-stage {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(640px, 84vh, 880px);
  background: oklch(0.15 0.035 252);
  border-block: 1px solid oklch(0.32 0.05 250 / 0.45);
}
.cover-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cover-bg .netmap {
  position: absolute; inset: 0; width: 100%; height: 100%;
  aspect-ratio: auto; border-radius: 0;
  box-shadow: inset 0 0 200px oklch(0.07 0.03 250 / 0.7);
}
.cover-scrim {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background:
    radial-gradient(72% 58% at 50% 50%, oklch(0.12 0.03 250 / 0.80), transparent 72%),
    linear-gradient(to bottom, oklch(0.12 0.03 250 / 0.55), transparent 20%, transparent 80%, oklch(0.12 0.03 250 / 0.55));
}
.cover-inner {
  position: relative; z-index: 4;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.cover-inner > .reveal { width: 100%; display: flex; flex-direction: column; align-items: center; }
.cover-stage .kicker { justify-content: center; color: oklch(0.80 0.07 240); }
.cover-stage .h2 { color: oklch(0.97 0.012 250); text-shadow: 0 2px 26px oklch(0.08 0.02 250 / 0.7); }
.cover-stage .h2 .it { color: oklch(0.84 0.045 75); }
.cover-stage .lede { color: oklch(0.87 0.02 250 / 0.85); max-width: 56ch; margin-inline: auto; text-shadow: 0 1px 16px oklch(0.08 0.02 250 / 0.6); }
.cover-inner .client-logos { max-width: 760px; width: 100%; margin-inline: auto; }
.cover-stage .client-logo-card {
  background: oklch(0.98 0.006 250 / 0.96); border-radius: 14px;
  min-height: 110px; padding: 16px 14px; overflow: hidden;
  box-shadow: 0 22px 48px oklch(0.05 0.03 250 / 0.5);
}
.cover-stage .client-logo-card::before { display: none; }
.cover-stage .client-logo-card img { width: clamp(120px, 76%, 180px); filter: none; }
.cover-stage .client-logo-card span { color: oklch(0.46 0.02 250); }
.cover-stage .client-channels { justify-content: center; }
.cover-stage .client-channels span {
  border-color: oklch(0.72 0.04 250 / 0.32);
  background: oklch(0.55 0.04 250 / 0.16);
  color: oklch(0.87 0.02 250 / 0.9);
}
.cover-stage .netmap-legend { color: oklch(0.9 0.02 250 / 0.66); }

/* ---------- Section surface rhythm ---------- */
body > .hero ~ .sect:not(.cover-stage):nth-of-type(even),
body > .page-hero ~ .sect:not(.cover-stage):nth-of-type(even) {
  background: var(--bg);
  border-block-color: transparent;
}
body > .hero ~ .sect:not(.cover-stage):nth-of-type(odd),
body > .page-hero ~ .sect:not(.cover-stage):nth-of-type(odd) {
  background: var(--bg-2);
  border-block: 1px solid var(--line-soft);
}

/* ---------- NEWSLETTER ---------- */
.news-cta { position: relative; overflow: hidden; }
.news-cta .ring { position: absolute; border: 1px solid var(--line-soft); border-radius: 50%; left: 50%; top: 50%; translate: -50% -50%; pointer-events: none; opacity: 0.5; }
.sub-form { display: flex; gap: 12px; margin-top: 40px; max-width: 520px; }
.sub-form input {
  flex: 1; background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
  padding: 17px 22px; border-radius: 999px; font-family: var(--sans); font-size: 16px;
  transition: border-color 0.4s var(--ease);
}
.sub-form input::placeholder { color: var(--ink-3); }
.sub-form input:focus { outline: none; border-color: var(--accent); }
.sub-note { margin-top: 18px; font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }

/* ---------- FOOTER ---------- */
.foot { border-top: 1px solid var(--line-soft); padding-block: 70px 36px; position: relative; z-index: 2; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot li,
.foot ul a { color: var(--ink-2); font-size: 15px; line-height: 1.45; }
.foot ul a { transition: color 0.35s var(--ease), padding-left 0.35s var(--ease); }
.foot ul a:hover { color: var(--accent); padding-left: 6px; }
.foot-group { margin-top: 2px; }
.foot-group-label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.foot-group ul { gap: 10px; padding-left: 12px; border-left: 1px solid var(--line-soft); }
.foot .fbrand .foot-logo { display: block; height: 50px; width: auto; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line-soft); flex-wrap: wrap; gap: 16px; }
.foot-bottom p { font-size: 13px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.04em; }
.foot-social { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.foot-social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink-2); transition: all 0.4s var(--ease); }
.foot-social a svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.foot-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: translateY(-3px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .about-grid, .cover-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .brand-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .resto-row { grid-template-columns: 128px 1fr; gap: 14px 22px; }
  .resto-row .rdesc { grid-column: 2; }
  .resto-row .rcta { grid-column: 2; justify-self: start; margin-top: 8px; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .pillars, .brands-grid, .stats { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .brand .sub { display: none; }
}
