/* ─────────────────────────────────────────
   ZACH GLASS — PORTFOLIO
   ───────────────────────────────────────── */

/* ── Password Gate ── */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 360px;
  padding: 0 24px;
  text-align: center;
}

.gate-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #f0ede7;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.gate-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #f0ede7;
  letter-spacing: -0.01em;
}

.gate-sub {
  font-size: 13px;
  font-weight: 300;
  color: #5a5a5a;
  letter-spacing: 0.04em;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.gate-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: #f0ede7;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
}

.gate-input:focus {
  border-color: #7d9e7e;
}

.gate-btn {
  width: 100%;
}

.gate-error {
  font-size: 12px;
  color: #c97c7c;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.2s;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Variables ── */
:root {
  --dark:          #0d0d0d;
  --dark-2:        #141414;
  --light:         #f7f4ef;
  --light-2:       #ede9e1;
  --text-d:        #f0ede7;
  --text-muted-d:  #5a5a5a;
  --text-l:        #111111;
  --text-muted-l:  #888;
  --accent:        #7d9e7e;
  --accent-dim:    rgba(125,158,126,0.12);
  --border-d:      rgba(255,255,255,0.07);
  --border-l:      rgba(0,0,0,0.08);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max:     1160px;
  --pad-x:   clamp(20px, 5vw, 80px);
  --section: clamp(80px, 10vw, 130px);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text-d);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Typography ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

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

.container--narrow {
  max-width: 800px;
}

/* ── Section base ── */
.section {
  padding: var(--section) 0;
}

.section--dark {
  background: var(--dark);
  color: var(--text-d);
}

.section--light {
  background: var(--light);
  color: var(--text-l);
}

.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-l);
  margin-bottom: 48px;
}

.section-label--light {
  color: var(--text-muted-d);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: #0d0d0d;
}

.btn--primary:hover {
  background: #8fad90;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-d);
  border: 1px solid var(--border-d);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--large {
  padding: 18px 36px;
  font-size: 14px;
}

.btn-icon {
  font-size: 15px;
}

/* ────────────────────────────────
   NAV
──────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--pad-x);
  transform: translateY(-100%);
  transition: transform 0.35s ease, background 0.35s ease;
}

.nav.visible {
  transform: translateY(0);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-d);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.gate-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted-d);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text-d); }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.75; }

/* ────────────────────────────────
   HERO
──────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad-x) 80px;
  position: relative;
}

.hero .container {
  padding: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-d);
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--text-muted-d);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-footer {
  margin-top: auto;
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 64px;
}

.hero-footer-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-footer-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted-d);
}

.hero-footer-value {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-d);
  letter-spacing: 0.01em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  right: var(--pad-x);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.scroll-cue:hover { opacity: 0.8; }

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: var(--text-d);
  animation: scrollPulse 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}

/* ────────────────────────────────
   POSITIONING
──────────────────────────────── */
.positioning-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.positioning-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.positioning-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--text-l);
  border: none;
  padding: 0;
}

.positioning-body {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted-l);
}

/* Headshot slot */
.headshot-slot {
  position: sticky;
  top: 80px;
}

.headshot-slot .img-placeholder {
  aspect-ratio: 3 / 4;
  width: 100%;
}

/* ────────────────────────────────
   IMAGE PLACEHOLDERS
──────────────────────────────── */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.img-placeholder--light {
  background: #edeae3;
  border: 1px dashed rgba(0,0,0,0.18);
}

.img-placeholder--dark {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.14);
}

.img-placeholder-icon {
  opacity: 0.35;
}

.img-placeholder--light .img-placeholder-icon {
  color: var(--text-l);
}

.img-placeholder--dark .img-placeholder-icon {
  color: var(--text-d);
}

.img-placeholder-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.img-placeholder--light .img-placeholder-label {
  color: var(--text-muted-l);
}

.img-placeholder--dark .img-placeholder-label {
  color: var(--text-muted-d);
}

.img-placeholder-hint {
  font-size: 11px;
  font-weight: 300;
  text-align: center;
  padding: 0 24px;
  line-height: 1.5;
}

.img-placeholder--light .img-placeholder-hint {
  color: rgba(0,0,0,0.3);
}

.img-placeholder--dark .img-placeholder-hint {
  color: rgba(255,255,255,0.2);
}

/* ────────────────────────────────
   SUPERPOWERS / PILLARS
──────────────────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  padding: 48px 40px;
  border: 1px solid var(--border-d);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s;
}

.pillar:hover {
  border-color: var(--accent);
}

.pillar-icon {
  color: var(--accent);
  opacity: 0.85;
  flex-shrink: 0;
}

.pillar-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.pillar-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-d);
  line-height: 1.2;
}

.pillar-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted-d);
  flex: 1;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding-top: 8px;
  border-top: 1px solid var(--border-d);
}

.pillar-tags li {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted-d);
}

.pillar-tags li::after {
  content: ' ·';
}

.pillar-tags li:last-child::after {
  content: '';
}

/* ────────────────────────────────
   IMPACT NUMBERS
──────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-l);
}

.stat {
  background: var(--light);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--text-l);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-l);
  line-height: 1.4;
}

.stat-sub {
  font-size: 12px;
  color: var(--text-muted-l);
  letter-spacing: 0.02em;
}

/* ────────────────────────────────
   BRANDS TICKER
──────────────────────────────── */
.brands-section {
  padding-bottom: var(--section);
  overflow: hidden;
}

.ticker-wrap {
  margin-top: 32px;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
  padding: 24px 0;
  overflow: hidden;
}

.ticker {
  display: flex;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-d);
  padding: 0 24px;
  transition: color 0.2s;
}

.ticker-item:hover {
  color: var(--accent);
}

.ticker-dot {
  color: var(--text-muted-d);
  font-size: 20px;
  flex-shrink: 0;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────────────────────────────────
   CASE STUDIES
──────────────────────────────── */
.case-study-visual {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: start;
}

.case-study-visual--reverse {
  direction: rtl;
}

.case-study-visual--img-wide {
  grid-template-columns: 2fr 3fr;
}

.case-study-visual--reverse > * {
  direction: ltr;
}

.case-img-slot {
  overflow: hidden;
}

.case-img-slot img {
  display: block;
  width: 100%;
  height: auto;
}

.case-img-slot .img-placeholder {
  height: 100%;
}

.case-study-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study--dark .case-study-content {
  background: var(--dark);
}

.case-study--light .case-study-content,
.section--light .case-study-content {
  background: var(--light);
}

.case-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-l);
  margin: 16px 0 24px;
}

.case-study--dark .case-title {
  color: var(--text-d);
}

.case-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted-l);
  margin-bottom: 40px;
}

.case-body--light {
  color: var(--text-muted-d);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-l);
}

.case-stats--dark {
  background: var(--border-d);
}

.case-stat {
  background: var(--light);
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-study--dark .case-stat {
  background: var(--dark-2);
}

.case-stat-value {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-l);
  line-height: 1.15;
}

.case-study--dark .case-stat-value {
  color: var(--accent);
}

.case-stat-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted-l);
  line-height: 1.5;
}

.case-study--dark .case-stat-label {
  color: var(--text-muted-d);
}

.arrow {
  font-style: normal;
  font-size: 16px;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.case-stat--arrow {
  justify-content: center;
}

.case-stat--arrow .case-stat-value {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ────────────────────────────────
   CAREER / TIMELINE
──────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-l);
  margin-bottom: 80px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-l);
  align-items: start;
  transition: background 0.2s;
}

.timeline-item:hover {
  background: rgba(0,0,0,0.02);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
  border-radius: 2px;
}

.timeline-date {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted-l);
  letter-spacing: 0.06em;
  padding-top: 4px;
}

.timeline-company {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-l);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.timeline-badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 2px;
}

.timeline-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-l);
  margin-bottom: 10px;
}

.timeline-scope {
  font-size: 13px;
  color: var(--text-muted-l);
  line-height: 1.6;
}

/* ── Awards ── */
.awards-block {
  border-top: 1px solid var(--border-l);
  padding-top: 40px;
}

.awards-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-l);
  margin-bottom: 20px;
}

.awards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.award-item {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-l);
  border: 1px solid var(--border-l);
  padding: 8px 16px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.award-item:hover {
  border-color: var(--text-muted-l);
}

/* ────────────────────────────────
   CONNECT
──────────────────────────────── */
.connect-section {
  padding-bottom: 0;
}

.connect-inner {
  text-align: center;
  padding: var(--section) 0 80px;
}

.connect-inner .eyebrow {
  justify-content: center;
  display: block;
  text-align: center;
}

.connect-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-d);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.connect-body {
  font-size: 14px;
  color: var(--text-muted-d);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.connect-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.connect-section .btn--ghost {
  border-color: var(--border-d);
  color: var(--text-muted-d);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border-d);
  padding: 28px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--text-muted-d);
}

.footer-loc {
  font-size: 12px;
  color: var(--text-muted-d);
  letter-spacing: 0.08em;
}

/* ────────────────────────────────
   SCROLL ANIMATIONS
──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

.pillar:nth-child(1) { transition-delay: 0s; }
.pillar:nth-child(2) { transition-delay: 0.12s; }
.pillar:nth-child(3) { transition-delay: 0.24s; }

.stat:nth-child(1) { transition-delay: 0s; }
.stat:nth-child(2) { transition-delay: 0.08s; }
.stat:nth-child(3) { transition-delay: 0.16s; }
.stat:nth-child(4) { transition-delay: 0.24s; }
.stat:nth-child(5) { transition-delay: 0.32s; }
.stat:nth-child(6) { transition-delay: 0.40s; }

/* ────────────────────────────────
   JETS
──────────────────────────────── */
.jets-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.jets-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-d);
}

.jets-title em {
  font-style: italic;
  color: var(--accent);
}

.jets-intro-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted-d);
}

.jets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.jet-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.jet-photos {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jet-photo-main {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.jet-photos-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.jet-photos-secondary img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.jet-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.jet-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text-d);
  line-height: 1.2;
}

.jet-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted-d);
}

/* ────────────────────────────────
   RESPONSIVE
──────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .positioning-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .headshot-slot {
    position: static;
    max-width: 320px;
  }

  .case-study-visual,
  .case-study-visual--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .case-img-slot img {
    aspect-ratio: 4 / 5;
  }

  .case-study-content {
    padding: 48px 40px;
  }

  .case-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item {
    grid-template-columns: 160px 1fr;
    gap: 32px;
  }

  .jets-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .jets-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section: 64px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-footer {
    flex-direction: column;
    gap: 20px;
    padding-top: 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .case-stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-item:hover {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link { display: none; }

  .connect-actions {
    flex-direction: column;
    align-items: center;
  }

  .connect-actions .btn {
    max-width: 360px;
  }

  .footer .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pillar {
    padding: 36px 24px;
  }

  .stat {
    padding: 32px 24px;
  }

  .case-img-slot img {
    aspect-ratio: 4 / 5;
  }

  .case-study-content {
    padding: 36px 24px;
  }

  .case-stat {
    padding: 16px 14px;
  }
}
