/* AWFT 2026 — design system */
:root {
  --ivory: #FAF6EE;
  --paper: #FFFFFF;
  --ink: #0E1A23;
  --ink-soft: #2A3640;
  --mist: #6B7785;
  --line: #E3DCCE;
  --teal: #1A365D;
  --teal-deep: #102A47;
  --saffron: #DE8A3D;
  --saffron-warm: #C26F26;
  --rose: #D86464;
  --shadow-soft: 0 18px 60px -28px rgba(14, 26, 35, 0.28);
  --shadow-card: 0 4px 24px -12px rgba(14, 26, 35, 0.18);
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
button { font: inherit; cursor: pointer; }

/* Typography */
.display, h1, h2, h3, .h-display {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-feature-settings: 'ss01';
  line-height: 1.05;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin: 0 0 0.6em; font-weight: 500; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); margin: 0 0 0.4em; font-weight: 600; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-warm);
  margin-bottom: 1.2rem;
}
.lede { font-size: 1.18rem; line-height: 1.5; color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--mist); }
.serif-italic { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section-tight { padding: clamp(40px, 5vw, 80px) 0; }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 28px -16px rgba(16, 42, 71, 0.7); }
.btn-primary:hover { background: var(--teal-deep); box-shadow: 0 16px 32px -14px rgba(16, 42, 71, 0.8); }
.btn-accent { background: var(--saffron); color: #fff; box-shadow: 0 10px 28px -16px rgba(194, 111, 38, 0.8); }
.btn-accent:hover { background: var(--saffron-warm); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); }
.btn-light:hover { background: rgba(255,255,255,0.22); }
.btn-arrow::after { content: '→'; transition: transform .25s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* NAV */
.nav-shell {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav-shell.scrolled { border-color: var(--line); background: rgba(250, 246, 238, 0.95); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.nav-brand { display: inline-flex; align-items: center; gap: 12px; }
.nav-brand img { height: 86px; width: auto; transition: height .2s ease; }
.nav-shell.scrolled .nav-brand img { height: 67px; }
.nav-brand-text {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--saffron-warm); margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  padding: 10px 14px; border-radius: 10px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--ink); background: rgba(14, 26, 35, 0.04); text-decoration: none; }
.nav-link.has-sub::after { content: '▾'; margin-left: 6px; font-size: 0.7em; opacity: 0.6; }
.nav-sub {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 10px; min-width: 220px;
  box-shadow: var(--shadow-soft);
  display: none; flex-direction: column;
}
.nav-link.has-sub:focus-within .nav-sub,
.nav-item:hover .nav-sub { display: flex; }
.nav-sub a {
  padding: 9px 12px; border-radius: 8px; font-size: 0.92rem; color: var(--ink-soft);
}
.nav-sub a:hover { background: rgba(26,54,93,0.06); color: var(--teal); text-decoration: none; }
.nav-item { position: relative; }
.nav-cta {
  background: var(--ink); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600;
}
.nav-cta:hover { background: var(--teal); text-decoration: none; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-shell.open .nav-links {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-top: 1px solid var(--line);
    padding: 16px var(--gutter) 24px; box-shadow: var(--shadow-soft);
  }
  .nav-shell.open .nav-link { width: 100%; padding: 14px 12px; }
  .nav-shell.open .nav-sub { position: static; box-shadow: none; border: 0; padding: 4px 0 4px 16px; display: flex; }
}

/* HERO */
.hero {
  position: relative;
  min-height: min(720px, 88vh);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(180deg, #0B1F38 0%, #1A365D 50%, #234174 100%);
  color: #fff;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(800px 400px at 80% 10%, rgba(222, 138, 61, 0.28), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(10, 77, 74, 0.7), transparent 60%);
  z-index: -1;
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none; z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-content { padding: 80px 0; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--saffron); box-shadow: 0 0 0 6px rgba(222,138,61,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.2); } }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96; letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 14ch;
}
.hero h1 em { font-style: italic; color: var(--saffron); font-weight: 400; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 32px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-meta-item .label {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6); margin-bottom: 4px;
}
.hero-meta-item .value {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.hero-side {
  position: absolute; right: var(--gutter); bottom: 80px;
  text-align: right; font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
@media (max-width: 800px) { .hero-side { display: none; } }

/* Countdown */
.countdown {
  display: inline-grid; grid-template-columns: repeat(4, auto);
  gap: 18px;
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-m);
}
.countdown-cell {
  text-align: center; min-width: 64px;
}
.countdown-cell .num {
  font-family: 'Fraunces', serif;
  font-size: 2.1rem; font-weight: 500;
  line-height: 1;
}
.countdown-cell .lbl {
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-top: 6px;
}

/* Sections */
.section-header { max-width: 760px; margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header p { color: var(--ink-soft); font-size: 1.05rem; }
.section-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .section-split { grid-template-columns: 1fr; gap: 32px; } }

.section-dark { background: var(--ink); color: rgba(255,255,255,0.92); }
.section-dark .eyebrow { color: var(--saffron); }
.section-dark .lede, .section-dark p { color: rgba(255,255,255,0.78); }
.section-cream { background: var(--paper); }
.section-teal { background: var(--teal); color: #fff; }
.section-teal .eyebrow { color: var(--saffron); }
.section-teal .lede, .section-teal p { color: rgba(255,255,255,0.85); }

/* Cards */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(26,54,93,0.3); }
.card-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.1rem; color: var(--saffron-warm); margin-bottom: 14px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin: 0; }

/* Pillars (impact / theme) */
.pillar {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--saffron);
  transition: width .25s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.pillar:hover::before { width: 100%; opacity: 0.08; }
.pillar h3 { color: var(--teal); margin-bottom: 8px; }
.pillar p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* Marquee */
.marquee {
  overflow: hidden; padding: 24px 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee img { height: 36px; width: auto; opacity: 0.7; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.marquee img:hover { opacity: 1; filter: grayscale(0); }

/* Speakers */
.speaker {
  text-align: center;
}
.speaker-photo {
  position: relative;
  aspect-ratio: 1; width: 100%;
  border-radius: var(--radius-m); overflow: hidden;
  background: linear-gradient(135deg, #E3DCCE, #FAF6EE);
}
.speaker-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.speaker:hover .speaker-photo img { transform: scale(1.04); }
.speaker-name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 1.04rem; margin-top: 14px; line-height: 1.2;
}
.speaker-role { font-size: 0.85rem; color: var(--mist); margin-top: 4px; }

/* Partners */
.partner-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease;
}
.partner-tile img { max-width: 80%; max-height: 60%; object-fit: contain; filter: grayscale(0.4); transition: filter .25s; }
.partner-tile:hover { border-color: var(--teal); transform: translateY(-2px); }
.partner-tile:hover img { filter: grayscale(0); }

/* Program */
.program-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px; align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.program-row:last-child { border-bottom: 1px solid var(--line); }
.program-time {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--teal);
}
.program-title { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 500; }
.program-desc { font-size: 0.95rem; color: var(--ink-soft); margin-top: 6px; }
.program-tag {
  font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(222,138,61,0.12); color: var(--saffron-warm);
}
@media (max-width: 700px) {
  .program-row { grid-template-columns: 1fr; gap: 12px; }
}

/* Pricing */
.pass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .pass-grid { grid-template-columns: 1fr; } }
.pass {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 36px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pass.featured {
  background: var(--ink); color: #fff; border-color: var(--ink);
  transform: translateY(-8px);
}
.pass.featured .pass-price { color: var(--saffron); }
.pass.featured .pass-feature::before { color: var(--saffron); }
.pass:hover { box-shadow: var(--shadow-soft); }
.pass-badge {
  position: absolute; top: 20px; right: 20px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: var(--saffron); color: #fff;
}
.pass-name { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 500; margin-bottom: 8px; }
.pass-tagline { color: var(--mist); margin-bottom: 28px; font-size: 0.94rem; }
.pass.featured .pass-tagline { color: rgba(255,255,255,0.65); }
.pass-price {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem; font-weight: 500; line-height: 1;
  color: var(--teal); margin-bottom: 4px;
}
.pass-price small { font-size: 0.9rem; font-weight: 400; color: var(--mist); margin-left: 8px; }
.pass-features {
  list-style: none; padding: 0; margin: 28px 0;
  display: flex; flex-direction: column; gap: 10px;
  flex-grow: 1;
}
.pass-feature {
  position: relative; padding-left: 28px; font-size: 0.94rem; line-height: 1.4;
}
.pass-feature::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--teal); font-weight: 700;
}
.pass .btn { margin-top: auto; justify-content: center; }

/* Quote */
.quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25; font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.quote-mark {
  font-family: 'Fraunces', serif; font-size: 5rem;
  line-height: 0.6; color: var(--saffron); margin-bottom: -10px; display: block;
}

/* CTA banner */
.cta-banner {
  background: var(--teal); color: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 4vw, 60px);
  border-radius: var(--radius-l);
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, var(--saffron) 0%, transparent 70%);
  opacity: 0.4;
}
.cta-banner h2 { color: #fff; margin: 0; max-width: 18ch; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 26px 40px 26px 0;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 500;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 26px;
  font-size: 1.6rem; color: var(--teal);
  transition: transform .25s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding-bottom: 24px; margin: 0; color: var(--ink-soft); max-width: 70ch; }

/* Footer */
footer.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px 32px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-text {
  font-family: 'Fraunces', serif; color: #fff;
  font-size: 1.5rem; margin: 16px 0 12px;
}
.footer-col h4 {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5); margin: 0 0 18px;
}
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.78); }
.footer-col a:hover { color: var(--saffron); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 28px; color: rgba(255,255,255,0.5); font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  transition: background .2s;
}
.footer-social a:hover { background: var(--saffron); text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }

/* Page hero (non-home pages) */
.page-hero {
  background: var(--ivory);
  padding: clamp(70px, 8vw, 140px) 0 clamp(50px, 6vw, 80px);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(var(--container), 100% - 2 * var(--gutter)); height: 1px;
  background: var(--line);
}
.page-hero h1 { max-width: 18ch; margin-bottom: 16px; }
.page-hero .lede { font-size: 1.25rem; }
.breadcrumb {
  font-size: 0.82rem; color: var(--mist);
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--mist); }
.breadcrumb a:hover { color: var(--teal); }

/* Long-form prose */
.prose { max-width: 70ch; font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft); }
.prose h2, .prose h3 { color: var(--ink); margin-top: 2.4em; }
.prose p { margin: 0 0 1.4em; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  margin: 2em 0; padding: 1em 0 1em 1.6em;
  border-left: 3px solid var(--saffron);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 1.25rem; color: var(--ink);
}
.prose a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* Stats */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500;
  color: var(--teal); line-height: 1;
}
.stat-num em { font-style: italic; color: var(--saffron); }
.stat-lbl { font-size: 0.9rem; color: var(--mist); margin-top: 8px; }

/* Animation utility */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in { opacity: 1; transform: none; }

/* Smooth scroll padding for sticky nav */
html { scroll-padding-top: 90px; }
