/* ============================================
   TOGETHER WE SOLVE — styles.css
   Evolved Editorial Design System
   ============================================ */

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

:root {
  /* Editorial Color System */
  --bg-warm: #FAF6F0;       /* Warm Ivory Paper */
  --text-charcoal: #1C1E1D; /* Charcoal Ink */
  --accent-moss: #23382B;   /* Deep Forest Moss */
  --accent-ocean: #3D5A6C;  /* Muted Ocean Blue */
  --accent-clay: #C87D55;   /* Earthy Warm Clay */
  --bg-fog: #EBECE8;        /* Soft Foggy Grey-Green */
  --bg-dark-moss: #1A2E22;  /* Rich Dark Moss Background */

  /* Spacing & Borders */
  --border-light: rgba(28, 30, 29, 0.08);
  --border-dark: rgba(250, 246, 240, 0.1);
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  background-color: var(--bg-warm);
}

body {
  background-color: var(--bg-warm);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Tactile Paper Texture Overlay ────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.045;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ─── UTILITY ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

@media (max-width: 768px) {
  .container { padding: 0 28px; }
}

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-clay);
  margin-bottom: 28px;
  display: block;
}

.section {
  padding: 160px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 110px 0; }
}

.italic { 
  font-family: var(--font-display);
  font-style: italic; 
}

/* ─── NAV (Editorial Header) ────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 64px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  padding: 16px 64px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
  font-weight: 400;
  flex-shrink: 0;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-moss);
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--bg-warm);
  text-decoration: none;
  padding: 12px 28px;
  border: none;
  border-radius: 100px;
  transition: var(--transition-smooth);
  letter-spacing: 0.03em;
  background: var(--accent-moss);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--text-charcoal);
  color: var(--bg-warm);
  transform: translateY(-1px);
}

.nav-cta-arrow {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s;
}

.nav-cta:hover .nav-cta-arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
}

/* ─── BUTTONS (Organic & Editorial) ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-arrow, .btn-arrow-down {
  font-size: 15px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.btn:hover .btn-arrow-down {
  transform: translateY(3px);
}

.btn-primary {
  background: var(--accent-moss);
  color: var(--bg-warm);
  padding: 15px 32px;
  border: 1px solid var(--accent-moss);
}

.btn-primary:hover {
  background: #1a4a2e;
  border-color: #1a4a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(35, 56, 43, 0.18);
}

.btn-ghost {
  color: var(--text-charcoal);
  opacity: 0.8;
  padding: 15px 28px;
  border: 1px solid transparent;
}

.btn-ghost:hover {
  opacity: 1;
  color: var(--accent-clay);
}

.btn-outline {
  color: var(--text-charcoal);
  padding: 15px 32px;
  border: 1px solid rgba(28, 30, 29, 0.2);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--text-charcoal);
  background: rgba(28, 30, 29, 0.03);
}

.btn-large {
  font-size: 15px;
  padding: 18px 48px;
}

.btn-sm {
  font-size: 12px;
  padding: 10px 22px;
}

/* ─── HERO (Full Viewport Editorial Background) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-image: url('../assets/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-warm);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 120px 64px 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}

.hero-eyebrow {
  margin-bottom: 28px;
  opacity: 0;
}

.hero-eyebrow-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-clay);
  display: block;
  margin-bottom: 12px;
}

.hero-eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--accent-moss);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-charcoal);
  margin-bottom: 28px;
  opacity: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--accent-moss);
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0;
}

.hero-body {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-charcoal);
  max-width: 440px;
  margin: 0 0 36px 0;
  line-height: 1.7;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
}

/* ─── HERO SCROLL HINT ───────────────────── */
.hero-scroll-hint {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -42px); /* Midpoint of the 40px circle sits exactly on the card boundary */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.hero-scroll-hint span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-moss);
  font-weight: 500;
  opacity: 0.65;
  margin-bottom: 2px;
  text-align: center;
  white-space: nowrap;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-warm); /* Matches the warm ivory card color */
  border: 1px solid rgba(35, 56, 43, 0.12); /* Subtle moss green border */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-moss);
  box-shadow: 0 4px 14px rgba(35, 56, 43, 0.08); /* Elegant, soft forest-toned shadow */
  pointer-events: auto; /* Re-enable interactions for the button */
  animation: scrollOscillate 3s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.scroll-arrow svg {
  width: 16px;
  height: 16px;
}

@keyframes scrollOscillate {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(35, 56, 43, 0.06);
  }
  50% {
    transform: translateY(5px); /* Gentle vertical oscillation */
    box-shadow: 0 6px 16px rgba(35, 56, 43, 0.12); /* Subtle breathing shadow depth */
  }
}

/* ─── HERO MOBILE ────────────────────────── */
@media (max-width: 900px) {
  .hero {
    background-image: none;
    background-color: var(--bg-warm);
  }
  .hero-content {
    padding: 120px 28px 80px 28px; /* Compact mobile spacing */
    max-width: 100%;
  }
}

/* ─── REALITY (Chapter 1: The Chasm) ───────── */
.reality {
  background: var(--bg-fog);
  margin-top: -8vh; /* Overlapping visual transition */
  border-radius: 60px 60px 0 0; /* Soft organic corner shape */
  position: relative;
  z-index: 3;
  box-shadow: 0 -15px 40px rgba(0,0,0,0.015);
  border-bottom: 1px solid var(--border-light);
}

.reality-intro {
  margin-bottom: 96px;
  max-width: 800px;
}

.reality-intro .section-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--accent-moss);
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px; /* Large spatial pacing */
  background: transparent;
  margin-bottom: 110px;
}

@media (max-width: 768px) {
  .reality-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
}

.reality-item {
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Asymmetry in Reality layout */
.reality-item:nth-child(even) {
  transform: translateY(48px);
}

@media (max-width: 768px) {
  .reality-item:nth-child(even) {
    transform: translateY(0);
  }
}

.reality-marker {
  width: 48px;
  height: 1px;
  background: var(--accent-clay);
  opacity: 0.8;
}

.reality-text {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-charcoal);
  line-height: 1.7;
  font-weight: 300;
}

.reality-statement {
  text-align: left;
  max-width: 800px;
  margin: 120px 0 0 0;
}

.reality-statement p {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--accent-moss);
}

.reality-statement em {
  color: var(--accent-clay);
  font-style: italic;
}

/* ─── WHY (Chapter 2: The Spark) ───────────── */
.why { 
  background: var(--bg-dark-moss); 
  color: var(--bg-warm);
}

.why .label {
  color: var(--accent-clay);
}

.why-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-dark);
}

.why-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-dark);
  opacity: 0;
  transform: translateY(24px);
}

@media (max-width: 600px) {
  .why-row { grid-template-columns: 60px 1fr; gap: 20px; padding: 36px 0; }
}

.why-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-clay);
  line-height: 1;
}

.why-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bg-warm);
}

/* ─── BELIEF (Chapter 3: The Shared Ground) ── */
.belief {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
}

.belief-inner {
  max-width: 1000px;
}

.belief-quote {
  margin: 0 0 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.belief-line {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  display: block;
  color: var(--text-charcoal);
  opacity: 0;
  transform: translateY(32px);
}

.belief-line.italic {
  color: var(--accent-moss);
}

.belief-support {
  max-width: 520px;
  margin-left: auto; /* Asymmetrical positioning */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.belief-support p {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-charcoal);
  opacity: 0.85;
  line-height: 1.8;
}

/* ─── JOURNEY (Chapter 4: The Unfolding) ───── */
.journey { 
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
}

.journey-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.journey .container {
  position: relative;
  z-index: 2;
}

.journey .section-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 100px;
  max-width: 700px;
  color: var(--accent-moss);
}

.journey-steps {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0;
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr 100px 1fr; /* Left content, Center dot space, Right content */
  align-items: start;
  opacity: 0;
  transform: translateY(40px);
  margin-bottom: 120px;
  position: relative;
  width: 100%;
}

/* Odd steps: content on left, dot in center */
.journey-step:nth-child(odd) .step-content {
  grid-column: 1;
  text-align: right;
}

.journey-step:nth-child(odd) .step-dot {
  grid-column: 2;
  justify-self: center;
}

/* Even steps: content on right, dot in center */
.journey-step:nth-child(even) .step-content {
  grid-column: 3;
  text-align: left;
}

.journey-step:nth-child(even) .step-dot {
  grid-column: 2;
  justify-self: center;
}

/* Mobile responsive alignment */
@media (max-width: 768px) {
  .journey-step {
    grid-template-columns: 40px 1fr !important;
    margin-bottom: 80px;
  }
  .journey-step:nth-child(odd) .step-content,
  .journey-step:nth-child(even) .step-content {
    grid-column: 2 !important;
    text-align: left !important;
  }
  .journey-step:nth-child(odd) .step-dot,
  .journey-step:nth-child(even) .step-dot {
    grid-column: 1 !important;
    justify-self: start !important;
  }
}

.step-dot {
  width: 0;
  height: 0;
  position: relative;
  z-index: 3;
}

.step-content {
  padding-bottom: 0;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-clay);
  display: block;
  margin-bottom: 12px;
}

.step-content p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-charcoal);
  opacity: 0.85;
  line-height: 1.7;
}

/* ─── VALUES (Chapter 5: Shared Branches) ──── */
.values {
  background: var(--bg-fog);
  border-top: 1px solid var(--border-light);
}

/* Editorial Staggered Paper Collage instead of grid boxes */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background: transparent;
  margin-top: 48px;
}

@media (max-width: 960px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
}

.value-card {
  background: var(--bg-warm);
  padding: 48px 40px;
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(28, 30, 29, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s, background-color 0.6s;
  
  /* Apply paper rotations dynamically in CSS */
  --rot: 0deg;
  transform: translateY(30px) rotate(var(--rot));
}

.value-card:nth-child(1) { --rot: -1.2deg; }
.value-card:nth-child(2) { --rot: 0.8deg; }
.value-card:nth-child(3) { --rot: -0.5deg; }
.value-card:nth-child(4) { --rot: 1.4deg; }
.value-card:nth-child(5) { --rot: -1deg; }
.value-card:nth-child(6) { --rot: 0.6deg; }

.value-card:hover {
  background: var(--bg-warm);
  transform: translateY(-8px) rotate(0deg) scale(1.02);
  box-shadow: 0 20px 48px rgba(28, 30, 29, 0.06);
  z-index: 10;
}

.value-geo {
  width: 12px;
  height: 12px;
  background: var(--accent-clay);
  border-radius: 50%;
  margin-bottom: 24px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--accent-moss);
}

.value-card p {
  font-size: 15px;
  color: var(--text-charcoal);
  opacity: 0.8;
  line-height: 1.7;
}

/* ─── VISION (Chapter 6: Evolving Streams) ─── */
.vision {
  background: var(--bg-dark-moss);
  color: var(--bg-warm);
  margin-top: -60px; /* Overlap chapter */
  border-radius: 60px 60px 0 0;
  position: relative;
  z-index: 4;
}

.vision-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vision-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.vision .container {
  position: relative;
  z-index: 1;
}

.vision .label {
  color: var(--accent-clay);
}

.vision-statements {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.vision-line {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.8vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-dark);
  color: rgba(250, 246, 240, 0.5);
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.8s, border-color 0.8s;
}

.vision-line.large {
  font-size: clamp(30px, 4.8vw, 60px);
  color: rgba(250, 246, 240, 0.6);
  border-bottom: none;
}

.vision-line.in-view {
  color: var(--bg-warm);
  border-bottom-color: rgba(250, 246, 240, 0.2);
}

.vision-line.large.in-view {
  color: var(--accent-clay);
}

.vision-close {
  font-size: 19px;
  color: var(--bg-warm);
  opacity: 0.8;
  max-width: 580px;
  line-height: 1.8;
}

/* ─── JOIN (Chapter 7: Ripples of Action) ──── */
.join {
  background: var(--bg-warm);
  color: var(--text-charcoal);
  overflow: hidden;
  position: relative;
}

.join-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

.join .container {
  position: relative;
  z-index: 1;
}

.join-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 100px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
  color: var(--accent-moss);
}

.join-manifesto {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.join-manifesto p {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--text-charcoal);
  opacity: 0.85;
  line-height: 1.6;
}

.join-manifesto .emphasize {
  color: var(--accent-moss);
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: var(--font-display);
  font-style: italic;
}

.join-progression {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin-bottom: 40px;
  opacity: 0;
}

.join-progression span {
  font-size: 15px;
  color: var(--text-charcoal);
  opacity: 0.8;
  letter-spacing: 0.04em;
  position: relative;
}

.join-progression span + span::before {
  content: '·';
  position: absolute;
  left: -22px;
  color: var(--accent-clay);
  font-weight: bold;
}

.join-kicker {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 72px;
  color: var(--accent-clay);
  font-style: italic;
}

.join-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─── FOOTER (The Echo) ───────────────────── */
.footer {
  background: var(--bg-fog);
  border-top: 1px solid var(--border-light);
  padding: 100px 0 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (max-width: 768px) {
  .footer-inner { padding: 0 28px; }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--accent-moss);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-charcoal);
  opacity: 0.8;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-charcoal);
  opacity: 0.75;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--accent-clay);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-charcoal);
  opacity: 0.7;
  max-width: 520px;
  line-height: 1.6;
}

/* ─── SHARED ANIMATION STATES ─────────────── */
.reveal-text {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-fade {
  opacity: 0;
}

.reveal-vision {
  opacity: 0;
  transform: translateY(24px);
}

/* ─── SECTION HEADLINES ───────────────────── */
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── REDUCED MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
