/* ============================================================
   ROOSEVELT FORESTAL — Personal Brand
   Palette : Noir · Blanc · Or   |   Display : Anton   |   Body : Inter
   ============================================================ */

/* Polices auto-hébergées — aucun service externe requis */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/anton-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-var.woff2") format("woff2");
}

:root {
  --black: #0b0b0c;
  --ink: #121214;
  --ink-2: #1a1a1e;
  --white: #ffffff;
  --paper: #f7f6f2;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 11, 12, 0.1);
  --gold: #c9a227;
  --gold-2: #e8c86a;
  --gold-grad: linear-gradient(135deg, #a8831c 0%, #e8c86a 50%, #c9a227 100%);
  --muted: rgba(255, 255, 255, 0.62);
  --muted-dark: rgba(18, 18, 20, 0.64);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(var(--wrap), 92vw); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.04;
}

h1 { font-size: clamp(2.9rem, 7.2vw, 5.8rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); letter-spacing: 0.03em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-grad);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--muted);
  max-width: 46em;
  font-weight: 300;
}
.on-light .lead { color: var(--muted-dark); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Sections ---------- */
section { padding: clamp(84px, 11vw, 150px) 0; position: relative; }

.on-light { background: var(--paper); color: var(--ink); }
.on-light .kicker { color: #a8831c; }
.on-ink { background: var(--ink); }

.section-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 74px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head h2 { margin-bottom: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  cursor: pointer;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }

.btn-gold {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 14px 40px rgba(201, 162, 39, 0.28);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(201, 162, 39, 0.4); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.28); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }

.on-light .btn-ghost { border-color: rgba(11, 11, 12, 0.25); color: var(--ink); }
.on-light .btn-ghost:hover { border-color: var(--gold); color: #a8831c; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-grad);
  color: var(--black);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  letter-spacing: 0;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; padding: 12px 24px; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 12, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .nav-links a { font-size: 1.15rem; }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -30% auto auto;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.16), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -20%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle at center, rgba(232, 200, 106, 0.07), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { margin: 0 0 26px; }
.hero h1 .line { display: block; }
.hero-sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 34px;
}
.hero-sub b { color: var(--gold-2); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 42px; }

.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 1px solid rgba(232, 200, 106, 0.35);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  z-index: 3;
  background: rgba(17, 17, 20, 0.72);
  border: 1px solid rgba(232, 200, 106, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 16px 22px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-badge b { display: block; color: var(--gold-2); font-size: 0.92rem; margin-bottom: 2px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 430px; }
  .hero-badge { left: 14px; }
}

/* ---------- Media placeholders ---------- */
.media {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(201, 162, 39, 0.22), transparent 55%),
    linear-gradient(160deg, #1b1b1f 0%, #101013 70%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.media .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 0.5s;
}
.media .ph span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
}
.media.has-img .ph { opacity: 0; }
.media.has-img { background-size: cover; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.stat {
  background: var(--black);
  padding: 46px 30px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .label {
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid.c3, .grid.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid.c2, .grid.c3, .grid.c4 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  transition: transform 0.45s var(--ease), border-color 0.45s, background 0.45s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-7px); border-color: rgba(232, 200, 106, 0.4); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin: 0 0 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.card .thumb {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  margin-bottom: 22px;
}
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  margin-bottom: 22px;
}
.card .icon svg { width: 24px; height: 24px; stroke: var(--gold-2); }

.on-light .card {
  border-color: var(--line-dark);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(11, 11, 12, 0.05);
}
.on-light .card p { color: var(--muted-dark); }

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.split .media {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.split.media-right .media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.media-right .media { order: 0; }
  .split .media { max-width: 480px; aspect-ratio: 4 / 3; }
}

/* ---------- Quote band ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 20em;
  margin: 0 auto;
}
.quote-band cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 26px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 40s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 34px;
}
.marquee span::after { content: "◆"; color: var(--gold); font-size: 0.65rem; margin-left: 66px; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Timeline (story) ---------- */
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 39, 0.08));
}
.tl-item { position: relative; padding: 0 0 56px 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 39, 0.14);
}
.tl-item .when {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tl-item h3 { margin-bottom: 10px; }
.tl-item p { color: var(--muted); }

/* ---------- Testimonials ---------- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.testimonial .stars { color: var(--gold-2); letter-spacing: 4px; font-size: 0.95rem; }
.testimonial blockquote { font-size: 1.02rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
.on-light .testimonial blockquote { color: var(--ink); }
.testimonial .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial .who .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
}
.testimonial .who .avatar .ph span { font-size: 1.05rem; }
.testimonial .who b { display: block; font-size: 0.95rem; }
.testimonial .who small { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.on-light .testimonial .who small { color: var(--muted-dark); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery .media { aspect-ratio: 1; border-radius: 16px; transition: transform 0.5s var(--ease); }
.gallery .media:hover { transform: scale(1.025); }
.gallery .media:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Lists ---------- */
.check-list li {
  padding: 14px 0 14px 40px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
}
.on-light .check-list li { border-color: var(--line-dark); color: var(--ink); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 21px;
  width: 16px;
  height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(201, 162, 39, 0.2), transparent 60%),
    var(--ink);
  text-align: center;
  border-block: 1px solid var(--line);
}
.cta-band h2 { max-width: 17em; margin: 0 auto 20px; }
.cta-band .lead { margin: 0 auto 40px; }
.cta-band .hero-actions { justify-content: center; margin-top: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list li { border-bottom: 1px solid var(--line); }
.contact-list a, .contact-list .row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 4px;
  transition: background 0.3s, padding-left 0.3s;
}
.contact-list a:hover { padding-left: 12px; background: rgba(255, 255, 255, 0.03); }
.contact-list .ico {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.contact-list .ico svg { width: 20px; height: 20px; stroke: var(--gold-2); fill: none; }
.contact-list b { display: block; font-size: 0.95rem; }
.contact-list small { color: var(--muted); font-size: 0.82rem; }

.form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: clamp(28px, 4vw, 46px);
}
.form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 22px 0 10px;
}
.form label:first-of-type { margin-top: 0; }
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  font: inherit;
  padding: 15px 18px;
  transition: border-color 0.3s, background 0.3s;
}
.form select { appearance: none; }
.form select option { color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 30px; }

/* ---------- Calendly ---------- */
.calendly-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  min-height: 700px;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 40px;
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 46px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.site-footer li { margin-bottom: 12px; }
.site-footer li a { color: var(--muted); font-size: 0.94rem; transition: color 0.3s; }
.site-footer li a:hover { color: var(--gold-2); }
.footer-tagline { color: var(--muted); max-width: 34em; margin-top: 16px; font-weight: 300; }
.socials { display: flex; gap: 14px; margin-top: 26px; }
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.socials a:hover { border-color: var(--gold); transform: translateY(-3px); background: rgba(201, 162, 39, 0.08); }
.socials svg { width: 19px; height: 19px; fill: rgba(255, 255, 255, 0.8); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 200px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto auto;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at center, rgba(201, 162, 39, 0.14), transparent 60%);
  pointer-events: none;
}
.page-hero .crumb {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-hero h1 { max-width: 12em; }
.page-hero .lead { margin-top: 24px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 18px; }
.mt-2 { margin-top: 34px; }
.mt-3 { margin-top: 56px; }
.note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}
