/* === Cossack Heritage 50yr — Style System === */

:root {
  --night: #0E1A2B;
  --night-2: #16263E;
  --night-3: #1F3251;
  --parchment: #F4ECD8;
  --parchment-2: #EADFC2;
  --parchment-3: #FBF6E9;
  --gold: #B8893A;
  --gold-2: #D4A85A;
  --gold-3: #8C6622;
  --burgundy: #8B2635;
  --ink: #0A0F18;
  --muted: #5C6577;
  --ink-soft: #5C6577;
  --line: rgba(184, 137, 58, 0.28);
  --line-strong: rgba(184, 137, 58, 0.55);
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", "PT Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--night); }

/* ==== Typography ==== */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 104px); line-height: 1.02; letter-spacing: -0.02em; }
h2 { font-size: clamp(36px, 4.6vw, 68px); line-height: 1.06; letter-spacing: -0.015em; }
h3 { font-size: clamp(22px, 2.2vw, 32px); line-height: 1.2; }
p  { margin: 0; }

.italic { font-style: italic; }

/* ==== Layout helpers ==== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-tight { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

section { position: relative; }

.hairline {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ==== Top Bar ==== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(244, 236, 216, 0.72);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.topbar.dark {
  background: rgba(14, 26, 43, 0.78);
  border-bottom-color: rgba(184, 137, 58, 0.25);
  color: var(--parchment);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 30px; height: 30px;
}
.nav {
  display: flex; gap: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav a { opacity: 0.78; transition: opacity 0.2s; cursor: pointer; }
.nav a:hover { opacity: 1; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.lang-switch button {
  background: transparent;
  border: none;
  padding: 7px 14px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  letter-spacing: 0.12em;
  transition: all 0.2s;
}
.lang-switch button.active {
  background: var(--gold);
  color: var(--night);
}

/* ==== Hero ==== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 80% at 30% 0%, rgba(184,137,58,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(139,38,53,0.22) 0%, transparent 65%),
    linear-gradient(180deg, #0A1422 0%, var(--night) 40%, var(--night-2) 100%);
  color: var(--parchment);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,137,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,58,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
}

.hero h1 {
  color: var(--parchment-3);
}
.hero h1 .gold {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 400;
}
.hero-subtitle {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  color: rgba(244, 236, 216, 0.75);
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold-2);
  line-height: 1;
}
.hero-meta-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.55);
  margin-top: 8px;
}

.hero-cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: var(--sans);
}
.btn-gold {
  background: var(--gold);
  color: var(--night);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(184,137,58,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(244,236,216,0.3);
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn-dark {
  background: var(--night);
  color: var(--parchment);
}
.btn-dark:hover { background: var(--night-2); transform: translateY(-1px); }

/* hero seal */
.hero-seal {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}
.seal-rotate {
  position: absolute;
  inset: 0;
  animation: rotate 80s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.dust-particle {
  position: absolute;
  background: var(--gold-2);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* ==== Generic Section ==== */
.section-pad { padding: 140px 0; }
.section-pad-sm { padding: 100px 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 64px;
  max-width: 780px;
}

/* ==== Stages ==== */
.stage-wrap { position: relative; }

.stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}
.stage:first-child { border-top: none; }
@media (max-width: 980px) {
  .stage { grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
}

.stage-num {
  font-family: var(--serif);
  font-size: 180px;
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.18;
  font-weight: 400;
  font-style: italic;
}

.stage h2 .figure {
  display: block;
  font-style: italic;
  color: var(--burgundy);
}

.stage-tags {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-3);
  background: rgba(255,255,255,0.4);
}

.stage-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stage-list-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--line);
}
.stage-list-item:last-child { border-bottom: none; }
.stage-list-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-3);
  margin-top: 4px;
}
.stage-list-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: #2A3243;
}
.stage-list-text b {
  color: var(--ink);
  font-weight: 600;
}

/* Image plate */
.plate {
  position: relative;
  background: var(--parchment-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 60px -20px rgba(14,26,43,0.25),
    0 0 0 1px var(--line);
}
.plate.wide { aspect-ratio: 16 / 10; }
.plate.tall { aspect-ratio: 3 / 4; }

.plate-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 14px,
    rgba(184,137,58,0.10) 14px,
    rgba(184,137,58,0.10) 16px
  );
}

.plate-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gold-3);
  background: var(--parchment-3);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  z-index: 2;
}
.plate-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.plate:hover .plate-img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.06);
}
.plate:has(.plate-img) .plate-tag {
  background: rgba(251, 246, 233, 0.92);
  backdrop-filter: blur(4px);
}
.plate-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--gold-3);
  background: var(--parchment-3);
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  z-index: 2;
}
.plate:has(.plate-img) .plate-caption {
  background: linear-gradient(180deg, rgba(14,26,43,0) 0%, rgba(14,26,43,0.92) 100%);
  color: var(--gold-2);
  border-left-color: var(--gold-2);
  padding-top: 32px;
  bottom: 0; left: 0; right: 0;
  backdrop-filter: blur(2px);
}

/* Mazepa - dark plate variant */
.plate-dark {
  background: var(--night-2);
  color: var(--parchment);
}
.plate-dark .plate-stripes {
  background-image: repeating-linear-gradient(
    -45deg, transparent 0, transparent 14px,
    rgba(184,137,58,0.16) 14px, rgba(184,137,58,0.16) 16px);
}
.plate-dark .plate-tag, .plate-dark .plate-caption {
  background: rgba(14,26,43,0.85);
  color: var(--gold-2);
  border-color: rgba(184,137,58,0.4);
}

.plate-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 5 / 4;
}
.plate-collage > .plate {
  aspect-ratio: auto;
  height: 100%;
}
.plate-collage > .plate:first-child {
  grid-row: span 2;
}

/* ==== Stats band ==== */
.stats {
  background: var(--night);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 50%, rgba(184,137,58,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(139,38,53,0.18) 0%, transparent 60%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 56px 32px;
  border-left: 1px solid rgba(184,137,58,0.2);
}
.stat:first-child { border-left: none; }
@media (max-width: 880px) {
  .stat:nth-child(3) { border-left: none; border-top: 1px solid rgba(184,137,58,0.2); }
  .stat:nth-child(4) { border-top: 1px solid rgba(184,137,58,0.2); }
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  color: var(--gold-2);
  letter-spacing: -0.01em;
}
.stat-num .small { font-size: 0.5em; vertical-align: top; opacity: 0.85; margin-left: 4px; }
.stat-lbl {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.65);
}
.stat-sub {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(244,236,216,0.55);
  line-height: 1.5;
}

/* ==== Roadmap ==== */
.roadmap {
  background: var(--parchment-3);
}
.roadmap-track {
  position: relative;
  margin-top: 64px;
  padding: 60px 0 20px;
}
.roadmap-line {
  position: absolute;
  top: 92px; left: 0; right: 0;
  height: 2px;
  background: var(--line);
}
.roadmap-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 1.6s ease;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 980px) { .roadmap-grid { grid-template-columns: 1fr 1fr; } .roadmap-line { display: none; } }
@media (max-width: 600px) { .roadmap-grid { grid-template-columns: 1fr; } }

.phase {
  position: relative;
  padding-top: 70px;
}
.phase-dot {
  position: absolute;
  top: 25px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--parchment);
  border: 2px solid var(--gold);
  z-index: 2;
  transition: background 0.3s, transform 0.3s;
}
.phase.active .phase-dot {
  background: var(--gold);
  transform: translateX(-50%) scale(1.3);
}
.phase-roman {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-3);
  text-align: center;
}
.phase-years {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.phase-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 14px;
  text-align: center;
  line-height: 1.2;
}
.phase-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: #2A3243;
  margin-top: 14px;
  text-align: center;
}
.phase-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 70px 14px 22px;
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s;
  cursor: pointer;
}
.phase-link:hover {
  background: rgba(184,137,58,0.08);
  transform: translateY(-2px);
}
.phase-link:hover .phase-dot {
  background: var(--gold);
  transform: translateX(-50%) scale(1.3);
}
.phase-more {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-top: 18px;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.phase-link:hover .phase-more {
  opacity: 1;
  color: var(--gold);
}

/* ==== Investors ==== */
.investors {
  background: var(--night);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}
.investors::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,137,58,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,58,0.06) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 20%, transparent 80%);
}
.investors-head { position: relative; }

.fund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
@media (max-width: 880px) { .fund-grid { grid-template-columns: 1fr; } }

.fund-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(184,137,58,0.22);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.fund-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(184,137,58,0.05);
}
.fund-amount {
  font-family: var(--serif);
  font-size: 52px;
  color: var(--gold-2);
  line-height: 1;
  letter-spacing: -0.01em;
}
.fund-name {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--parchment-3);
}
.fund-tag {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.fund-desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,236,216,0.7);
}
.fund-status {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(184,137,58,0.22);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-2);
  letter-spacing: 0.06em;
  display: flex; justify-content: space-between;
}

/* ==== Programs (charity ideas) ==== */
.programs {
  background: var(--parchment);
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 980px) { .prog-grid { grid-template-columns: 1fr; } }
.prog {
  background: var(--parchment-3);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.prog:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(14,26,43,0.18);
}
.prog-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
}
.prog h3 { color: var(--ink); }
.prog-desc {
  margin-top: 16px;
  color: #2A3243;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.prog-funder {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-3);
  text-transform: uppercase;
}

/* ==== CTA ==== */
.cta {
  background: linear-gradient(135deg, var(--night) 0%, var(--night-2) 50%, var(--night-3) 100%);
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,58,0.18), transparent 65%);
  top: -200px; right: -200px;
  filter: blur(20px);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .cta-inner { grid-template-columns: 1fr; gap: 48px; } }
.cta h2 .gold { color: var(--gold-2); font-style: italic; }
.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,137,58,0.28);
  padding: 36px;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}
.cta-form h3 { color: var(--parchment-3); }
.field {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.6);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(184,137,58,0.3);
  color: var(--parchment);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
}
.role-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.role-pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
  border: 1px solid rgba(184,137,58,0.3);
  background: transparent;
  color: var(--parchment);
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.2s;
}
.role-pill.active {
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
}
.role-pill:hover { border-color: var(--gold-2); }

.success {
  background: rgba(184,137,58,0.12);
  border: 1px solid var(--gold);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
}

/* ==== Footer ==== */
.footer {
  background: #07101D;
  color: rgba(244,236,216,0.6);
  padding: 56px 0 32px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer .footer-link {
  transition: color 0.2s, padding-left 0.2s;
  cursor: pointer;
}
.footer .footer-link:hover {
  color: var(--gold-2);
  padding-left: 6px;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(184,137,58,0.18);
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==== Reveal ==== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* float anim */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float { animation: float 6s ease-in-out infinite; }

/* hover lift  */
.lift { transition: transform 0.3s; }
.lift:hover { transform: translateY(-3px); }

/* utility */
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.col { display: flex; flex-direction: column; gap: 12px; }
.spacer-32 { height: 32px; }
.spacer-64 { height: 64px; }
