@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green: #0fa968;
  --green-light: #14d584;
  --green-dark: #0c8a55;
  --green-glow: rgba(15, 169, 104, 0.12);
  --green-glow-strong: rgba(15, 169, 104, 0.25);

  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-glass: rgba(10, 10, 10, 0.8);

  --text: #e0e0e0;
  --text-muted: #999999;
  --text-dim: #777777;
  --white: #ffffff;

  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(15, 169, 104, 0.3);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --section-pad: clamp(80px, 12vh, 160px);
  --container: 1200px;
  --container-tight: 800px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* ── Skip Link ─────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--green);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus { top: 16px; }

/* ── Scroll Progress ───────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  z-index: 10001;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--green-glow-strong);
}

/* ── Typography ────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  line-height: 1.1;
  font-weight: 700;
}

h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.25rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

p { max-width: 65ch; }

.text-green { color: var(--green); }
.text-blue { color: #1a8cff; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

/* ── Layout ────────────────────────────────── */

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

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

section { padding: var(--section-pad) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Buttons ───────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn--primary {
  background: var(--green);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow-strong);
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 24px; font-size: 0.85rem; }

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.btn:hover svg { transform: translateX(4px); }

/* ── Header ────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.header__logo img { height: 80px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}

.header__nav a:hover,
.header__nav a.active { color: var(--white); }

.header__nav a:hover::after,
.header__nav a.active::after { width: 100%; }

.header__cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--green); }

/* ── Hero ──────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(20%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 50%, var(--green-glow) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, var(--bg) 100%);
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__content {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(15, 169, 104, 0.08);
  border: 1px solid rgba(15, 169, 104, 0.2);
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s infinite;
}

.hero h1 { margin-bottom: 24px; }

.hero h1 .line { display: block; }

.hero__subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scroll-line 2s infinite;
}

/* ── Marquee ───────────────────────────────── */

.marquee {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.marquee__inner {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee__item .sep { color: var(--green); font-size: 0.6em; }

/* ── Cards ─────────────────────────────────── */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
}

.card__icon svg { width: 24px; height: 24px; }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 1.05rem; }

.card__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* ── Stats ─────────────────────────────────── */

.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label { font-size: 1rem; color: var(--text-muted); }

/* ── Image Block ───────────────────────────── */

.img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* ── Gallery ───────────────────────────────── */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

.gallery__item--wide { grid-column: span 2; }

.gallery__item--full {
  grid-column: 1 / -1;
  aspect-ratio: auto;
}

.gallery__item--full img {
  object-fit: contain;
  height: auto;
}

/* ── Publication Cards ─────────────────────── */

.pub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pub-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pub-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.pub-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pub-card:hover .pub-card__img img { transform: scale(1.05); }

.pub-card__body { padding: 32px; }

.pub-card__date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 12px;
}

.pub-card__body h3 { margin-bottom: 16px; line-height: 1.3; }
.pub-card__body p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 20px; }

/* ── Featured Publication ──────────────────── */

.pub-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pub-featured:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pub-featured__img {
  overflow: hidden;
  min-height: 400px;
}

.pub-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pub-featured:hover .pub-featured__img img { transform: scale(1.03); }

.pub-featured__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pub-featured__body .label { margin-bottom: 16px; }
.pub-featured__body h2 { margin-bottom: 20px; line-height: 1.2; }
.pub-featured__body p { color: var(--text-muted); margin-bottom: 28px; line-height: 1.8; }

/* ── Forms ─────────────────────────────────── */

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}

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

.form-inline {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.form-inline input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-inline input:focus { border-color: var(--green); }

/* ── Blockquotes ───────────────────────────── */

.quote {
  border-left: 2px solid var(--green);
  padding-left: 24px;
  margin: 0;
}

.quote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  max-width: none;
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
}

.quote--large {
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.quote--large p {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  line-height: 1.9;
}

.quote--large cite {
  margin-top: 20px;
  font-size: 0.9rem;
}

.text-center .quote {
  border-left: none;
  padding-left: 0;
}

/* ── CTA Section ───────────────────────────── */

.cta-section {
  text-align: center;
  background: radial-gradient(ellipse at center, var(--green-glow) 0%, transparent 70%);
}

.cta-section h2 { margin-bottom: 20px; }

.cta-section p {
  color: var(--text-muted);
  margin: 0 auto 40px;
  max-width: 500px;
}

/* ── Page Hero (Interior) ──────────────────── */

.page-hero {
  padding: clamp(160px, 22vh, 240px) 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at 30% 0%, var(--green-glow) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .label { margin-bottom: 20px; }
.page-hero h1 { margin-bottom: 20px; }

.page-hero p {
  color: var(--text-muted);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  max-width: 600px;
}

/* ── Timeline ──────────────────────────────── */

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--border));
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--bg);
}

.timeline__item h3 { margin-bottom: 8px; }
.timeline__item p { color: var(--text-muted); }

/* ── Values Grid ───────────────────────────── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Support Options ───────────────────────── */

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Footer ────────────────────────────────── */

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer__heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.95rem;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer__social a:hover { color: var(--green); }

/* ── Keyframes ─────────────────────────────── */

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger > * { transition-delay: calc(var(--i, 0) * 0.12s); }

/* Hero entrance */
.hero .hero__badge { animation: fade-in-up 0.8s 0.2s both; }
.hero h1 .line:nth-child(1) { animation: fade-in-up 0.8s 0.4s both; }
.hero h1 .line:nth-child(2) { animation: fade-in-up 0.8s 0.55s both; }
.hero__subtitle { animation: fade-in-up 0.8s 0.75s both; }
.hero__actions { animation: fade-in-up 0.8s 0.9s both; }
.hero__scroll { animation: fade-in-up 0.8s 1.1s both; }

/* ── Focus Styles ──────────────────────────── */

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ── Reduced Motion ────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .marquee__inner { animation: none; }
}

/* ── Responsive ────────────────────────────── */

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

@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .option-cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide,
  .gallery__item--full { grid-column: span 1; }

  .pub-featured { grid-template-columns: 1fr; }
  .pub-featured__img { min-height: 250px; }
  .pub-featured__body { padding: 32px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .form-inline { flex-direction: column; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
}
