:root {
  --ink: #12171c;
  --muted: #5a6570;
  --cyan: #2ac4e8;
  --cyan-deep: #087a9e;
  --cyan-soft: #e7f7fc;
  --paper: #f3f6f8;
  --white: #ffffff;
  --line: #e2e8ec;
  --night: #101418;
  --night-2: #1a2128;
  --shadow: 0 18px 50px rgba(16, 20, 24, 0.08);
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Barlow", "Source Sans 3", sans-serif;
  --max: 1160px;
  --head: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
:focus-visible {
  outline: 2px solid var(--cyan-deep);
  outline-offset: 3px;
}
.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--white);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--head);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-head .bar {
  position: relative;
}
.site-head.scrolled { border-bottom-color: var(--line); }
.bar {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.links a:hover { color: var(--cyan-deep); }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--night);
  color: white;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
}
.ig-link svg { width: 16px; height: 16px; }
.ig-link:hover { background: #24303a; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - var(--head));
  color: white;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: 0;
  transform: scale(1.02);
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(90% 70% at 18% 78%, rgba(10, 14, 18, 0.52), transparent 62%),
    linear-gradient(180deg, rgba(10, 14, 18, 0.12) 0%, transparent 38%, rgba(10, 14, 18, 0.44) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 0 max(24px, calc((100% - var(--max)) / 2));
  padding: 56px 0 52px;
  max-width: 620px;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 8% -8% -6% -10%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 35% 55%, rgba(10, 14, 18, 0.42), transparent 70%);
}
.eyebrow {
  margin: 0;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.lede {
  max-width: 42ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
}
.btn-cyan { background: var(--cyan); color: #062028; }
.btn-cyan:hover { background: #5fd4f0; }
.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(16, 20, 24, 0.22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: white;
  background: rgba(16, 20, 24, 0.38);
}
.btn-dark { background: var(--night); color: white; }
.btn-dark:hover { background: #24303a; }
.btn-line {
  border: 1px solid var(--line);
  background: white;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 36px 0 0;
  padding: 18px 0 0;
  list-style: none;
  max-width: 480px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.stats li {
  padding-right: 16px;
}
.stats li + li {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  line-height: 1.35;
}

.section { padding: 88px 0; }
.section-head {
  margin-bottom: 36px;
  max-width: 760px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.section-head p { margin: 10px 0 0; color: var(--muted); max-width: 620px; }

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.about p { margin: 0 0 16px; }
.about p:last-child { margin-bottom: 0; }
.frame {
  background: var(--paper);
  border-radius: 28px;
  padding: 14px;
}
.frame img { border-radius: 18px; width: 100%; height: auto; }
.frame figcaption { margin: 12px 8px 4px; color: var(--muted); font-size: 13px; }
.logo-frame {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 45%, rgba(42, 196, 232, 0.14), transparent 58%),
    var(--paper);
}
.logo-frame img {
  width: min(280px, 70%);
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 52px;
  padding-top: 4px;
  border-top: 1px solid var(--ink);
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 88px;
  height: 3px;
  background: var(--cyan);
}
.pillar {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 32px 28px 12px 0;
  min-height: 220px;
  background: none;
  border-radius: 0;
}
.pillar + .pillar {
  padding-left: 28px;
  border-left: 1px solid rgba(18, 23, 28, 0.12);
}
.pillar-num {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(8, 122, 158, 0.38);
  text-stroke: 1.4px rgba(8, 122, 158, 0.38);
}
.pillar:first-child .pillar-num {
  -webkit-text-stroke-color: var(--cyan-deep);
  color: rgba(42, 196, 232, 0.12);
}
.pillar-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid transparent;
}
.pillar:hover .pillar-copy {
  border-top-color: rgba(42, 196, 232, 0.45);
}
.pillar h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 28ch;
}

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

.president {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--night);
  color: white;
  border-radius: 28px;
  padding: 22px;
  margin-bottom: 18px;
}
.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: #062028;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
}
.president .avatar { width: 96px; height: 96px; font-size: 32px; }
.role {
  margin: 0 0 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.president h3 { margin: 0; font-family: var(--display); font-size: 32px; letter-spacing: -0.015em; }
.president p { margin: 6px 0 0; color: #c5d0d6; max-width: 520px; font-size: 15px; }

.board-accord {
  margin-top: 14px;
}
.board-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 23, 28, 0.12);
  border-radius: 18px;
  background: white;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.board-toggle:hover {
  border-color: rgba(8, 122, 158, 0.35);
}
.board-toggle-copy {
  display: grid;
  gap: 4px;
}
.board-toggle-copy strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.015em;
}
.board-toggle-copy span {
  color: var(--muted);
  font-size: 14px;
}
.board-chevron {
  width: 12px;
  height: 12px;
  flex: none;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.board-toggle.is-open .board-chevron {
  transform: rotate(225deg);
  margin-top: 4px;
}
.board-panel {
  margin-top: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(18, 23, 28, 0.08);
}
.board-tools {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}
.search {
  width: min(280px, 100%);
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 12px 16px;
}
.board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.person {
  display: flex;
  gap: 12px;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 12px;
}
.person .avatar { width: 46px; height: 46px; font-size: 15px; flex: none; }
.person strong { display: block; font-size: 15px; }
.person span { color: var(--muted); font-size: 13px; }
.empty-filter { margin-top: 16px; color: var(--muted); }

.members-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(500px 180px at 0% 0%, rgba(42, 196, 232, 0.16), transparent 60%),
    var(--night);
  color: white;
}
.members-stat {
  display: grid;
  justify-items: start;
  gap: 4px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.members-stat b {
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.members-stat span {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.members-copy h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.015em;
}
.members-copy p {
  margin: 0 0 18px;
  color: #c5d0d6;
  max-width: 42ch;
}
.members-band .firm-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.members-band .firm {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
}
.members-band .firm span { color: #9aa7b0; font-size: 14px; }

.issue {
  background: white;
  border-radius: 28px;
  padding: 12px;
}
.issue-cover {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  align-items: stretch;
}
.issue-cover img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 18px;
}
.issue-cover div {
  padding: 36px 32px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.issue time {
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.issue-cover h3 {
  margin: 12px 0;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.issue-cover p {
  margin: 0;
  color: var(--muted);
  max-width: 38ch;
}
.issue .more {
  display: inline-block;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 3px;
}
.issue .more:hover { color: var(--cyan-deep); }
.issue-list {
  list-style: none;
  margin: 8px 8px 4px;
  padding: 0;
}
.issue-list li {
  border-top: 1px solid var(--line);
}
.issue-item {
  display: grid;
  grid-template-columns: 148px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 8px;
  text-decoration: none;
  color: inherit;
}
.issue-item:hover h3 { color: var(--cyan-deep); }
.issue-item img {
  width: 148px;
  height: 96px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: var(--paper);
}
.issue-item.poster img {
  object-fit: cover;
  object-position: center top;
  background: var(--night);
}
.issue-item time {
  display: block;
  margin-bottom: 6px;
}
.issue-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.issue-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.issue-item .go {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--ink);
}
.issue-item:hover .go { color: var(--cyan-deep); }

.ig-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  max-width: none;
}
.ig-grid {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}
.shot {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--night);
  aspect-ratio: 1;
  text-decoration: none;
  color: white;
}
.shot.wide { grid-column: span 2; aspect-ratio: 16/10; }
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.poster img { object-fit: contain; background: #0c1014; }
.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  font-size: 13px;
  font-weight: 700;
}
.shot.poster figcaption { background: linear-gradient(transparent, rgba(0,0,0,0.55)); }

.site-foot {
  background:
    radial-gradient(900px 280px at 10% 0%, rgba(42, 196, 232, 0.12), transparent 55%),
    var(--night);
  color: #c8d2d9;
  padding: 56px 0 28px;
}
.foot-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.site-foot .foot-logo {
  width: 64px;
  height: 64px;
  flex: none;
  object-fit: contain;
  background: white;
  border-radius: 50%;
}
.foot-brand strong {
  display: block;
  color: white;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.foot-brand span {
  display: block;
  margin-top: 6px;
  color: #95a3ad;
  font-size: 13px;
}
.foot-tag {
  margin: 0;
  max-width: 34ch;
  text-align: right;
  color: #a7b4bd;
  font-size: 15px;
  line-height: 1.5;
}
.foot-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.foot-nav a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-nav a:hover {
  background: rgba(42, 196, 232, 0.14);
  border-color: rgba(42, 196, 232, 0.35);
  color: var(--cyan);
}
.foot-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
  text-decoration: none;
  color: #062028;
  background: var(--cyan);
  border-radius: 999px;
  padding: 11px 16px 11px 12px;
  font-size: 14px;
  font-weight: 800;
}
.foot-ig:hover { background: #5fd4f0; }
.foot-ig svg { width: 18px; height: 18px; display: block; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  color: #7f8d97;
  font-size: 13px;
}
.foot-bottom p { margin: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 12, 0.88);
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 100%); max-height: 84vh; border-radius: 12px; }
.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.reveal { animation: rise 0.7s ease both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
}

@media (max-width: 980px) {
  .hero, .about, .issue-cover { grid-template-columns: 1fr; }
  .hero {
    min-height: min(100svh - var(--head), 760px);
    align-items: flex-end;
  }
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    padding: 36px 0 32px;
    width: min(var(--max), calc(100% - 28px));
  }
  .hero-veil {
    background:
      radial-gradient(100% 70% at 50% 88%, rgba(10, 14, 18, 0.58), transparent 58%),
      linear-gradient(180deg, rgba(10, 14, 18, 0.12) 0%, transparent 34%, rgba(10, 14, 18, 0.48) 100%);
  }
  .hero h1 br { display: none; }
  .stats { max-width: none; }
  .issue-cover img { min-height: 200px; height: 220px; }
  .issue-cover div { padding: 10px 8px 16px; }
  .issue-item {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px 2px;
  }
  .issue-item img {
    width: 96px;
    height: 96px;
  }
  .issue-item .go { display: none; }
  .president {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px;
  }
  .president .avatar { width: 72px; height: 72px; font-size: 24px; }
  .president h3 { font-size: 26px; }
  .board-tools { justify-content: stretch; }
  .board-tools .search { width: 100%; }
  .board, .ig-grid { grid-template-columns: 1fr 1fr; }
  .members-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .members-stat {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .pillars { grid-template-columns: 1fr; }
  .pillar {
    min-height: 0;
    padding: 24px 0;
    gap: 14px;
    grid-template-columns: 72px 1fr;
    align-items: start;
  }
  .pillar + .pillar {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(18, 23, 28, 0.12);
  }
  .pillar-num { font-size: 48px; }
  .shot.wide { grid-column: span 2; }
  .links { display: none; }
  .ig-link.desk { display: none; }
  .nav-toggle { display: inline-block; }
  .bar { gap: 12px; }
  .links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--head);
    left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    gap: 14px;
    z-index: 31;
  }
  .section { padding: 56px 0; }
  .site-foot { padding: 40px 0 24px; }
  .foot-top,
  .foot-mid,
  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-tag { text-align: left; max-width: none; }
  .foot-ig { align-self: flex-start; }
}
@media (max-width: 640px) {
  .wrap { width: min(var(--max), calc(100% - 24px)); }
  .stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stats li { padding: 0; }
  .stats li + li {
    padding: 12px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .board, .ig-grid { grid-template-columns: 1fr; }
  .shot.wide { grid-column: auto; aspect-ratio: 16/10; }
  .brand small { display: none; }
  .brand img { width: 44px; height: 44px; }
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .lede { font-size: 16px; }
  .hero-actions { gap: 8px; }
  .btn { min-height: 44px; }
  .ig-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .president { grid-template-columns: 1fr; }
  .issue {
    padding: 8px;
    border-radius: 20px;
  }
  .issue-cover h3 { font-size: 26px; }
  .issue-list h3 { font-size: 16px; }
  .issue-list p { font-size: 14px; }
  .pillar {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pillar h3 { font-size: 22px; }
  .foot-nav { gap: 6px; }
  .foot-nav a { padding: 9px 12px; font-size: 13px; }
  .foot-bottom { gap: 8px; font-size: 12px; }
  body { overflow-x: hidden; }
}
