/* ═══════════════════════════════════════════════════════════
   HOFFMAN LENSES INITIATIVE
   Design: Editorial dark — navy, deep red, aged white
   Fonts: Playfair Display (display) + Source Serif 4 (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:      #0D1F33;
  --navy-mid:  #1A3A5C;
  --navy-lt:   #2A4A6C;
  --red:       #8B1A1A;
  --red-lt:    #A52020;
  --cream:     #F5F0E8;
  --cream-dk:  #E8E0D0;
  --warm-grey: #9A9080;
  --text:      #2C2416;
  --text-lt:   #5A5040;
  --white:     #FFFFFF;
  --black:     #080C10;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-mono:    'JetBrains Mono', monospace;

  --max-w: 1200px;
  --section-pad: 120px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 2px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(8, 12, 16, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 58, 92, 0.3);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cream);
  opacity: 0.9;
}
.nav-logo-hl { color: var(--red-lt); }
.nav-logo-sep { margin: 0 8px; color: var(--navy-mid); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  opacity: 1 !important;
  background: var(--red);
  color: var(--cream) !important;
  padding: 8px 18px;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-lt) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    #0A1520 40%,
    #0D1F33 70%,
    #0A1015 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,58,92,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,58,92,0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 30%, rgba(8,12,16,0.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px 40px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-grey);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.2s;
}
.hero-eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--navy-mid);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}
.hero-title-line[data-delay="0"] { animation-delay: 0.4s; }
.hero-title-line[data-delay="1"] { animation-delay: 0.6s; }
.hero-title-line[data-delay="2"] { animation-delay: 0.8s; }
.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--red-lt);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream-dk);
  opacity: 0.8;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.0s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.1s;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
}
.btn-primary:hover { background: var(--red-lt); transform: translateY(-1px); }
.btn-icon { font-size: 14px; }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.3);
}
.btn-secondary:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,0.05);
}
.hero-stat-row {
  display: flex;
  gap: 0;
  align-items: stretch;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 1.3s;
  border: 1px solid rgba(26,58,92,0.4);
  max-width: 740px;
}
.hero-stat {
  padding: 24px 32px;
  flex: 1;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(26,58,92,0.4);
  flex-shrink: 0;
}
.hero-stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  line-height: 1.5;
  text-transform: uppercase;
}
.hero-stat-label em {
  display: block;
  color: var(--red-lt);
  font-style: italic;
  text-transform: none;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 2px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
}
.hero-scroll-hint span {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--navy-mid), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ══════════════════════════════════════
   DEDICATION BAND
══════════════════════════════════════ */
.dedication-band {
  background: var(--red);
  padding: 20px 40px;
  overflow: hidden;
}
.dedication-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: baseline;
  flex-wrap: wrap;
}
.dedication-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  white-space: nowrap;
  flex-shrink: 0;
}
.dedication-names {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--cream);
}
.dn-sep { color: rgba(245,240,232,0.4); }
.dn-more {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dn-more:hover { color: var(--cream); }

/* ══════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red-lt);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 48px;
}
.section-title-sm {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════
   THE CASE
══════════════════════════════════════ */
.case-section { background: #0A0E14; }
.case-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}
.case-main p {
  font-size: 17px;
  color: var(--cream-dk);
  margin-bottom: 20px;
  opacity: 0.85;
}
.case-lead {
  font-size: 20px !important;
  color: var(--cream) !important;
  opacity: 1 !important;
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 24px;
  margin-bottom: 32px !important;
}
.case-main strong { color: var(--cream); font-weight: 600; }
.case-main em { color: var(--cream-dk); }
.case-readmore {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--red-lt);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.case-readmore:hover { color: var(--cream); }
.case-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,58,92,0.4);
}
.pillar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(26,58,92,0.4);
  transition: background 0.2s;
}
.pillar:last-child { border-bottom: none; }
.pillar:hover { background: rgba(26,58,92,0.15); }
.pillar-num {
  width: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--red-lt);
  border-right: 1px solid rgba(26,58,92,0.4);
  padding: 16px;
}
.pillar-body { padding: 16px 20px; }
.pillar-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 4px;
}
.pillar-text {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--warm-grey);
}
.case-quote {
  border-left: 4px solid var(--red);
  padding: 32px 40px;
  background: rgba(26,58,92,0.1);
  max-width: 760px;
}
.case-quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 16px;
}
.case-quote cite {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  font-style: normal;
}

/* ══════════════════════════════════════
   EXTENSION
══════════════════════════════════════ */
.extension-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.extension-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,26,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ext-lead {
  font-size: 20px;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.ext-grid p {
  font-size: 16px;
  color: var(--cream-dk);
  opacity: 0.8;
  margin-bottom: 32px;
}
.ext-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.ext-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--cream-dk);
  opacity: 0.85;
}
.ext-feature-icon {
  color: var(--red-lt);
  flex-shrink: 0;
  margin-top: 2px;
}
.ext-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.ext-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  transition: all 0.2s;
  width: fit-content;
}
.ext-badge:hover { border-color: var(--cream); background: rgba(245,240,232,0.05); }
.ext-badge-github { border-color: rgba(26,58,92,0.6); background: rgba(26,58,92,0.2); }
.ext-badge-soon { opacity: 0.5; cursor: default; }
.ext-badge-soon:hover { border-color: rgba(245,240,232,0.2); background: none; }
.ext-badge-icon { font-size: 14px; }
.ext-note {
  font-family: var(--ff-mono);
  font-size: 11px !important;
  letter-spacing: 0.06em;
  color: var(--warm-grey) !important;
  opacity: 1 !important;
  line-height: 1.6;
}

/* ── BROWSER MOCKUP ── */
.mockup-browser {
  background: #0D1520;
  border: 1px solid rgba(26,58,92,0.5);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.mockup-bar {
  background: #141E2C;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(26,58,92,0.4);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(245,240,232,0.1);
}
.mockup-url {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--warm-grey);
  background: rgba(0,0,0,0.3);
  padding: 4px 12px;
  border-radius: 3px;
  flex: 1;
  text-align: center;
}
.mockup-feed { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mockup-post {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(26,58,92,0.3);
  border-radius: 4px;
  padding: 14px;
}
.mockup-post-inserted { border-color: rgba(139,26,26,0.4); background: rgba(139,26,26,0.05); }
.mockup-post-header { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.mockup-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(26,58,92,0.5);
  flex-shrink: 0;
}
.mockup-avatar-grey { background: rgba(139,26,26,0.3); }
.mockup-avatar-sm { background: rgba(42,74,108,0.4); }
.mockup-meta { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mockup-name {
  height: 8px; width: 80px;
  background: rgba(245,240,232,0.15);
  border-radius: 2px;
}
.mockup-name-sm { width: 60px; }
.mockup-time {
  height: 6px; width: 50px;
  background: rgba(245,240,232,0.07);
  border-radius: 2px;
}
.mockup-post-body {
  height: 36px;
  background: rgba(245,240,232,0.06);
  border-radius: 2px;
  margin-bottom: 10px;
}
.mockup-post-body-dark { background: rgba(139,26,26,0.15); }
.mockup-post-body-med { height: 24px; }
.mockup-annotation {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(13,31,51,0.9);
  border: 1px solid rgba(26,58,92,0.6);
  border-radius: 3px;
  padding: 8px 10px;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--cream-dk);
  line-height: 1.5;
}
.ann-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4A8BC4;
  flex-shrink: 0;
  margin-top: 2px;
}
.ann-dot-red { background: var(--red-lt); }
.ann-dot-amber { background: #B8860B; }
.mockup-session-bar {
  background: rgba(13,31,51,0.6);
  border: 1px solid rgba(26,58,92,0.4);
  border-radius: 4px;
  padding: 12px;
}
.mockup-session-label {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 10px;
}
.mockup-bars { display: flex; flex-direction: column; gap: 6px; }
.mockup-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--warm-grey);
}
.mockup-bar-fill {
  height: 8px;
  border-radius: 1px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   WHAT THEY KNEW
══════════════════════════════════════ */
.knew-section { background: #080C10; }
.knew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(26,58,92,0.3);
}
.knew-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(26,58,92,0.3);
  border-bottom: 1px solid rgba(26,58,92,0.3);
  transition: background 0.3s;
}
.knew-item:nth-child(3n) { border-right: none; }
.knew-item:nth-child(4),
.knew-item:nth-child(5),
.knew-item:nth-child(6) { border-bottom: none; }
.knew-item:hover { background: rgba(26,58,92,0.08); }
.knew-year {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}
.knew-body {
  font-size: 14px;
  color: var(--cream-dk);
  opacity: 0.8;
  line-height: 1.7;
}
.knew-body strong { color: var(--cream); font-weight: 600; }

/* ══════════════════════════════════════
   REMEMBRANCE
══════════════════════════════════════ */
.remembrance-section {
  background: var(--black);
  border-top: 1px solid rgba(26,58,92,0.3);
  border-bottom: 1px solid rgba(26,58,92,0.3);
}
.remembrance-section .section-title {
  color: var(--cream);
}
.remembrance-intro {
  font-size: 17px;
  color: var(--cream-dk);
  opacity: 0.8;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.remembrance-intro a {
  color: var(--red-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.remembrance-names {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,58,92,0.3);
  max-width: 640px;
  margin-bottom: 32px;
}
.rname {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(26,58,92,0.3);
  transition: background 0.2s;
}
.rname:last-child { border-bottom: none; }
.rname:hover { background: rgba(26,58,92,0.1); }
.rname-name {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--cream);
  flex: 1;
}
.rname-age {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--red-lt);
  letter-spacing: 0.1em;
}
.rname-place {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--warm-grey);
  letter-spacing: 0.06em;
}
.remembrance-growing {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--warm-grey);
}
.remembrance-growing a {
  color: var(--red-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ══════════════════════════════════════
   ACT
══════════════════════════════════════ */
.act-section { background: #0A0E14; }
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(26,58,92,0.3);
}
.act-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(26,58,92,0.3);
  border-bottom: 1px solid rgba(26,58,92,0.3);
  transition: background 0.3s;
}
.act-card:nth-child(3n) { border-right: none; }
.act-card:nth-child(4),
.act-card:nth-child(5),
.act-card:nth-child(6) { border-bottom: none; }
.act-card:hover { background: rgba(26,58,92,0.1); }
.act-card-primary { background: rgba(139,26,26,0.08); border-right-color: rgba(139,26,26,0.3); }
.act-card-primary:hover { background: rgba(139,26,26,0.15); }
.act-num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--warm-grey);
  margin-bottom: 16px;
}
.act-card h3 {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.act-card p {
  font-size: 14px;
  color: var(--cream-dk);
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 20px;
}
.act-link {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--red-lt);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.act-link:hover { color: var(--cream); }

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-section {
  background: var(--navy);
  border-top: 1px solid rgba(26,58,92,0.4);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  font-size: 16px;
  color: var(--cream-dk);
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-text em { font-style: italic; }
.about-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(26,58,92,0.4);
}
.about-link {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(26,58,92,0.4);
  transition: background 0.2s;
}
.about-link:last-child { border-bottom: none; }
.about-link:hover { background: rgba(26,58,92,0.2); }
.about-link-icon {
  font-size: 18px;
  color: var(--red-lt);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.about-link strong {
  display: block;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 2px;
}
.about-link em {
  display: block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--warm-grey);
  font-style: normal;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #050709;
  border-top: 1px solid rgba(26,58,92,0.4);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(26,58,92,0.3);
}
.footer-logo-hl {
  display: block;
  font-family: var(--ff-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tagline {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--warm-grey);
}
.footer-copy p {
  font-size: 12px;
  color: var(--warm-grey);
  line-height: 1.8;
}
.footer-copy a {
  color: var(--cream-dk);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.footer-links a {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-dedication {
  text-align: center;
  padding: 24px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--red);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .case-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-pillars { max-width: 480px; }
  .ext-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .knew-grid { grid-template-columns: repeat(2, 1fr); }
  .knew-item:nth-child(3n) { border-right: 1px solid rgba(26,58,92,0.3); }
  .knew-item:nth-child(2n) { border-right: none; }
  .knew-item:nth-child(5),
  .knew-item:nth-child(6) { border-bottom: none; }
  .knew-item:nth-child(3),
  .knew-item:nth-child(4) { border-bottom: 1px solid rgba(26,58,92,0.3); }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .act-card:nth-child(3n) { border-right: 1px solid rgba(26,58,92,0.3); }
  .act-card:nth-child(2n) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 16px 24px; }
  .hero-content { padding: 120px 24px 60px; }
  .hero-stat-row { flex-direction: column; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .container { padding: 0 24px; }
  .knew-grid { grid-template-columns: 1fr; }
  .knew-item { border-right: none !important; border-bottom: 1px solid rgba(26,58,92,0.3) !important; }
  .knew-item:last-child { border-bottom: none !important; }
  .act-grid { grid-template-columns: 1fr; }
  .act-card { border-right: none !important; border-bottom: 1px solid rgba(26,58,92,0.3) !important; }
  .act-card:last-child { border-bottom: none !important; }
  .dedication-inner { flex-direction: column; gap: 12px; }
  .rname { flex-wrap: wrap; gap: 8px; }
  .rname-place { width: 100%; }
}
