/* =========================================================
   Calf University 2026 — LP
   Paleta oficial da marca + layout responsivo
   ========================================================= */

:root {
  --navy:        #13325B;
  --navy-2:      #344F72;
  --navy-deep:   #0d2543;
  --gold:        #A27735;
  --gold-soft:   #c79a52;
  --grey:        #E6E6E6;
  --grey-bg:     #f4f5f7;
  --ink:         #1c2733;
  --muted:       #5b6776;
  --white:       #ffffff;
  --alert:       #d32f2f;
  --alert-deep:  #b71c1c;
  --urgency-h:   40px;

  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(19, 50, 91, .10);
  --shadow-lg: 0 24px 60px rgba(19, 50, 91, .18);
  --header-h: 76px;

  --font-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Roboto", "Segoe UI", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + var(--urgency-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--navy); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--grey { background: var(--grey-bg); }
.section--navy { background: var(--navy); color: #dfe6f1; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(34px, 5vw, 60px); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold-soft); }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); font-weight: 800; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.section--navy .section-head p { color: #c3cee0; }

.title-accent { width: 64px; height: 4px; border-radius: 4px; background: var(--gold); margin: 16px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; line-height: 1;
}
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(162, 119, 53, .35); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(162,119,53,.45); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--lg { font-size: 1.12rem; padding: 18px 40px; }

/* ---------- Barra de urgência ---------- */
.urgency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: var(--urgency-h); display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0 16px; text-align: center;
  background: linear-gradient(90deg, var(--alert-deep), var(--alert));
  color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
}
.urgency-bar a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.urgency-bar .pulse { width: 9px; height: 9px; border-radius: 50%; background: #fff; flex: none; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ opacity: 1; transform: scale(1);} 50%{ opacity: .35; transform: scale(.7);} }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: var(--urgency-h) 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(13, 37, 67, .55); backdrop-filter: blur(10px);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: var(--navy); box-shadow: 0 6px 24px rgba(0,0,0,.22); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: #eaf0fa; font-family: var(--font-head); font-weight: 600; font-size: .96rem; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold-soft); transition: width .2s ease; }
.nav a:hover::after { width: 100%; }
.nav .btn { padding: 11px 22px; font-size: .92rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + var(--urgency-h));
  color: #fff;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(162,119,53,.28), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 60%, #081a30 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -6%; bottom: -8%; width: min(46vw, 620px); aspect-ratio: 1;
  background: url("../icones/saude.png") center/contain no-repeat;
  opacity: .06; filter: brightness(0) invert(1); pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 860px; margin-inline: auto; text-align: center; padding-block: 60px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; font-size: .9rem; margin-bottom: 26px;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-soft); }
.hero h1 {
  color: #fff; font-weight: 800; letter-spacing: .01em; text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold-soft); }
.hero__sub { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: #cdd8ea; margin-bottom: 30px; }

/* countdown */
.countdown { display: flex; justify-content: center; gap: clamp(10px, 2vw, 20px); margin: 8px 0 30px; }
.countdown__item {
  min-width: clamp(64px, 16vw, 96px); padding: 16px 10px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(4px);
}
.countdown__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.6rem); color: #fff; line-height: 1; }
.countdown__label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: #b7c3d9; margin-top: 8px; }

.hero__meta { display: flex; justify-content: center; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: #fff; margin-bottom: 18px; }
.hero__meta svg { width: 20px; height: 20px; fill: var(--gold-soft); }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__note { font-size: .9rem; color: #c0cce0; letter-spacing: .03em; }

/* Urgência — badge e nota */
.badge--alert {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px;
  background: rgba(211, 47, 47, .16); border: 1px solid rgba(255, 120, 120, .55);
  color: #ffd9d9; font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 22px;
}
.badge--alert .pulse { width: 9px; height: 9px; border-radius: 50%; background: #ff5a5a; flex: none; animation: pulse 1.4s ease-in-out infinite; }
.note--alert { font-family: var(--font-head); font-weight: 700; color: var(--alert); font-size: .92rem; letter-spacing: .04em; }
.final-cta .note--alert { color: #ff9a9a; }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: .7; animation: bob 1.8s ease-in-out infinite; }
.scroll-cue svg { width: 26px; height: 26px; fill: #fff; }
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ---------- Sobre ---------- */
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about__text h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
.about__text p { color: var(--muted); font-size: 1.08rem; }
.about__highlights { display: grid; gap: 16px; margin-top: 24px; }
.about__highlights li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.about__highlights .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; }
.about__highlights .ck svg { width: 14px; height: 14px; fill: #fff; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__media .frame { position: absolute; inset: 18px -18px -18px 18px; border: 3px solid var(--gold); border-radius: var(--radius); z-index: -1; }

/* ---------- Objetivos ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--grey); border-radius: var(--radius); padding: 34px 28px;
  box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 64px; height: 64px; margin-bottom: 18px; display: grid; place-items: center; background: var(--grey-bg); border-radius: 14px; }
.card__icon img { width: 38px; height: 38px; object-fit: contain; }
.card h3 { font-size: 1.2rem; font-weight: 700; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Palestrantes ---------- */
.speakers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.speaker { text-align: center; }
.speaker__photo {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: 18px;
}
.speaker__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.speaker:hover .speaker__photo img { transform: scale(1.06); }
.speaker__photo::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 45%;
  background: linear-gradient(to top, rgba(13,37,67,.78), transparent);
}
.speaker__flag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--gold); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px; }
.speaker h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 4px; }
.speaker span { color: var(--muted); font-size: .92rem; }

/* ---------- Patrocinadores ---------- */
.sponsors-tier + .sponsors-tier { margin-top: clamp(40px, 6vw, 64px); }
.sponsors-tier h3 { text-align: center; font-size: 1.05rem; letter-spacing: .16em; text-transform: uppercase; color: var(--navy-2); margin-bottom: 26px; font-weight: 700; }
.sponsors-tier h3 .gem { font-style: normal; }
.gem--diamante { color: var(--navy); }   /* azul da marca */
.gem--ouro     { color: var(--gold); }
.gem--prata    { color: #8a93a3; }

/* Grid de cards de logo — caixas com altura decrescente por tier (hierarquia) */
.sponsor-grid { display: grid; gap: 22px; justify-content: center; }
.sponsor-card {
  background: #fff; border: 1px solid var(--grey); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px; transition: transform .2s ease, box-shadow .2s ease;
}
.sponsor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sponsor-card > img { width: auto; object-fit: contain; }
.sponsor-card--dark { background: var(--navy); border-color: var(--navy); }

/* Diamante — maior destaque */
.sponsor-grid--diamante { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; max-width: 1080px; margin-inline: auto; }
.sponsor-grid--diamante .sponsor-card { min-height: 168px; }
.sponsor-grid--diamante .sponsor-card > img { max-height: 104px; max-width: 100%; }

/* Ouro — médio */
.sponsor-grid--ouro { grid-template-columns: repeat(2, minmax(0, 260px)); max-width: 560px; margin-inline: auto; }
.sponsor-grid--ouro .sponsor-card { min-height: 132px; }
.sponsor-grid--ouro .sponsor-card > img { max-height: 78px; max-width: 100%; }

/* Prata — menor */
.sponsor-grid--prata { grid-template-columns: repeat(2, minmax(0, 300px)); max-width: 640px; margin-inline: auto; align-items: start; }
.sponsor-grid--prata .sponsor-card { min-height: 116px; }
.sponsor-grid--prata .sponsor-card > img { max-height: 60px; max-width: 100%; }

/* Cards com produtos (Axiota→Multimin/Lactipro · Huvepharma→Parofor) */
.sponsor-card--axiota, .sponsor-card--has-products { gap: 14px; justify-content: flex-start; }
.sponsor-products { width: 100%; padding-top: 14px; border-top: 1px solid var(--grey); display: flex; flex-direction: column; align-items: center; gap: 9px; }
.sponsor-products .lbl { font-family: var(--font-head); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.sponsor-products .row { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 4vw, 36px); flex-wrap: wrap; }
.sponsor-products .row img { max-height: 40px; width: auto; }
/* No tier diamante o card-com-produto reduz o logo principal p/ caber bem */
.sponsor-grid--diamante .sponsor-card--has-products > img { max-height: 64px; margin-top: 4px; }
.sponsor-grid--diamante .sponsor-card--has-products .row img { max-height: 46px; }

@media (max-width: 980px) {
  .sponsor-grid--diamante { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .sponsor-grid--diamante { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sponsor-grid--diamante .sponsor-card { min-height: 140px; }
  .sponsor-grid--diamante .sponsor-card > img { max-height: 84px; }
  .sponsor-grid--prata { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .sponsor-grid--diamante { grid-template-columns: 1fr; }
  .sponsor-grid--ouro { grid-template-columns: 1fr; max-width: 300px; }
}

/* ---------- 2025 recap (na home) ---------- */
.recap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 44px; }
.recap__item { display: flex; gap: 16px; align-items: flex-start; }
.recap__num { flex: none; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--gold-soft); }
.recap__item h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.recap__item p { color: #c3cee0; font-size: .96rem; margin: 0; }
.recap-cta { text-align: center; }

/* ---------- Organizadores ---------- */
.orgs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 880px; margin-inline: auto; }
.org { display: flex; gap: 22px; align-items: center; background: #fff; border: 1px solid var(--grey); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.org img { flex: none; width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.org h3 { font-size: 1.2rem; margin-bottom: 4px; }
.org span { display: block; color: var(--gold); font-weight: 600; font-size: .9rem; margin-bottom: 8px; }
.org p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Programação CTA band ---------- */
.band { text-align: center; }
.band .btn { margin-top: 8px; }

/* ---------- Local & data ---------- */
.venue { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.venue__info h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
.venue__list { display: grid; gap: 22px; margin-top: 26px; }
.venue__list li { display: flex; gap: 16px; align-items: flex-start; }
.venue__list .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; }
.venue__list .ic svg { width: 22px; height: 22px; fill: var(--gold-soft); }
.venue__list strong { display: block; color: #fff; font-family: var(--font-head); }
.venue__list span { color: #c3cee0; font-size: .96rem; }
.venue__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 0; width: 100%; min-height: 340px; }
.socials { display: flex; gap: 14px; margin-top: 28px; }
.socials a { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: background .2s ease, transform .2s ease; }
.socials a:hover { background: var(--gold); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; fill: #fff; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; background:
  radial-gradient(900px 400px at 50% 0%, rgba(162,119,53,.22), transparent 65%),
  linear-gradient(160deg, var(--navy-2), var(--navy) 70%); color: #fff; }
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; max-width: 760px; margin-inline: auto; }
.final-cta p { color: #cdd8ea; max-width: 580px; margin: 0 auto 30px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #aebccf; padding: 56px 0 30px; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center; }
.site-footer img { height: 70px; width: auto; }
.site-footer .f-links { display: flex; gap: 24px; flex-wrap: wrap; font-family: var(--font-head); font-weight: 600; }
.site-footer .f-links a:hover { color: #fff; }
.site-footer .copy { width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 24px; font-size: .86rem; color: #8a99b3; }

/* ---------- Gallery (2025 page) ---------- */
.subpage-hero {
  padding: calc(var(--header-h) + var(--urgency-h) + 60px) 0 60px; text-align: center; color: #fff;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.subpage-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
.subpage-hero p { color: #c3cee0; max-width: 620px; margin: 0 auto; font-size: 1.06rem; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-soft); font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; }
.back-link svg { width: 16px; height: 16px; fill: currentColor; }
.gallery { columns: 3 280px; column-gap: 18px; }
.gallery img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 18px; box-shadow: var(--shadow); cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease; break-inside: avoid; }
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,18,32,.92); display: none; align-items: center; justify-content: center; padding: 28px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .speakers, .recap { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .venue { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 460px; margin-inline: auto; }
  .orgs { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: calc(var(--header-h) + var(--urgency-h)) 0 auto 0; flex-direction: column; gap: 0;
    background: var(--navy); padding: 10px 0 22px; transform: translateY(-130%); transition: transform .35s ease;
    box-shadow: 0 18px 30px rgba(0,0,0,.3); }
  .nav.is-open { transform: translateY(0); }
  .nav a { width: 100%; text-align: center; padding: 14px 0; }
  .nav a::after { display: none; }
  .nav .btn { margin: 12px auto 0; }
  .nav-toggle { display: block; }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .cards, .speakers, .recap { grid-template-columns: 1fr; }
  .countdown__item { min-width: 0; flex: 1; }
  .org { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue { animation: none; }
}
