/* ============================================================
   TOMORROW SUMMER — MOBILE WEB
   Palette: brand gradients green→blue→orange
   ============================================================ */

:root {
  /* ── Brand palette ── */
  --logoblue:        #43698D;
  --logogreen:       #548360;
  --logoorange:      #C48D6C;
  --logobluedd:      #1b2a38;
  --logogreendd:     #223426;
  --logoorangedd:    #4f382b;
  --logoorangedark:  #795541;
  --logobluedark:    #283f55;
  --logogreendark:   #324f3a;

  /* ── Gradients ── */
  --lightgrad:      linear-gradient(135deg, var(--logogreen) 0%, var(--logoblue) 50%, var(--logoorange) 100%);
  --lightgraddark:  linear-gradient(135deg, var(--logogreendark) 0%, var(--logobluedark) 50%, var(--logoorangedark) 100%);
  --lightgraddeepd: linear-gradient(135deg, var(--logogreendd) 0%, var(--logobluedd) 50%, var(--logoorangedd) 100%);

  /* ── Semantic ── */
  --bg-body:    #141d14;
  --accent:     var(--logoorange);
  --accent2:    var(--logogreen);
  --text:       #eaede8;
  --text-muted: #8fa898;
  --border:     rgba(255,255,255,0.09);
  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  26px;
  --shadow:     0 4px 6px rgba(0,0,0,0.1);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.35);
  --font-head:  'Unbounded', sans-serif;
  --font-body:  'Nunito', sans-serif;
  --safe-b:     env(safe-area-inset-bottom, 0px);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: calc(72px + var(--safe-b));
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--lightgrad); border-radius: 4px; }

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(27, 42, 56, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: env(safe-area-inset-top, 0);
}
.header::after {
  content: ''; display: block; height: 2px;
  background: var(--lightgrad);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.logo-img { height: 32px; width: auto; object-fit: contain; }
.burger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV DRAWER ─────────────────────────────────────────── */
.nav-drawer { display: contents; }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 910;
  pointer-events: none; transition: background .3s;
}
.nav-overlay.visible { background: rgba(0,0,0,0.65); pointer-events: all; }
.nav-panel {
  position: fixed; top: 0; right: -300px; bottom: 0; width: 290px;
  background: var(--lightgraddeepd);
  z-index: 920;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  padding: 24px 28px;
  padding-top: calc(24px + env(safe-area-inset-top, 0));
  display: flex; flex-direction: column; gap: 8px;
}
.nav-panel::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--lightgrad);
}
.nav-panel.open { right: 0; }
.nav-close {
  align-self: flex-end; background: none; border: none;
  color: var(--text-muted); font-size: 22px; cursor: pointer;
  margin-bottom: 16px; padding: 4px;
}
.nav-panel ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.nav-link {
  display: block; padding: 12px 0;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  color: var(--text); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-link:active { color: var(--logoorange); }
.nav-cta {
  margin-top: 12px; text-align: center;
  background: var(--lightgrad); color: #fff !important;
  border-radius: var(--radius-sm); padding: 14px !important;
  font-family: var(--font-head); font-size: .85rem;
  border-bottom: none !important;
  box-shadow: var(--shadow-md);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(80px + env(safe-area-inset-top, 0)) 20px 0;
  min-height: 100svh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(196,141,108,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 10% 70%, rgba(84,131,96,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(67,105,141,0.13) 0%, transparent 60%),
    var(--bg-body);
  z-index: 0;
}
.hero > *:not(.hero-bg) { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: var(--lightgraddeepd);
  border: 1px solid rgba(196,141,108,0.4);
  color: var(--logoorange); border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  padding: 6px 14px; margin-bottom: 20px;
  font-family: var(--font-head);
}
.hero-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2rem, 11vw, 3rem);
  line-height: 1.1; color: #fff;
  margin-bottom: 14px;
}
.hero-title .accent {
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: .95rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5;
}
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.hero-tags span {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 100px; font-size: .72rem; padding: 6px 12px;
  color: var(--text-muted); white-space: nowrap;
}

/* ── SLIDER ─────────────────────────────────────────────── */
.slider {
  margin: 28px -20px 0;
  overflow: hidden;
  touch-action: pan-y;
}
.slider-track {
  display: flex; gap: 12px;
  padding: 0 20px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 72vw; max-width: 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  box-shadow: 0 0 0 2px rgba(196,141,108,0.25);
}
.slide img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .3s;
}
.slide-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(27,42,56,0.92));
  padding: 28px 14px 12px;
  font-size: .8rem; font-weight: 700; color: #fff;
}
.slider-dots {
  display: flex; justify-content: center; gap: 6px; padding: 0 0 12px;
}
.slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); transition: background .3s, transform .3s;
  border: none; cursor: pointer; padding: 0;
}
.slider-dot.active { background: var(--logoorange); transform: scale(1.4); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: block; text-align: center;
  background: var(--lightgrad); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: 16px 24px; border-radius: var(--radius-sm);
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(84,131,96,0.35);
  letter-spacing: .02em;
}
.btn-primary:active { transform: scale(0.97); box-shadow: none; }
.btn-secondary {
  display: block; text-align: center;
  background: rgba(255,255,255,0.06); color: var(--text);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  padding: 14px 24px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); letter-spacing: .02em;
  transition: background .2s;
  position: relative; overflow: hidden;
}
.btn-secondary::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--lightgrad);
}
.btn-secondary:active { background: rgba(255,255,255,0.1); }

/* ── SECTIONS ───────────────────────────────────────────── */
.section {
  padding: 56px 20px;
  background: var(--bg-body);
}
.section-dark {
  background: var(--lightgraddeepd);
}
.section-label {
  font-family: var(--font-head); font-size: .65rem;
  font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}
.section-title {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.4rem, 7vw, 2rem); line-height: 1.2;
  color: #fff; margin-bottom: 16px;
}
.section-title::after {
  content: ''; display: block; height: 3px; width: 48px;
  background: var(--lightgrad); border-radius: 2px; margin-top: 10px;
}
.section-text {
  font-size: .93rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px;
}

/* ── ABOUT ──────────────────────────────────────────────── */
.about-img {
  width: 100%; border-radius: var(--radius); margin-bottom: 28px;
  object-fit: cover; max-height: 220px;
  box-shadow: 0 0 0 2px rgba(84,131,96,0.35), var(--shadow-md);
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.stat-card {
  background: var(--lightgraddeepd);
  border-radius: var(--radius);
  padding: 18px 16px; border: 1px solid var(--border);
  text-align: center; position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lightgrad);
}
.stat-num {
  font-family: var(--font-head); font-weight: 900; font-size: 1.6rem;
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-desc { font-size: .75rem; color: var(--text-muted); margin-top: 6px; }

/* ── PROGRAMS ───────────────────────────────────────────── */
.program-card {
  background: var(--lightgraddeepd);
  border-radius: var(--radius-lg);
  padding: 24px 20px; margin-bottom: 16px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--lightgraddark);
}
.program-plus {
  border-color: rgba(196,141,108,0.3);
  background: linear-gradient(160deg, rgba(34,52,38,0.85) 0%, var(--logobluedd) 100%);
}
.program-plus::before { background: var(--lightgrad); height: 4px; }
.prog-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--lightgrad); color: #fff;
  font-family: var(--font-head); font-size: .6rem; font-weight: 900;
  padding: 5px 12px; border-radius: 100px; letter-spacing: .08em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.prog-time {
  font-family: var(--font-head); font-size: .7rem;
  font-weight: 700; margin-bottom: 8px; letter-spacing: .04em;
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.prog-title {
  font-family: var(--font-head); font-size: 1rem;
  color: #fff; font-weight: 900; line-height: 1.3; margin-bottom: 16px;
}
.prog-prices { margin-bottom: 20px; }
.prog-price-main {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.prog-price-note { font-size: .72rem; color: var(--text-muted); margin-top: 4px; }
.prog-price-old { font-size: .72rem; color: var(--text-muted); text-decoration: line-through; margin-top: 2px; }
.prog-discount {
  display: inline-block; margin-top: 8px;
  background: rgba(121,85,65,0.25); border: 1px solid rgba(196,141,108,0.3);
  color: var(--logoorange); border-radius: 100px;
  font-size: .68rem; font-weight: 700; padding: 3px 10px;
}
.prog-features { list-style: none; margin-bottom: 20px; }
.prog-features li {
  font-size: .85rem; color: var(--text-muted); padding: 7px 0;
  border-bottom: 1px solid var(--border); line-height: 1.4;
}
.prog-features li:last-child { border-bottom: none; }
.feat-highlight { color: var(--text) !important; font-weight: 700; }

/* ── SESSIONS ───────────────────────────────────────────── */
.sessions-list { display: flex; flex-direction: column; gap: 12px; }
.session-item {
  background: var(--lightgraddeepd);
  border-radius: var(--radius);
  padding: 16px 18px 16px 22px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  position: relative; overflow: hidden;
}
.session-item::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--lightgrad);
}
.session-dates {
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.session-info { display: flex; align-items: center; justify-content: space-between; }
.session-num { font-size: .85rem; font-weight: 700; }
.session-available {
  font-size: .72rem; font-weight: 700;
  background: rgba(84,131,96,0.18); border: 1px solid rgba(84,131,96,0.35);
  color: var(--logogreen); border-radius: 100px; padding: 3px 10px;
}
.btn-session {
  display: block; text-align: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(196,141,108,0.25);
  color: var(--logoorange); border-radius: var(--radius-sm);
  font-family: var(--font-head); font-size: .72rem; font-weight: 700;
  padding: 12px; letter-spacing: .03em; transition: background .2s;
}
.btn-session:active { background: rgba(196,141,108,0.15); }

/* ── SCHEDULE ───────────────────────────────────────────── */
.schedule-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  margin-bottom: 24px; scrollbar-width: none;
}
.schedule-tabs::-webkit-scrollbar { display: none; }
.sched-tab {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); border-radius: 100px;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  padding: 9px 16px; cursor: pointer; white-space: nowrap; transition: all .2s;
}
.sched-tab.active {
  background: var(--lightgrad); color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(84,131,96,0.35);
}
.schedule-content { display: none; }
.schedule-content.active { display: block; }
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.tl-item:last-child { border-bottom: none; }
.tl-time {
  flex: 0 0 100px; font-family: var(--font-head); font-size: .68rem;
  color: var(--text-muted); font-weight: 700; padding-top: 2px;
}
.tl-act { font-size: .88rem; color: var(--text); line-height: 1.4; }
.tl-highlight .tl-act { color: var(--logogreen); font-weight: 700; }
.tl-highlight .tl-time { color: var(--logogreen); }

/* ── BOOKING ────────────────────────────────────────────── */
.booking-consent { margin-bottom: 24px; }
.consent-label {
  display: flex; gap: 12px; align-items: flex-start; cursor: pointer;
}
.consent-label input[type=checkbox] {
  flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--logoorange);
}
.consent-label span { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.consent-label a { color: var(--logoorange); text-decoration: underline; }
.booking-btns { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.btn-tg {
  display: block; text-align: center;
  background: #2aabee; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  padding: 16px 24px; border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(42,171,238,0.3);
  transition: transform .15s, opacity .15s; letter-spacing: .02em;
}
.btn-tg.disabled { opacity: .4; pointer-events: none; }
.btn-tg:active { transform: scale(0.97); }
.btn-call {
  display: block; text-align: center;
  background: rgba(255,255,255,0.05); color: var(--text);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  padding: 15px 24px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); letter-spacing: .02em;
  position: relative; overflow: hidden;
}
.btn-call::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--lightgraddark);
}
.btn-call:active { background: rgba(255,255,255,0.08); }
.booking-note {
  font-size: .78rem; color: var(--text-muted); text-align: center; padding: 12px 0;
}

/* ── CONTACTS ───────────────────────────────────────────── */
.contacts-grid { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--lightgraddeepd);
  border-radius: var(--radius);
  padding: 18px; border: 1px solid var(--border);
  display: flex; gap: 14px; align-items: flex-start;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--lightgraddark);
}
.contact-icon { font-size: 1.6rem; line-height: 1; flex: 0 0 auto; }
.contact-title {
  font-family: var(--font-head); font-size: .7rem; font-weight: 700; margin-bottom: 4px;
  background: var(--lightgrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.contact-val { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-link { color: var(--logoorange) !important; }
.contact-sub { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--lightgraddeepd);
  padding: 40px 20px;
  padding-bottom: calc(40px + var(--safe-b));
  text-align: center; position: relative;
}
.footer::before {
  content: ''; display: block; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--lightgrad);
}
.footer-logo { height: 36px; width: auto; margin: 0 auto 12px; }
.footer-brand { font-family: var(--font-head); font-size: .8rem; font-weight: 700; margin-bottom: 8px; }
.footer-addr, .footer-phone { font-size: .82rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-phone a { color: var(--logoorange); }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin: 16px 0 12px;
}
.footer-links a { font-size: .75rem; color: var(--text-muted); text-decoration: underline; }
.footer-copy { font-size: .72rem; color: var(--text-muted); opacity: .4; margin-bottom: 4px; }
.footer-dev  { font-size: .7rem; color: var(--text-muted); opacity: .3; }

/* ── STICKY CTA ─────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(27, 42, 56, 0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 12px 16px;
  padding-bottom: calc(12px + var(--safe-b));
  display: flex; gap: 10px; align-items: center;
  position: fixed; /* re-declare to fix stacking */
}
.sticky-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lightgrad);
}
.sticky-tg {
  flex: 1; text-align: center;
  background: #2aabee; color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .75rem;
  padding: 14px 16px; border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(42,171,238,0.3); letter-spacing: .01em;
}
.sticky-tg:active { opacity: .85; }
.sticky-phone {
  flex: 0 0 50px; height: 50px;
  background: var(--lightgraddeepd); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
}

/* ── COOKIE ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 80px; left: 12px; right: 12px; z-index: 990;
  background: var(--lightgraddeepd); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 16px;
  box-shadow: var(--shadow-md);
  transform: translateY(0); transition: transform .4s, opacity .4s;
}
.cookie-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--lightgrad);
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner p { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie-accept {
  flex: 1; background: var(--lightgrad); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  padding: 12px; cursor: pointer;
  box-shadow: 0 2px 10px rgba(84,131,96,0.3);
}
.btn-cookie-reject {
  flex: 1; background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  padding: 12px; cursor: pointer;
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge        { animation: fadeUp .5s ease forwards; }
.hero-title        { animation: fadeUp .6s .1s ease both; }
.hero-sub          { animation: fadeUp .6s .2s ease both; }
.hero-tags         { animation: fadeUp .6s .3s ease both; }
.hero .btn-primary { animation: fadeUp .6s .4s ease both; }

/* ── REVEAL ON SCROLL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }