/* ---------- Design tokens ---------- */
:root {
  --navy-900: #0B1733;
  --navy-800: #132046;
  --navy-700: #1A2B4A;
  --ink: #0B1733;
  --ink-2: #2C3756;
  --muted: #54607A;
  --line: #E4E7EF;
  --bg: #FAF8F3;
  --bg-alt: #F3EFE4;
  --card: #FFFFFF;
  --gold-500: #E89B1C;
  --gold-400: #F5C542;
  --gold-100: #FCEFC7;
  --cream: #FFF8E7;
  --accent: #E89B1C;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 6px rgba(11, 23, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 23, 51, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 23, 51, 0.18);
  --maxw: 1140px;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw + .5rem, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 2.4vw + .8rem, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p  { margin: 0 0 1em; color: var(--ink-2); }

.container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--navy-900); color: #fff; padding: .5rem .75rem; border-radius: 6px;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 999; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.2rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn-sm { padding: .55rem .9rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  border-color: var(--navy-900); color: var(--navy-900); background: transparent;
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--navy-900); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--navy-900); }
.btn-light { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 243, .85);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0;
}
.brand img { height: 64px; width: auto; }
.site-nav ul { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { font-weight: 500; color: var(--ink-2); }
.site-nav a:hover { color: var(--navy-900); }
.site-nav .btn { color: var(--navy-900); }

.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; }
.nav-toggle span {
  display: block; height: 2px; background: var(--navy-900); margin: 5px auto; width: 22px;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: 1rem; gap: .25rem; }
  .site-nav a { display: block; padding: .75rem .5rem; border-radius: 10px; }
  .site-nav a:hover { background: var(--bg-alt); }
  .site-nav.open { max-height: 400px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(245,197,66,.25), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(11,23,51,.08), transparent 60%),
    var(--bg);
}
.hero::before {
  /* subtle grid reminiscent of a chessboard */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image:
    linear-gradient(var(--navy-900) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-900) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 75%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 1rem;
}
.eyebrow-light { color: var(--gold-400); }

.hero h1 em {
  font-style: italic; font-weight: 600; color: var(--ink-2);
}
.hero h1 .accent {
  color: var(--gold-500);
  background: linear-gradient(120deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 1.1rem; max-width: 52ch; }

.hero-cta {
  display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.4rem 0 2rem;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem;
  padding-top: 1.2rem; border-top: 1px solid var(--line); max-width: 520px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-serif); font-size: 1.8rem; color: var(--navy-900); line-height: 1;
}
.hero-stats span { font-size: .85rem; color: var(--muted); margin-top: .25rem; }

/* Hero visual / 3D king */
.hero-visual {
  position: relative; aspect-ratio: 1 / 1; max-width: 520px;
  justify-self: center; width: 100%;
}
.king-stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  perspective: 1200px;
}
/* Warm radial glow behind the king, ties it to the cream/gold palette */
.king-glow {
  position: absolute; inset: 6%;
  background:
    radial-gradient(closest-side at 50% 55%, rgba(245,197,66,.55), rgba(245,197,66,.15) 40%, transparent 70%),
    radial-gradient(closest-side at 50% 50%, rgba(232,155,28,.35), transparent 72%);
  filter: blur(6px);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.king-3d {
  --king-base-rotate: -35deg;
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  /* Fade the dark edges of the PNG into the page background using a soft radial mask */
  -webkit-mask-image: radial-gradient(closest-side at 50% 52%, #000 62%, rgba(0,0,0,.85) 84%, transparent 96%);
          mask-image: radial-gradient(closest-side at 50% 52%, #000 62%, rgba(0,0,0,.85) 84%, transparent 96%);
  filter:
    drop-shadow(0 30px 40px rgba(11,23,51,.35))
    drop-shadow(0 6px 14px rgba(232,155,28,.25));
  transform: rotate(var(--king-base-rotate));
  animation: kingFloat 7s ease-in-out infinite;
  transform-origin: 50% 50%;
  transition: transform .5s cubic-bezier(.2,.8,.2,1), filter .5s ease;
  will-change: transform;
}
.king-stage:hover .king-3d,
.hero-visual:focus-within .king-3d {
  transform: translateY(-10px) rotate(var(--king-base-rotate)) rotateZ(-2deg) scale(1.04);
  filter:
    drop-shadow(0 40px 50px rgba(11,23,51,.45))
    drop-shadow(0 8px 22px rgba(245,197,66,.5));
}
.king-stage:hover .king-glow { animation-duration: 3s; }

/* Subtle sparkles orbiting the crown */
.king-sparkle {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--gold-400) 55%, transparent 72%);
  opacity: 0; pointer-events: none;
  animation: sparkle 5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(245,197,66,.9));
}
.king-sparkle-1 { top: 18%; left: 28%; animation-delay: 0s; }
.king-sparkle-2 { top: 12%; right: 22%; animation-delay: 1.7s; width: 7px; height: 7px; }
.king-sparkle-3 { top: 34%; right: 14%; animation-delay: 3.2s; width: 5px; height: 5px; }

@keyframes kingFloat {
  0%, 100% { transform: translateY(0)    rotate(var(--king-base-rotate)); }
  50%      { transform: translateY(-12px) rotate(calc(var(--king-base-rotate) - 1.5deg)); }
}
@keyframes glowPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}
@keyframes sparkle {
  0%, 100%      { opacity: 0; transform: scale(.6); }
  40%, 60%      { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .king-3d, .king-glow, .king-sparkle { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background:
    radial-gradient(800px 300px at 10% 0%, rgba(245,197,66,.12), transparent 60%),
    var(--navy-900);
  color: #EDE7D4;
}
.section-dark h2 { color: #fff; }
.section-dark p  { color: #D6D1BE; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-head p { color: var(--muted); }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.check-list { display: grid; gap: .5rem; margin-top: 1rem; }
.check-list li {
  padding-left: 1.8rem; position: relative; color: var(--ink-2);
}
.check-list li::before {
  content: "♞"; position: absolute; left: 0; top: 0; color: var(--gold-500); font-size: 1.15rem;
}

.about-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.badge {
  background: var(--gold-100); color: #8a5a00;
  padding: .35rem .7rem; border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
}
.about-card blockquote {
  margin: 0; font-family: var(--font-serif);
  font-size: 1.25rem; line-height: 1.45; color: var(--navy-900);
}
.about-card cite { display: block; margin-top: 1rem; font-style: normal; color: var(--muted); font-size: .95rem; font-family: var(--font-sans); }

/* Classes */
.classes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (max-width: 820px) { .classes-grid { grid-template-columns: 1fr; } }

.class-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.class-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.class-card header p.class-sub { color: var(--muted); margin: 0; }
.class-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold-100); color: var(--gold-500);
  display: grid; place-items: center; font-size: 1.8rem; margin-bottom: .75rem;
}
.class-card ul { display: grid; gap: .75rem; margin: .5rem 0 1.25rem; }
.class-card li { padding-left: 1.5rem; position: relative; color: var(--ink-2); }
.class-card li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold-400);
}
.class-card.featured {
  background: var(--navy-900); color: #EDE7D4; border-color: var(--navy-900);
  position: relative; overflow: hidden;
}
.class-card.featured::after {
  content: "Popular"; position: absolute; top: 14px; right: -34px;
  background: var(--gold-400); color: var(--navy-900);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem 2.5rem; transform: rotate(35deg);
}
.class-card.featured h3, .class-card.featured header p.class-sub { color: #fff; }
.class-card.featured li { color: #D6D1BE; }
.class-card.featured .class-icon { background: rgba(245,197,66,.15); color: var(--gold-400); }

/* Coach */
.coach-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) { .coach-grid { grid-template-columns: 1fr; } }

.coach-photo {
  margin: 0; position: relative;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  max-width: 420px; justify-self: center; width: 100%;
  border: 6px solid #fff;
}
.coach-photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.coach-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(11,23,51,.85));
  color: #fff; padding: 1.5rem 1rem .9rem; font-weight: 600; text-align: center;
}

.timeline { display: grid; gap: 1rem; margin-top: 1rem; }
.timeline li {
  display: grid; grid-template-columns: 80px 1fr; gap: 1rem; align-items: start;
  padding: 1rem; background: var(--card); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.timeline .year {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800;
  color: var(--gold-500);
}
.timeline em { font-style: normal; color: var(--muted); font-size: .9rem; display: block; margin-top: .15rem; }

/* Appreciation */
.appreciation-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 820px) { .appreciation-grid { grid-template-columns: 1fr; } }

.appreciation-figure {
  position: relative;
  margin: 0; justify-self: end;
  width: 58%;                  /* small by default */
  max-width: 320px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  border: 4px solid rgba(255,255,255,.08);
  background: #fff;
  cursor: zoom-in;
  transform-origin: right center;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              width .45s cubic-bezier(.2,.8,.2,1);
}
.appreciation-figure img {
  width: 100%; height: auto; display: block;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.appreciation-figure:hover,
.appreciation-figure:focus-visible {
  width: 100%;
  max-width: 520px;
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  outline: none;
  cursor: zoom-out;
}
.appreciation-figure:hover img,
.appreciation-figure:focus-visible img {
  transform: scale(1.01);
}

.appreciation-hint {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  background: rgba(11,23,51,.75); color: #fff;
  font-size: .42rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
  opacity: .9; transition: opacity .3s ease;
  pointer-events: none;
}
.appreciation-figure:hover .appreciation-hint,
.appreciation-figure:focus-visible .appreciation-hint { opacity: 0; }

@media (max-width: 820px) {
  .appreciation-figure { width: 80%; justify-self: center; }
  .appreciation-figure:hover,
  .appreciation-figure:focus-visible { width: 100%; transform: scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .appreciation-figure,
  .appreciation-figure img { transition: none; }
}

/* Cinematic banner */
.banner {
  position: relative;
  min-height: clamp(360px, 55vh, 560px);
  display: grid; align-items: center;
  overflow: hidden;
  color: #EDE7D4;
  isolation: isolate;
}
.banner-image {
  position: absolute; inset: 0; z-index: -2;
}
.banner-image img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}
.banner:hover .banner-image img { transform: scale(1.12); }
.banner::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,14,38,.85) 0%, rgba(8,14,38,.55) 45%, rgba(8,14,38,.15) 100%),
    linear-gradient(180deg, rgba(8,14,38,.35), rgba(8,14,38,.55));
}
.banner-copy {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  max-width: 560px;
}
.banner-copy h2 {
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.8rem);
}
.banner-copy p {
  color: #D6D1BE;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 720px) {
  .banner { text-align: center; }
  .banner-copy { margin-inline: auto; }
  .banner::before {
    background:
      linear-gradient(180deg, rgba(8,14,38,.45) 0%, rgba(8,14,38,.8) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-image img { transition: none; transform: scale(1.05); }
  .banner:hover .banner-image img { transform: scale(1.05); }
}

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  margin: 0; background: var(--card); border-radius: var(--radius-lg);
  padding: 1.75rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "“"; position: absolute; top: -10px; left: 16px;
  font-family: var(--font-serif); font-size: 4rem; color: var(--gold-400); line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 1rem; font-size: 1rem; color: var(--ink-2); font-style: italic;
}
.testimonial figcaption strong { display: block; color: var(--navy-900); }
.testimonial figcaption span { color: var(--muted); font-size: .9rem; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: grid; gap: .75rem; }
.faq-list details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  cursor: pointer; font-weight: 600; color: var(--navy-900);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-list summary::after {
  content: "+"; font-size: 1.4rem; color: var(--gold-500); transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details[open] { border-color: var(--gold-400); }
.faq-list p { margin-top: .75rem; color: var(--ink-2); }

/* CTA + Contact */
.section-cta {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(245,197,66,.2), transparent 60%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #EDE7D4;
}
.section-cta h2 { color: #fff; }
.section-cta p  { color: #D6D1BE; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-list { margin-top: 1rem; display: grid; gap: .5rem; color: #D6D1BE; }
.cta-list li { font-size: 1rem; }

.contact-form {
  background: #fff; color: var(--ink);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.contact-form label { display: grid; gap: .35rem; font-size: .88rem; color: var(--ink-2); font-weight: 500; }
.contact-form label.full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit; color: var(--ink);
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--gold-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(232,155,28,.15);
}
.contact-form .btn { grid-column: 1 / -1; }
.form-feedback { grid-column: 1 / -1; margin: 0; font-size: .9rem; color: var(--muted); min-height: 1.2em; }
.form-feedback.success { color: #137a4a; }
.form-feedback.error   { color: #b3261e; }
@media (max-width: 520px) { .contact-form { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: #08122A; color: #C8CEDA; padding: 3rem 0 1.5rem; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-tag { color: #8D96A8; max-width: 36ch; margin-top: .75rem; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.site-footer a { color: #C8CEDA; }
.site-footer a:hover { color: var(--gold-400); }
.site-footer ul { display: grid; gap: .4rem; }
.footer-bottom { padding-top: 1.25rem; text-align: center; color: #6E7890; font-size: .85rem; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
