/* ═══════════════════════════════════════════════════
   Venus Resource — Design System
   Aesthetic: Clean Corporate (PRL Group-inspired)
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --color-primary: #0d631b;
  --color-primary-dark: #083d11;
  --color-primary-light: #e8f5e9;
  --color-primary-muted: rgba(13, 99, 27, 0.08);

  --color-accent: #d4a843;
  --color-accent-light: #faf5e8;

  --color-surface: #ffffff;
  --color-surface-alt: #f5f5f3;
  --color-surface-dark: #062e0d;
  --color-surface-dark-alt: #0a3d12;

  --color-text: #333333;
  --color-text-heading: #1a2a1e;
  --color-text-secondary: #696d6f;
  --color-text-tertiary: #999999;
  --color-text-inverse: #ffffff;

  --color-border: #e0e0e0;
  --color-border-light: #efefef;
  --color-error: #b3261e;
  --color-success: #0d631b;

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --container-narrow: 800px;
  --gutter: 24px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --shadow-subtle: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);

  --transition-base: 0.3s ease-out;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

::selection {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text-heading);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.25rem; }

p { max-width: 70ch; line-height: 1.65; }

.text-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.text-overline {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.text-large {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-secondary); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 100px 0;
}

.section--lg {
  padding: 140px 0;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  :root { --gutter: 40px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  :root { --gutter: 48px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .section { padding: 120px 0; }
  .section--lg { padding: 160px 0; }
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: translateZ(0);
  }
}

.nav--scrolled {
  box-shadow: var(--shadow-subtle);
}

.nav--dark {
  background: rgba(20, 20, 19, 0.92);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 80px;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-toggle .material-symbols-outlined {
  font-size: 18px;
  transition: transform var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-card);
  padding: 8px 0;
  min-width: 200px;
}

.nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.nav__dropdown-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-muted);
}

.nav__dropdown-link--active {
  color: var(--color-primary);
}

.nav--dark .nav__link {
  color: rgba(250,250,247,0.6);
}
.nav--dark .nav__link:hover,
.nav--dark .nav__link--active {
  color: var(--color-text-inverse);
}
.nav--dark .nav__link--active::after {
  background: var(--color-text-inverse);
}

.nav__cta {
  display: none;
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 28px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  transition: all var(--transition-base);
}

.nav__cta:hover {
  background: var(--color-primary-dark);
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-block; }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
}

.nav--dark .nav__hamburger span {
  background: var(--color-text-inverse);
}

@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  z-index: 120;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-family);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 12px 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-base);
}

.mobile-menu__link:hover {
  color: var(--color-primary);
}

.mobile-menu__cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  padding: 16px 24px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero Sections ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero--half {
  min-height: 60vh;
}

.hero--short {
  min-height: 45vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 19, 0.85) 0%,
    rgba(20, 20, 19, 0.5) 40%,
    rgba(20, 20, 19, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero__tagline {
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.65);
  margin-bottom: 20px;
}

.hero__title {
  color: var(--color-text-inverse);
  margin-bottom: 24px;
  max-width: 800px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(250,250,247,0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 24px;
}

/* Page heroes (subpages) */
.page-hero {
  padding: 160px 0 80px;
  background: var(--color-surface-dark);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__title {
  color: var(--color-text-inverse);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}

.page-hero__desc {
  color: rgba(250,250,247,0.6);
  font-size: 1.125rem;
  max-width: 600px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid rgba(250,250,247,0.3);
  color: var(--color-text-inverse);
}

.btn--outline:hover {
  border-color: var(--color-text-inverse);
  background: rgba(250,250,247,0.05);
}

.btn--outline-dark {
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline-dark:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  padding: 0;
  color: var(--color-primary);
  font-weight: 600;
  gap: 8px;
}

.btn--ghost:hover {
  gap: 14px;
}

.btn .material-symbols-outlined {
  font-size: 18px;
  transition: transform var(--transition-base);
}

.btn:hover .material-symbols-outlined {
  transform: translateX(3px);
}

/* ── Cards ── */
.card {
  background: #fff;
  padding: 40px;
  position: relative;
  transition: all var(--transition-base);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.card__number {
  font-family: var(--font-family);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 24px;
  display: block;
}

.card__title {
  font-family: var(--font-family);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Dark card variant */
.card--dark {
  background: var(--color-surface-dark-alt);
  color: var(--color-text-inverse);
}

.card--dark .card__text {
  color: rgba(250,250,247,0.6);
}

.card--dark::before {
  background: var(--color-accent);
}

/* Filled accent card */
.card--accent {
  background: var(--color-primary);
  color: #fff;
}

.card--accent .card__number { color: rgba(255,255,255,0.5); }
.card--accent .card__text { color: rgba(255,255,255,0.8); }
.card--accent::before { background: #fff; opacity: 0; }
.card--accent:hover::before { opacity: 0.3; }
.card--accent:hover { box-shadow: 0 8px 32px rgba(13,99,27,0.3); }

/* ── Stat Blocks ── */
.stat {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}

.stat__value {
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat--light .stat__value { color: var(--color-text-inverse); }
.stat--light .stat__label { color: rgba(250,250,247,0.65); }
.stat--light { border-top-color: rgba(250,250,247,0.1); }

/* ── Sections ── */
.section-header {
  margin-bottom: 64px;
}

.section-header__label {
  margin-bottom: 16px;
}

.section-header__title {
  margin-bottom: 20px;
}

.section-header__desc {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

.bg-surface { background: var(--color-surface); }
.bg-alt { background: var(--color-surface-alt); }
.bg-dark { background: var(--color-surface-dark); color: var(--color-text-inverse); }
.bg-white { background: #fff; }
.bg-primary-muted { background: var(--color-primary-muted); }

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .split--wide { grid-template-columns: 5fr 7fr; }
  .split--reverse { direction: rtl; }
  .split--reverse > * { direction: ltr; }
}

/* ── Image containers ── */
.img-frame {
  position: relative;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-frame:hover img {
  transform: scale(1.03);
}

.img-frame--aspect-16-9 { aspect-ratio: 16/9; }
.img-frame--aspect-4-3 { aspect-ratio: 4/3; }
.img-frame--aspect-1-1 { aspect-ratio: 1/1; }

/* Placeholder images */
.placeholder-img {
  background: #d9d7d2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 200px;
}

.placeholder-img span,
.placeholder-img {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  text-align: center;
  font-style: italic;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline__item {
  position: relative;
  padding: 0 0 48px 0;
}

@media (min-width: 768px) {
  .timeline { padding-left: 48px; }
  .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
  }
  .timeline__item {
    padding-left: 0;
  }
  .timeline__marker {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
  }
}

.timeline__marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.timeline__title {
  font-family: var(--font-family);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline__text {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.timeline__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-muted);
  padding: 4px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* ── Data Table ── */
.data-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.9375rem;
}

.data-table th {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
  border-bottom: 2px solid var(--color-primary);
}

.data-table td {
  border-bottom: 1px solid var(--color-border-light);
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* ── Bar Charts (CSS only) ── */
.bar-chart__item {
  margin-bottom: 20px;
}

.bar-chart__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.bar-chart__track {
  height: 8px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.bar-chart__fill {
  height: 100%;
  background: var(--color-primary);
  width: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-chart__fill.animated {
  width: var(--bar-width);
}

.bg-dark .bar-chart__track { background: rgba(255,255,255,0.08); }
.bg-alt .bar-chart__track { background: var(--color-border); }

/* Ring Chart */
.ring-chart {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-primary) 0deg,
    var(--color-primary) var(--ring-deg, 0deg),
    rgba(255,255,255,0.08) var(--ring-deg, 0deg),
    rgba(255,255,255,0.08) 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ring-chart__inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-surface-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-chart__value {
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  line-height: 1;
}

.ring-chart__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.6);
  margin-top: 4px;
}

/* ── Contact Form ── */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface-alt);
  border: 1px solid transparent;
  outline: none;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-primary);
  background: #fff;
}

.form-input.error,
.form-textarea.error {
  border-color: var(--color-error);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  display: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-error);
  margin-top: 6px;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 20px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.form-success.visible {
  display: block;
}

/* ── Footer ── */
.footer {
  background: var(--color-surface-dark);
  padding: 80px 0 40px;
  color: var(--color-text-inverse);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,250,247,0.08);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand p {
  color: rgba(250,250,247,0.65);
  font-size: 0.9375rem;
  margin-top: 20px;
  max-width: 360px;
  line-height: 1.7;
}

.footer__brand img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__heading {
  font-family: var(--font-family);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.55);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.9375rem;
  color: rgba(250,250,247,0.6);
  padding: 6px 0;
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--color-text-inverse);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(250,250,247,0.55);
  position: relative;
  z-index: 1;
}

/* CTA band — VENUS watermark left, CTA content right (pre-footer) */
.cta-band {
  background: var(--color-surface-dark);
  color: white;
  padding: 96px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 56px;
}

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 48px;
  }
}

.cta-band__watermark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 14rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.1);
  margin: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(8px);
}

.cta-band__content {
  text-align: left;
  max-width: 420px;
  justify-self: end;
}

.cta-band__content h2 {
  color: white;
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.cta-band__content p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: none;
}

@media (max-width: 899px) {
  .cta-band { padding: 64px 0 0; }
  .cta-band__inner { gap: 24px; align-items: start; padding-bottom: 48px; }
  .cta-band__watermark {
    font-size: 20vw;
    transform: none;
  }
  .cta-band__content { justify-self: start; }
}

/* Legacy footer watermark kept for backwards compatibility but no longer used */
.footer__watermark { display: none; }

/* ═══════════════════════════════════════════════════
   Location map — editorial framed map + data panel
   ═══════════════════════════════════════════════════ */

.map-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .map-split {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
    gap: 20px;
  }
}

/* Map frame */
.map-frame {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-surface-dark);
  overflow: hidden;
}

@media (min-width: 900px) {
  .map-frame { aspect-ratio: auto; min-height: 100%; }
}

.map-frame__inner {
  position: absolute;
  inset: 0;
}

.map-frame__inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-frame__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--color-primary);
  z-index: 2;
  pointer-events: none;
}
.map-frame__corner--tl { top: 0; left: 0; border-top: 3px solid; border-left: 3px solid; }
.map-frame__corner--tr { top: 0; right: 0; border-top: 3px solid; border-right: 3px solid; }
.map-frame__corner--bl { bottom: 0; left: 0; border-bottom: 3px solid; border-left: 3px solid; }
.map-frame__corner--br { bottom: 0; right: 0; border-bottom: 3px solid; border-right: 3px solid; }

.map-frame__tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: white;
  padding: 10px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-frame__tag .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: 'FILL' 1, 'wght' 500;
}

.map-frame__coord {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(6, 46, 13, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 12px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-variant-numeric: tabular-nums;
  border-left: 2px solid var(--color-primary);
}

.map-frame__coord-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}

/* Map detail panel */
.map-detail {
  background: var(--color-surface-dark);
  color: white;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-detail::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.map-detail__label-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7fc28a;
  margin-bottom: 8px;
  position: relative;
}
.map-detail__label-top::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #7fc28a;
}

.map-detail__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: white;
  margin: 0 0 16px;
  position: relative;
}

.map-detail__block {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
  position: relative;
}

.map-detail__block:last-of-type {
  border-bottom: none;
}

.map-detail__block-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.map-detail__block-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  font-variant-numeric: tabular-nums;
  text-align: right;
  line-height: 1.1;
}

.map-detail__block-value em {
  font-style: normal;
  font-size: 0.55em;
  font-weight: 500;
  opacity: 0.55;
  margin-left: 3px;
}

.map-detail__distance {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.map-detail__distance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

.map-detail__distance-item::before {
  content: '';
  flex-shrink: 0;
  margin-top: 0.65em;
  width: 12px;
  height: 1px;
  background: var(--color-primary);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero load animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { width: 0; }
  to   { width: 48px; }
}

.hero .hero__tagline   { animation: fadeUp 0.8s ease 0.3s both; }
.hero .hero__divider    { animation: slideRight 0.6s ease 0.5s both; }
.hero .hero__title      { animation: fadeUp 0.8s ease 0.6s both; }
.hero .hero__subtitle   { animation: fadeUp 0.8s ease 0.8s both; }
.hero .hero__actions    { animation: fadeUp 0.8s ease 1.0s both; }

/* ── Map ── */
.map-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--color-surface-alt);
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.1);
}

/* ── Slogan Bar ── */
.slogan-bar {
  padding: 48px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.slogan-bar__text {
  font-family: var(--font-family);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-heading);
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

/* ── Info Block ── */
.info-block {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.info-block__icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-block__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-tertiary);
  margin-bottom: 4px;
}

.info-block__value {
  font-size: 0.9375rem;
  color: var(--color-text);
}

/* ── Utility ── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.text-center { text-align: center; }

/* ── Responsive ── */
@media (max-width: 480px) {
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
    padding: 120px 0 60px;
  }
  .hero__title { font-size: 2.5rem; }
  .page-hero { padding: 120px 0 60px; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .card { padding: 28px; }
  .stat__value { font-size: 2.25rem; }
  .footer__top { gap: 32px; }
  .split { gap: 32px; }
}

/* ── Focus styles ── */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--color-primary-muted);
}

.nav__link:focus-visible,
.footer__link:focus-visible,
.mobile-menu__link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.bg-dark :focus-visible,
.nav--dark :focus-visible,
.footer :focus-visible {
  outline-color: var(--color-text-inverse);
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-muted);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bar-chart__fill { transition: none; width: var(--bar-width) !important; }
}

/* ── Material Symbols ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════
   Homepage — Merged Design (D1 + D2)
   ═══════════════════════════════════════════════════ */

/* ── Hero Cinematic — Apple-style scroll reveal ── */
.hero-cinematic {
  position: relative;
  background: var(--color-surface);
}

/* Desktop: scroll runway (section is 220vh tall) + sticky 100vh viewport */
@media (min-width: 900px) {
  .hero-cinematic {
    height: 220vh;
  }
  .hero-cinematic__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
}

/* Mobile: simple stacked layout, no cinematic effect */
@media (max-width: 899px) {
  .hero-cinematic {
    height: auto;
    padding-top: 80px;
  }
  .hero-cinematic__pin {
    position: relative;
    height: auto;
    overflow: visible;
  }
}

.hero-cinematic__stage {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Text side (left) */
.hero-cinematic__text {
  position: relative;
  z-index: 1;
  padding: 100px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-surface);
  min-height: 100vh;
  max-width: 100%;
  contain: layout paint;
  will-change: opacity, transform;
}

@media (min-width: 900px) {
  .hero-cinematic__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    padding: 100px 72px 100px 80px;
    min-height: auto;
  }
}

@media (max-width: 899px) {
  .hero-cinematic__text {
    min-height: 0;
    justify-content: flex-start;
    padding: 24px var(--gutter) 56px;
  }
}

.hero-cinematic__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-cinematic__label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-primary);
}

.hero-cinematic__title {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--color-text-heading);
  margin-bottom: 32px;
  max-width: 620px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.hero-cinematic__title em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 600;
}

.hero-cinematic__subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.hero-cinematic__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

/* Image frame (right) — animates from 50% width to 100% on scroll */
.hero-cinematic__frame {
  position: relative;
  width: 100%;
  height: 60vh;
  background: var(--color-surface-dark);
  overflow: hidden;
  contain: layout paint;
}

@media (min-width: 900px) {
  .hero-cinematic__frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: inset(0 0 0 var(--frame-inset, 50%));
    will-change: clip-path;
    transform: translateZ(0);
  }
}

/* The image — stays fixed-sized, subtle parallax shift */
.hero-cinematic__image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-cinematic__image {
  position: absolute;
  top: -2%;
  left: 0;
  width: 100%;
  height: 104%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

/* Fine 1px interior frame line — editorial detail */
.hero-cinematic__frame-line {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease-out;
}

.hero-cinematic__frame.is-opening .hero-cinematic__frame-line {
  opacity: 0;
}

/* Dark gradient for logo readability — fades in at end */
.hero-cinematic__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    transparent 50%,
    rgba(6, 46, 13, 0.35) 75%,
    rgba(6, 46, 13, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.8s ease-out;
  pointer-events: none;
  z-index: 3;
}

.hero-cinematic__frame.is-opening .hero-cinematic__gradient {
  opacity: 1;
}

/* Small vignette corner markers — industrial framing detail */
.hero-cinematic__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255,255,255,0.5);
  z-index: 4;
  opacity: 0;
  transition: opacity 0.6s ease-out 0.2s;
}
.hero-cinematic__frame.is-opening .hero-cinematic__corner { opacity: 1; }
.hero-cinematic__corner--tl { top: 24px; left: 24px; border-top: 1px solid; border-left: 1px solid; }
.hero-cinematic__corner--tr { top: 24px; right: 24px; border-top: 1px solid; border-right: 1px solid; }
.hero-cinematic__corner--bl { bottom: 24px; left: 24px; border-bottom: 1px solid; border-left: 1px solid; }
.hero-cinematic__corner--br { bottom: 24px; right: 24px; border-bottom: 1px solid; border-right: 1px solid; }

/* Reveal content — giant wordmark + tagline, appears when image expands */
.hero-cinematic__reveal {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 0 32px;
}

.hero-cinematic__reveal-wordmark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 28px;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  text-wrap: balance;
}

.hero-cinematic__reveal-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.2vw, 1.875rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.hero-cinematic__reveal-tagline em {
  font-style: italic;
  font-weight: 600;
  color: #7fc28a;
}

.hero-cinematic__reveal-location {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 0.85vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s,
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.hero-cinematic__reveal-location::before,
.hero-cinematic__reveal-location::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

.hero-cinematic__frame.is-logo-visible .hero-cinematic__reveal-wordmark,
.hero-cinematic__frame.is-logo-visible .hero-cinematic__reveal-tagline,
.hero-cinematic__frame.is-logo-visible .hero-cinematic__reveal-location {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 899px) {
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-cinematic__reveal { display: none; }
  .hero-cinematic__corner { display: none; }
}

/* ── About Venus (D2 base) ── */
.about-venus {
  padding: 120px 0;
  background: var(--color-surface);
}

@media (max-width: 767px) {
  .about-venus { padding: 72px 0; }
}

.about-venus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-venus__grid {
    grid-template-columns: 5fr 6fr;
    gap: 80px;
  }
}

.about-venus__placeholder {
  aspect-ratio: 5/4;
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.about-venus__placeholder::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
}

.about-venus__placeholder::after {
  content: '';
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
}

.about-venus__placeholder-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.about-venus__placeholder-text {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  font-style: italic;
}

/* ── Korella Project Section ── */
.korella-section {
  position: relative;
  background: var(--color-surface-alt);
  padding: 120px 0 0;
}

@media (max-width: 767px) {
  .korella-section { padding: 72px 0 0; }
}

.korella-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 120px;
}

@media (min-width: 900px) {
  .korella-intro {
    grid-template-columns: 6fr 5fr;
    gap: 80px;
  }
}

@media (max-width: 767px) {
  .korella-intro { padding-bottom: 72px; }
}

/* Collage */
.collage {
  position: relative;
  aspect-ratio: 5/6;
  max-width: 560px;
}

@media (min-width: 900px) {
  .collage { aspect-ratio: 10/11; }
}

.collage__tile {
  position: absolute;
  overflow: hidden;
  background: var(--color-surface-dark);
}

.collage__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage__main {
  top: 0;
  left: 0;
  width: 78%;
  height: 70%;
  z-index: 1;
}

.collage__accent {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 52%;
  z-index: 2;
  box-shadow: -18px -18px 0 var(--color-surface-alt);
}

.collage__tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-primary);
  color: white;
  padding: 10px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}

.collage__frame {
  position: absolute;
  top: 8%;
  left: 6%;
  right: -8%;
  bottom: 4%;
  border: 1px solid var(--color-primary);
  z-index: 0;
  opacity: 0.25;
}

/* Intro text side */
.korella-intro__text .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.korella-intro__text .section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-primary);
}

.korella-intro__title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--color-text-heading);
}

.korella-intro__text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  max-width: 520px;
}

.korella-intro__cta {
  margin-top: 16px;
}

/* Curved green transition */
.korella-curve {
  display: block;
  width: 100%;
  height: 100px;
  margin-bottom: -1px;
}

.korella-curve path {
  fill: var(--color-primary);
}

/* Metrics on green */
.korella-metrics {
  background: var(--color-primary);
  color: white;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .korella-metrics { padding: 72px 0 80px; }
}

.korella-metrics::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.korella-metrics::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.korella-metrics__header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
}

.korella-metrics__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.korella-metrics__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 0;
}

.korella-metrics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  position: relative;
}

@media (min-width: 768px) {
  .korella-metrics__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

.metric {
  text-align: left;
  padding-top: 28px;
  border-top: 2px solid rgba(255,255,255,0.3);
}

.metric__icon {
  color: rgba(255,255,255,0.9);
  font-size: 1.75rem !important;
  margin-bottom: 20px;
  display: block;
}

.metric__value {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  color: white;
}

.metric__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── Development Roadmap (D1 big squares + Stage labels) ── */
.roadmap-section {
  padding: 120px 0;
  background: var(--color-surface);
}

@media (max-width: 767px) {
  .roadmap-section { padding: 72px 0; }
}

.roadmap-header {
  max-width: 720px;
  margin-bottom: 88px;
}

.roadmap-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.roadmap-header .section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-primary);
}

.roadmap-header h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.roadmap-header p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
}

@media (min-width: 768px) {
  .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .roadmap-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 48px;
    right: 48px;
    height: 1px;
    background: var(--color-border);
    z-index: 0;
  }
}

.stage-block {
  position: relative;
  z-index: 1;
}

.stage-box {
  width: 96px;
  height: 96px;
  background: var(--color-primary);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform var(--transition-base), background var(--transition-base);
  position: relative;
}

.stage-block:hover .stage-box {
  transform: translateY(-4px);
  background: var(--color-primary-dark);
}

.stage-box__num {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1;
  margin-bottom: 6px;
}

.stage-box__label {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stage-block__years {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-muted);
  padding: 6px 12px;
  margin-bottom: 16px;
}

.stage-block__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-heading);
  margin-bottom: 14px;
}

.stage-block__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 320px;
}

/* ═══════════════════════════════════════════════════
   Korella Project Page — Merged Design
   ═══════════════════════════════════════════════════ */

@property --ring-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Numbered hover-to-fill card (D1-style) */
.card-hl {
  position: relative;
  background: #fff;
  padding: 44px 36px;
  border-left: 3px solid var(--color-primary);
  transition: background 0.5s ease, color 0.5s ease, transform 0.4s ease;
  overflow: hidden;
}

.card-hl:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.card-hl__num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-primary);
  margin-bottom: 48px;
  transition: color 0.5s ease;
}

.card-hl:hover .card-hl__num { color: rgba(255,255,255,0.75); }

.card-hl__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--color-text-heading);
  transition: color 0.5s ease;
}

.card-hl:hover .card-hl__title { color: white; }

.card-hl__text {
  font-size: 0.9125rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  transition: color 0.5s ease;
}

.card-hl:hover .card-hl__text { color: rgba(255,255,255,0.9); }

.card-hl--wide { grid-column: 1 / -1; }

@media (min-width: 1024px) {
  .card-hl--wide { grid-column: span 2; }
}

/* Glance section — D1 layout with image placeholder */
.glance {
  padding: 120px 0;
  background: var(--color-surface);
}

@media (max-width: 767px) { .glance { padding: 72px 0; } }

.glance__header {
  max-width: 720px;
  margin-bottom: 64px;
}

.glance__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .glance__grid {
    grid-template-columns: 8fr 4fr;
    gap: 64px;
    align-items: center;
  }
}

/* Content-first variant for text-heavy sections (About page) */
@media (min-width: 900px) {
  .glance__grid--text-first {
    grid-template-columns: 7fr 5fr;
    align-items: start;
  }
}

.glance__image {
  position: relative;
  background: var(--color-surface-alt);
  aspect-ratio: 16/11;
  overflow: hidden;
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glance__image::before,
.glance__image::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-color: var(--color-primary);
}

.glance__image::before {
  top: 20px;
  left: 20px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.glance__image::after {
  bottom: 20px;
  right: 20px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.glance__image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--color-primary);
  color: white;
  padding: 8px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.glance__placeholder-text {
  text-align: center;
  z-index: 1;
}

.glance__placeholder-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.glance__placeholder-sub {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
  font-style: italic;
}

.glance__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glance__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.glance__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--color-text-heading);
}

.glance__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.glance__stat-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.glance__stat .stat__value { font-size: 1.75rem; margin-bottom: 4px; }
.glance__stat .stat__label { font-size: 0.7rem; }

/* Resource section — D2 content, D1 feel */
.resource-section {
  padding: 120px 0;
  background: var(--color-surface-alt);
}

@media (max-width: 767px) { .resource-section { padding: 72px 0; } }

.resource-header {
  max-width: 760px;
  margin-bottom: 64px;
}

.resource-validation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .resource-validation { grid-template-columns: 6fr 5fr; gap: 64px; }
}

.resource-validation__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: white;
  border-left: 3px solid var(--color-primary);
}

.resource-validation__stat {
  padding: 32px 28px;
  border-right: 1px solid var(--color-border-light);
}

.resource-validation__stat:last-child { border-right: none; }

.resource-validation__stat-num {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-text-heading);
  margin-bottom: 10px;
}

.resource-validation__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* Why Phosphate section (D1 dark) */
.why-phosphate {
  background: var(--color-surface-dark);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .why-phosphate { padding: 72px 0; }
  .why-phosphate__header { margin-bottom: 40px; }
  .data-card { padding: 28px 24px; }
}

.why-phosphate::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.why-phosphate::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.why-phosphate__header {
  max-width: 720px;
  margin-bottom: 72px;
  position: relative;
}

.why-phosphate__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7fc28a;
  margin-bottom: 24px;
}

.why-phosphate__label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: #7fc28a;
}

.why-phosphate__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: white;
  margin-bottom: 20px;
}

.why-phosphate__desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}

.why-phosphate__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
}

@media (min-width: 768px) {
  .why-phosphate__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (min-width: 1100px) {
  .why-phosphate__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.data-card {
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--color-primary);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.data-card:hover { background: rgba(255,255,255,0.05); }

.data-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7fc28a;
  margin-bottom: 20px;
}

.data-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: white;
}

.data-card__sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}

/* Bar chart (D1 style in dark) */
/* ── Vertical bar graph ── */
.vbar-graph {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  height: 200px;
  margin: 28px 0 20px;
  padding-bottom: 32px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.vbar-graph__bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.vbar-graph__bar {
  width: 100%;
  max-width: 80px;
  height: 0;
  background: var(--color-primary);
  border-radius: 2px 2px 0 0;
  position: relative;
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vbar-graph__bar--projected {
  background: linear-gradient(to top, var(--color-primary), #2a9d3a);
}

[data-chart] .vbar-graph__bar.animated {
  height: var(--bar-h, 0);
}

.vbar-graph__val {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.vbar-graph__year {
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.vbar-graph__growth {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.vbar-graph__growth-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #7fc28a;
  letter-spacing: 0.04em;
}

.dbar { margin-bottom: 18px; }

.dbar__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.dbar__label { color: rgba(255,255,255,0.55); text-transform: uppercase; }
.dbar__value { color: white; font-feature-settings: 'tnum'; }

.dbar__track {
  height: 28px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.dbar__fill {
  height: 100%;
  background: var(--color-primary);
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dbar__fill.animated { width: var(--bar-w, 100%); }

/* Ring chart (animated, SVG-based for smooth fill) */
.dring {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.dring__wheel {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.dring__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dring__track {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 10;
}

.dring__bar {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 10;
  stroke-linecap: square;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dring__bar.animated { stroke-dashoffset: var(--ring-offset, 0); }

.dring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dring__value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}

.dring__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.dring__notes {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dring__note {
  border-left: 2px solid var(--color-primary);
  padding-left: 16px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}

.dring__note--muted {
  border-left-color: rgba(255,255,255,0.15);
}

/* Info card — simpler callout for critical mineral status */
.info-fact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-fact__year {
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
}

.info-fact__text {
  font-size: 0.9125rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
}

/* Source line */
.chart-source {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 24px;
}

/* Policy strip */
.policy-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (min-width: 768px) { .policy-strip { grid-template-columns: repeat(3, 1fr); } }

.policy-item {
  background: rgba(255,255,255,0.03);
  padding: 28px 28px 28px 32px;
  border-left: 3px solid var(--color-primary);
}

.policy-item--muted { border-left-color: rgba(255,255,255,0.12); }

.policy-item__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7fc28a;
  margin-bottom: 12px;
}

.policy-item--muted .policy-item__label {
  color: rgba(255,255,255,0.45);
}

.policy-item__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* ═══════════════════════════════════════════════════
   About pages — D1-inspired facts strip & team cards
   ═══════════════════════════════════════════════════ */

.facts-strip {
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .facts-strip { grid-template-columns: repeat(4, 1fr); }
}

.facts-strip__item {
  padding: 56px 40px;
  border-right: 1px solid var(--color-border);
  position: relative;
}

.facts-strip__item:last-child { border-right: none; }

@media (max-width: 767px) {
  .facts-strip__item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 32px 24px;
  }
  .facts-strip__item:last-child { border-bottom: none; }
}

.facts-strip__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--color-primary);
}

.facts-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.facts-strip__value {
  font-size: clamp(1.75rem, 2.5vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-heading);
  line-height: 1.05;
}

/* Roadmap quote — editorial pull-quote */
.vision-quote {
  max-width: 820px;
  margin: 0 auto 64px;
  padding: 44px 48px;
  background: white;
  border-left: 4px solid var(--color-primary);
  position: relative;
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 32px;
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary);
  font-family: Georgia, serif;
  font-weight: 700;
}

.vision-quote p {
  font-size: clamp(1.125rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--color-text-heading);
  font-weight: 500;
  font-style: italic;
  margin: 0;
  max-width: none;
}

@media (max-width: 767px) {
  .vision-quote { padding: 36px 28px; }
  .vision-quote::before { left: 20px; font-size: 3.5rem; }
}

/* Team member card */
.team-card {
  background: white;
  padding: 40px 32px 36px;
  text-align: center;
  border-left: 3px solid var(--color-primary);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.team-card__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-surface-alt);
  border: 1px dashed var(--color-border);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.team-card__avatar::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.25;
}

.team-card__role-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-muted);
  padding: 5px 12px;
  margin-bottom: 14px;
}

.team-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-heading);
  margin-bottom: 8px;
}

.team-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Image break band (D1-inspired) */
.image-break {
  height: 380px;
  background: var(--color-surface-dark);
  position: relative;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.image-break__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(6,46,13,0.3), rgba(6,46,13,0.7));
}

.image-break__text {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  font-style: italic;
  color: white;
  text-align: center;
  max-width: 760px;
  padding: 0 32px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   About Us — Banner hero & profile grid
   ═══════════════════════════════════════════════════ */

.about-hero {
  position: relative;
  margin-top: 80px;
  height: clamp(380px, 55vh, 520px);
  overflow: hidden;
  background: var(--color-surface-dark);
}

.about-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 46, 13, 0.72) 0%,
    rgba(6, 46, 13, 0.48) 55%,
    rgba(6, 46, 13, 0.30) 100%
  );
}

.about-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45) 0%,
    transparent 50%
  );
}

.about-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
}

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.about-hero__label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.about-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: white;
  max-width: 900px;
  margin: 0 0 20px;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.about-hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.about-hero__tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

@media (max-width: 767px) {
  .about-hero { margin-top: 64px; }
  .about-hero__content { padding-bottom: 48px; }
}

/* Leadership profile grid */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 600px) {
  .profile-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}

@media (min-width: 1024px) {
  .profile-grid { grid-template-columns: repeat(3, 1fr); gap: 56px 40px; }
}

.profile-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card:hover { transform: translateY(-6px); }

.profile-card__portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--color-surface-alt);
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card:hover .profile-card__portrait img {
  transform: scale(1.03);
}

.profile-card__portrait::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  z-index: 3;
}

.profile-card__placeholder {
  text-align: center;
  z-index: 2;
  padding: 24px;
}

.profile-card__placeholder-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.profile-card__placeholder-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-tertiary);
  font-style: italic;
  line-height: 1.5;
}

.profile-card__meta {
  padding: 0 4px;
}

.profile-card__role {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.profile-card__name {
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--color-text-heading);
  margin: 0 0 14px;
}

.profile-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.3s ease;
  padding-top: 6px;
  border-top: 1px solid var(--color-border);
  padding: 16px 0 0;
}

.profile-card__cta::after {
  content: '→';
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.profile-card__cta:hover { color: var(--color-primary-dark); }
.profile-card__cta:hover::after { transform: translateX(6px); }

/* History timeline */
.history-timeline {
  position: relative;
  padding-left: 36px;
  margin-top: 24px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 12px;
  width: 1px;
  background: var(--color-border);
}

.history-item {
  position: relative;
  padding-bottom: 56px;
}

.history-item:last-child { padding-bottom: 0; }

.history-item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -29px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-surface);
  z-index: 1;
}

.history-item__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-muted);
  padding: 6px 14px;
  margin-bottom: 14px;
}

.history-item__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-heading);
  margin: 0 0 10px;
}

.history-item__text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 640px;
}

/* ═══════════════════════════════════════════════════
   Polish — Animations, Micro-Interactions & Perf
   ═══════════════════════════════════════════════════ */

/* ── Extended stagger delays ── */
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }

/* ── Hover micro-interactions: cards ── */
.card-hl {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease, color 0.35s ease;
}

.card-hl:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.stage-block {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-block:hover {
  transform: translateY(-3px);
}

.stage-block:hover .stage-box {
  border-color: var(--color-primary);
  background: var(--color-primary-muted);
  transition: border-color 0.3s ease, background 0.3s ease;
}

/* ── Hover micro-interactions: footer links ── */
.footer__link {
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-text-inverse);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__link:hover::after {
  transform: scaleX(1);
}

/* ── Hover: button arrow slide ── */
.btn:hover .material-symbols-outlined {
  transform: translateX(5px);
}

.btn--ghost:hover .material-symbols-outlined {
  transform: translateX(8px);
}

/* ── Section label line-draw on reveal ── */
.korella-intro__text .section-label::before,
.hero-cinematic__label::before,
.map-detail__label-top::before {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transform-origin: left;
}

.reveal .section-label::before,
.reveal .map-detail__label-top::before {
  transform: scaleX(0);
}

.reveal.visible .section-label::before,
.reveal.visible .map-detail__label-top::before {
  transform: scaleX(1);
}

/* ── CTA band entrance ── */
.cta-band__watermark {
  opacity: 0;
  transform: translateX(-40px) translateY(8px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-band__content {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.cta-band.is-visible .cta-band__watermark {
  opacity: 1;
  transform: translateX(0) translateY(8px);
}

.cta-band.is-visible .cta-band__content {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 899px) {
  .cta-band.is-visible .cta-band__watermark {
    transform: translateX(0) translateY(0);
  }
}

/* ── Footer fade-in stagger ── */
.footer__top > *:nth-child(1) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__top > *:nth-child(2) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.footer__top > *:nth-child(3) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.footer.is-visible .footer__top > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── History timeline draw-in ── */
.history-timeline::before {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.history-timeline.is-drawing::before {
  transform: scaleY(1);
}

.history-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.history-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.history-item::before {
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.history-item.is-visible::before {
  transform: scale(1);
}

.history-item__year {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.history-item.is-visible .history-item__year {
  opacity: 1;
  transform: translateX(0);
}

/* ── Counter animation: numeric values ── */
.counter-value {
  font-variant-numeric: tabular-nums;
}

/* ── Metric counter scale-in on reveal ── */
.metric {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Facts strip items stagger ── */
.facts-strip__item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.facts-strip.reveal.visible .facts-strip__item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.facts-strip.reveal.visible .facts-strip__item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.facts-strip.reveal.visible .facts-strip__item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.facts-strip.reveal.visible .facts-strip__item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }

/* ── Performance: GPU compositing hints for animated elements ── */
.page-entrance__item,
.reveal,
.cta-band__watermark,
.cta-band__content,
.hero-cinematic__frame,
.collage__main,
.collage__accent {
  will-change: opacity, transform;
}

/* Remove will-change after animation settles to free GPU memory */
.reveal.visible,
.page-entrance__item[style*="opacity: 1"],
.cta-band.is-visible .cta-band__watermark,
.cta-band.is-visible .cta-band__content {
  will-change: auto;
}

/* ── Extended reduced motion ── */
/* ── Page entrance system — load-triggered (not scroll) ── */
/* Used on the first content section of each page for immediate animation on load */

@keyframes entranceFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes entranceSlideRight {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-entrance__item {
  opacity: 0;
}

.page-entrance__item--1 {
  animation: entranceFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.page-entrance__item--2 {
  animation: entranceFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.page-entrance__item--3 {
  animation: entranceFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.page-entrance__item--4 {
  animation: entranceFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

/* On subpages with hero banners, delay entrance items a bit more
   since the hero itself is animating */
.about-hero ~ * .page-entrance__item--1 {
  animation-delay: 0.5s;
}
.about-hero ~ * .page-entrance__item--2 {
  animation-delay: 0.7s;
}
.about-hero ~ * .page-entrance__item--3 {
  animation-delay: 0.85s;
}

/* ── Subpage hero: accent line on label draws in ── */
.about-hero__label::before {
  transform-origin: left;
  animation: lineGrow 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

/* ── Subpage hero: subtle overlay reveal ── */
@keyframes overlayReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.about-hero__overlay {
  animation: overlayReveal 0.6s ease-out 0.05s both;
}

/* ── Page load: body fade-in (simplified — no transform, just opacity) ── */
@keyframes bodyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  animation: bodyFadeIn 0.35s ease-out both;
}

/* ── Page load: nav slide-down (lighter — just opacity, no transform) ── */
.nav {
  animation: bodyFadeIn 0.4s ease-out 0.05s both;
}

/* ── Page load: hero image Ken Burns (slow zoom out) ── */
@keyframes kenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.about-hero__image {
  animation: kenBurns 5s ease-out both;
  transform: translateZ(0);
}

/* ── Page load: hero label line-draw ── */
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.about-hero__label::before {
  transform-origin: left;
  animation: lineGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* ── Homepage hero cinematic load enhancements ── */
.hero-cinematic__frame {
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@media (max-width: 899px) {
  .hero-cinematic__frame {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  }
}

/* ── Homepage hero cinematic: corner accent lines draw in on load ── */
@keyframes cornerFadeIn {
  from { opacity: 0; }
  to   { opacity: 0.25; }
}

.collage__frame {
  opacity: 0;
  animation: cornerFadeIn 1.2s ease-out 0.8s forwards;
}

/* ── Homepage: stagger collage tiles on load (when scrolled to) ── */
.collage__main {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0);
}

.collage__accent {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transform: translateZ(0);
}

.collage__tag {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
}

.reveal.visible .collage__main {
  clip-path: inset(0 0% 0 0);
}

.reveal.visible .collage__accent {
  clip-path: inset(0 0 0% 0);
}

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

/* ── Korella metrics: stagger each metric on reveal ── */
.korella-metrics__grid .metric:nth-child(1) { transition-delay: 0s; }
.korella-metrics__grid .metric:nth-child(2) { transition-delay: 0.1s; }
.korella-metrics__grid .metric:nth-child(3) { transition-delay: 0.2s; }
.korella-metrics__grid .metric:nth-child(4) { transition-delay: 0.3s; }

/* ── Roadmap stage blocks stagger ── */
.roadmap-grid .stage-block:nth-child(1) { transition-delay: 0s; }
.roadmap-grid .stage-block:nth-child(2) { transition-delay: 0.15s; }
.roadmap-grid .stage-block:nth-child(3) { transition-delay: 0.3s; }

/* ── Korella highlights card-hl stagger ── */
.grid .card-hl {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease, color 0.35s ease;
}

.reveal.visible .card-hl:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal.visible .card-hl:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.reveal.visible .card-hl:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
.reveal.visible .card-hl:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.reveal.visible .card-hl:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }

/* ── Stat cards stagger on Korella page ── */
.grid .card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible .card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal.visible .card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal.visible .card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal.visible .card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

/* ── Policy strip items stagger (Korella page) ── */
.policy-strip .policy-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-strip.reveal.visible .policy-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.policy-strip.reveal.visible .policy-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.policy-strip.reveal.visible .policy-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }

/* ── Data cards stagger (Korella Why Phosphate section) ── */
.why-phosphate__grid .data-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-phosphate__grid .data-card.reveal.visible:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.why-phosphate__grid .data-card.reveal.visible:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.why-phosphate__grid .data-card.reveal.visible:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }

/* ── Extended reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  body, .nav {
    animation: none !important;
  }
  .page-entrance__item {
    opacity: 1 !important;
    animation: none !important;
  }
  .about-hero__overlay {
    animation: none !important;
  }
  .about-hero__image {
    animation: none !important;
  }
  .about-hero__label::before {
    animation: none !important;
    transform: scaleX(1) !important;
  }
  .hero-cinematic__frame {
    opacity: 1 !important;
    animation: none !important;
  }
  .collage__main, .collage__accent {
    clip-path: none !important;
  }
  .collage__tag {
    opacity: 1 !important;
    transform: none !important;
  }
  .grid .card-hl,
  .grid .card,
  .policy-strip .policy-item,
  .why-phosphate__grid .data-card {
    opacity: 1 !important;
    transform: none !important;
  }
  .cta-band__watermark,
  .cta-band__content,
  .footer__top > *,
  .history-item,
  .history-item::before,
  .history-item__year,
  .history-timeline::before,
  .facts-strip__item,
  .card-hl,
  .stage-block {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .history-timeline::before {
    transform: scaleY(1) !important;
  }
}
