/*
Theme Name:   YuVe Badminton Academy
Theme URI:    https://www.yuvebadminton.com/
Description:  Lightweight, native custom theme for YuVe Badminton Academy — a faithful WordPress conversion of the static site. Registered menus, translation-ready, escaped output, standard template hierarchy. Standalone; no page builder or parent theme required.
Author:       YuVe
Version:      1.2.0
Requires at least: 6.0
Requires PHP: 7.4
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  yuve
*/

/* ==========================================================
   YuVe Badminton Academy — Premium Static Styles v2
   8px spacing system · CSS variables · No frameworks
   ========================================================== */

:root {
  /* Palette */
  --c-primary: #0B0B0B;
  --c-primary-2: #171717;
  --c-accent: #8A6A14;
  --c-accent-2: #6E5410;
  --c-highlight: #C9A24B;
  --c-highlight-2: #DEC377;
  --c-bg: #FFFFFF;
  --c-bg-light: #F8FAFC;
  --c-bg-tint: #F1F5F9;
  --c-text: #1E1E1E;
  --c-muted: #6B7280;
  --c-muted-2: #94A3B8;
  --c-border: #E2E8F0;
  --c-border-2: #EEF2F7;

  /* Spacing (8px system) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 48px;
  --s-8: 64px;
  --s-10: 80px;
  --s-12: 96px;
  --s-16: 128px;
  --s-20: 160px;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-2xl: 48px;
  --r-pill: 999px;

  /* Premium layered shadows */
  --sh-xs: 0 1px 2px rgba(15,23,42,.05);
  --sh-sm: 0 2px 4px rgba(15,23,42,.04), 0 4px 12px -2px rgba(15,23,42,.06);
  --sh-md: 0 4px 8px -2px rgba(15,23,42,.05), 0 12px 24px -8px rgba(15,23,42,.08);
  --sh-lg: 0 8px 16px -4px rgba(15,23,42,.06), 0 24px 48px -16px rgba(15,23,42,.12);
  --sh-xl: 0 12px 24px -8px rgba(15,23,42,.08), 0 40px 80px -24px rgba(15,23,42,.18);
  --sh-primary: 0 20px 40px -12px rgba(37,99,235,.35);
  --sh-highlight: 0 20px 40px -12px rgba(132,204,22,.4);

  /* Typography */
  --f-heading: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Transitions */
  --t-fast: 200ms cubic-bezier(.4,0,.2,1);
  --t-med: 380ms cubic-bezier(.4,0,.2,1);
  --t-slow: 700ms cubic-bezier(.22,1,.36,1);
  --t-spring: 500ms cubic-bezier(.34,1.56,.64,1);

  /* Layout */
  --nav-h: 88px;
  --container: 1240px;
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { padding: 0; margin: 0; list-style: none; }
::selection { background: var(--c-highlight); color: var(--c-primary); }

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0; text-wrap: pretty; }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--c-primary); color: #fff; padding: 12px 20px;
  z-index: 200; border-radius: 0 0 12px 0;
}
.skip-link:focus { top: 0; }

/* ========== Focus states (keyboard) ========== */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.chip:focus-visible,
.gallery__item:focus-visible,
.faq__item summary:focus-visible {
  border-radius: var(--r-pill);
}
.gallery__item:focus-visible { border-radius: var(--r-md); }
/* On dark surfaces, switch to the lime ring for visibility */
.nav.is-hero:not(.is-scrolled) .nav__menu > a:focus-visible,
.footer a:focus-visible,
.footer button:focus-visible,
.cta a:focus-visible,
.booking-cta a:focus-visible,
.btn--ghost:focus-visible,
.btn--outline-light:focus-visible,
.btn--highlight:focus-visible,
.lightbox__close:focus-visible,
.hero a:focus-visible,
.hero__scroll:focus-visible,
.stats a:focus-visible {
  outline-color: var(--c-highlight);
}

/* ========== Container ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-3);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-5); } }
.container--narrow { max-width: 860px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  padding: 18px 32px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn i { font-size: 0.9em; transition: transform var(--t-fast); }
.btn:hover i { transform: translateX(4px); }
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms cubic-bezier(.22,1,.36,1);
  z-index: -1; pointer-events: none;
}
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-accent); transform: translateY(-2px); box-shadow: var(--sh-primary); }

.btn--highlight { background: var(--c-highlight); color: var(--c-primary); box-shadow: 0 8px 20px -6px rgba(132,204,22,.5); }
.btn--highlight:hover { background: var(--c-highlight-2); transform: translateY(-2px); box-shadow: var(--sh-highlight); }

.btn--ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.btn--ghost:hover { background: #fff; color: var(--c-primary); border-color: #fff; transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--c-primary); border-color: var(--c-border); }
.btn--outline:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--sh-lg); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.38); }
.btn--outline-light:hover { background: #fff; color: var(--c-primary); border-color: #fff; transform: translateY(-2px); }

.btn--sm { padding: 12px 22px; font-size: 0.85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-heading); font-weight: 600; font-size: 0.92rem;
  color: var(--c-accent);
  padding: 6px 0;
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow i { transition: transform var(--t-fast); }
.link-arrow:hover { gap: 14px; color: var(--c-primary); }
.link-arrow:hover i { transform: translateX(3px); }

/* ========== Nav (floating pill) ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: height var(--t-med), padding var(--t-med);
  padding: var(--s-2) 0;
}
.nav.is-scrolled {
  height: 76px;
  padding: 12px 0;
}
.nav__inner {
  width: 100%; max-width: calc(var(--container) + 48px); margin: 0 auto;
  padding: 0 var(--s-3);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  transition: background var(--t-med), backdrop-filter var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.nav.is-scrolled .nav__inner {
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(226,232,240,.7);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px var(--s-3);
  box-shadow: var(--sh-lg);
  max-width: 1180px;
}
@media (min-width: 768px) { .nav__inner { padding: 0 var(--s-5); } }

.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark { display: inline-flex; transition: transform var(--t-med); }
.nav__logo:hover .nav__logo-mark { transform: rotate(-8deg); }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-yu {
  font-family: var(--f-heading); font-weight: 900; font-size: 1.3rem;
  color: var(--c-primary); letter-spacing: -0.025em;
}
.nav__logo-sub {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--c-muted); margin-top: 5px; font-weight: 500;
}
.nav.is-hero:not(.is-scrolled) .nav__logo-yu { color: #fff; }
.nav.is-hero:not(.is-scrolled) .nav__logo-sub { color: rgba(255,255,255,.7); }

.nav__menu { display: flex; align-items: center; gap: var(--s-3); }
.nav__menu > a {
  font-family: var(--f-heading); font-weight: 500; font-size: 0.9rem;
  color: var(--c-text); position: relative; padding: 8px 2px;
  transition: color var(--t-fast);
}
.nav__menu > a.btn { color: #fff; padding: 12px 22px; font-weight: 600; }
.nav__menu > a.btn::after { display: none; }
.nav__menu > a::after {
  content: ""; position: absolute; left: 0; bottom: 4px;
  width: 0; height: 2px; background: var(--c-highlight);
  transition: width var(--t-med);
}
.nav__menu > a:hover { color: var(--c-primary); }
.nav__menu > a:hover::after { width: 100%; }
.nav.is-hero:not(.is-scrolled) .nav__menu > a:not(.btn) { color: rgba(255,255,255,.88); }
.nav.is-hero:not(.is-scrolled) .nav__menu > a:not(.btn):hover { color: #fff; }
.nav__menu > a.is-current:not(.btn) { color: var(--c-primary); }
.nav__menu > a.is-current:not(.btn)::after { width: 100%; }
.nav.is-hero:not(.is-scrolled) .nav__menu > a.is-current:not(.btn) { color: #fff; }

.nav__cta { margin-left: var(--s-1); }

.nav__toggle {
  display: none; background: transparent; border: 0; padding: 10px;
  flex-direction: column; gap: 5px; border-radius: 10px;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--c-primary); border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast), background var(--t-fast);
}
.nav.is-hero:not(.is-scrolled) .nav__toggle span { background: #fff; }
.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: 960px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; top: calc(var(--nav-h) - 4px); left: var(--s-2); right: var(--s-2);
    background: rgba(255,255,255,.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column; align-items: stretch;
    padding: var(--s-3); gap: 4px;
    transform: translateY(-16px) scale(.98); opacity: 0; pointer-events: none;
    transition: opacity var(--t-med), transform var(--t-med);
    box-shadow: var(--sh-xl);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    max-height: calc(100vh - 100px); overflow-y: auto;
  }
  .nav__menu.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav__menu > a {
    padding: 14px 12px; border-radius: 12px; color: var(--c-text) !important; font-size: 1rem;
  }
  .nav__menu > a.btn { color: #fff !important; }
  .nav__menu > a:hover { background: var(--c-bg-light); }
  .nav__menu > a::after { display: none; }
  .nav__cta { align-self: stretch; margin: 12px 0 0; text-align: center; }
}

/* ========== Hero ========== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--s-6)) 0 var(--s-12);
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 22s ease-out forwards;
  filter: contrast(1.05) saturate(1.1);
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 20% 90%, rgba(37,99,235,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(132,204,22,.12), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,.5) 0%, rgba(15,23,42,.72) 55%, rgba(15,23,42,.94) 100%);
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}
.hero__content { position: relative; z-index: 2; max-width: 920px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-heading); font-weight: 500;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.28em;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  padding: 12px 20px; border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-highlight);
  box-shadow: 0 0 0 6px rgba(132,204,22,.2), 0 0 16px var(--c-highlight);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(132,204,22,.18), 0 0 12px var(--c-highlight); }
  50%      { box-shadow: 0 0 0 8px rgba(132,204,22,.08), 0 0 22px var(--c-highlight); }
}

.hero__title {
  font-size: clamp(2.9rem, 7.6vw, 6.2rem);
  color: #fff;
  margin: var(--s-3) 0 var(--s-3);
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-weight: 900;
}
.text-highlight {
  background: linear-gradient(90deg, var(--c-highlight) 0%, var(--c-highlight-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative; display: inline-block;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin-bottom: var(--s-5);
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-6); margin-top: var(--s-8);
  padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.12);
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta strong {
  font-family: var(--f-heading); font-weight: 800; color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
}
.hero__meta strong span { color: var(--c-highlight); font-weight: 700; }
.hero__meta > div > span {
  font-size: 0.78rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: 0.14em; margin-top: 4px;
}

.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 36px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.65); font-family: var(--f-heading); font-size: 0.72rem;
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
}
.hero__scroll-line {
  display: block; width: 1px; height: 46px; background: rgba(255,255,255,.35); position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; top: -46px; left: 0; width: 100%; height: 46px;
  background: var(--c-highlight);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -46px; opacity: .3; }
  50% { opacity: 1; }
  100% { top: 46px; opacity: .3; }
}

@media (max-width: 720px) {
  .hero__meta { gap: var(--s-4); margin-top: var(--s-6); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}

/* ========== Sections ========== */
.section { padding: var(--s-16) 0; position: relative; }
.section--light { background: var(--c-bg-light); }
@media (max-width: 720px) { .section { padding: var(--s-10) 0; } }

.section__head { text-align: center; max-width: 760px; margin: 0 auto var(--s-10); }
.section__head--left { text-align: left; margin-left: 0; max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-heading); font-weight: 600;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--c-accent); margin-bottom: var(--s-2);
  position: relative;
}
.eyebrow::before {
  content: ""; display: inline-block; width: 24px; height: 2px;
  background: currentColor; border-radius: 2px; opacity: .6;
}
.section__head:not(.section__head--left) .eyebrow::before { display: none; }
.eyebrow--sm { font-size: 0.68rem; letter-spacing: 0.22em; margin-bottom: 10px; }
.eyebrow--sm::before { display: none; }
.eyebrow--light { color: var(--c-highlight); }
.section__title { margin-bottom: var(--s-3); }
.section__lead { color: var(--c-muted); font-size: 1.08rem; max-width: 640px; margin: 0 auto; line-height: 1.65; }
.section__head--left .section__lead { margin: 0; }

/* ========== Why grid ========== */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3);
}
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .why-grid { grid-template-columns: 1fr; } }

/* Shared card surface (feature / program / step / event / review) */
.feature, .program, .step, .event, .review {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.feature {
  position: relative;
  padding: var(--s-5) var(--s-3);
  overflow: hidden;
  isolation: isolate;
  display: flex; flex-direction: column;
}
.feature::before {
  content: ""; position: absolute; inset: auto -40% -40% auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(37,99,235,.06), transparent 70%);
  opacity: 0; transition: opacity var(--t-med);
  z-index: -1;
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: transparent; }
.feature:hover::before { opacity: 1; }
.feature__icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37,99,235,.08);
  color: var(--c-accent);
  font-size: 1.5rem; margin-bottom: var(--s-3);
  transition: transform var(--t-spring), background var(--t-med);
  position: relative;
}
.feature__icon::before {
  content: ""; position: absolute; inset: -6px;
  border: 1.5px dashed rgba(37,99,235,.2); border-radius: 24px;
  opacity: 0; transform: rotate(0);
  transition: opacity var(--t-med), transform 8s linear;
}
.feature:hover .feature__icon::before { opacity: 1; transform: rotate(360deg); }
.feature__icon--accent { background: rgba(132,204,22,.14); color: #6ba014; }
.feature__icon--accent::before { border-color: rgba(132,204,22,.28); }
.feature:hover .feature__icon { transform: scale(1.08); }
.feature h3 { margin-bottom: 12px; font-size: 1.32rem; }
.feature p { color: var(--c-muted); font-size: 0.98rem; }

/* ========== Stats ========== */
.stats {
  background: var(--c-primary);
  color: #fff;
  padding: var(--s-10) 0;
  position: relative; overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 340px at 90% 0%, rgba(132,204,22,.18), transparent 60%),
              radial-gradient(500px 260px at 10% 100%, rgba(37,99,235,.32), transparent 60%);
}
.stats::after {
  content: ""; position: absolute; inset: 0; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
.stats__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-3);
  text-align: center;
}
.stat { padding: var(--s-3) var(--s-2); position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 25%; bottom: 25%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.15), transparent);
}
.stat__num {
  font-family: var(--f-heading); font-weight: 900;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1; color: #fff;
  display: inline-flex; align-items: baseline; gap: 2px;
  letter-spacing: -0.03em;
}
.stat__suffix { color: var(--c-highlight); font-weight: 700; }
.stat__label {
  margin-top: 14px; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.26em;
  color: rgba(255,255,255,.6); font-weight: 500;
}
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .stat + .stat::before { display: none; }
}
@media (max-width: 480px) { .stats__grid { grid-template-columns: 1fr 1fr; } }

/* ========== Programs ========== */
.programs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3);
}
.program--wide { grid-column: span 4; }
@media (max-width: 1024px) {
  .programs { grid-template-columns: repeat(2, 1fr); }
  .program--wide { grid-column: span 2; }
}
@media (max-width: 560px)  {
  .programs { grid-template-columns: 1fr; }
  .program--wide { grid-column: span 1; }
}

.program {
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.program:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); border-color: transparent; }
.program__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.program--wide .program__media { aspect-ratio: 16/6; }
.program__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,.55) 100%);
  opacity: 0; transition: opacity var(--t-med);
}
.program:hover .program__media::after { opacity: 1; }
.program__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms cubic-bezier(.22,1,.36,1);
}
.program:hover .program__media img { transform: scale(1.1); }
.program__tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: rgba(15,23,42,.85); color: #fff;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-family: var(--f-heading); font-weight: 600; font-size: 0.68rem;
  padding: 8px 14px; border-radius: var(--r-pill);
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.14);
}
.program__body { padding: var(--s-4) var(--s-3) var(--s-3); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.program__body h3 { font-size: 1.3rem; }
.program__body p { color: var(--c-muted); font-size: 0.95rem; flex: 1; }
.program__body .link-arrow { margin-top: auto; }

/* ========== Booking / Steps (with connector) ========== */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
  margin-bottom: var(--s-8);
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: 88px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-border) 0 8px, transparent 8px 16px);
  z-index: 0;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

.step {
  position: relative; z-index: 1;
  padding: var(--s-4) var(--s-3);
  text-align: left;
}
.step:hover { transform: translateY(-6px); border-color: var(--c-accent); box-shadow: var(--sh-lg); }
.step__num {
  font-family: var(--f-heading); font-weight: 900;
  font-size: 3.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-border);
  position: absolute; top: 16px; right: 24px;
  line-height: 1;
  transition: -webkit-text-stroke-color var(--t-med), color var(--t-med);
}
.step:hover .step__num { -webkit-text-stroke-color: transparent; color: rgba(37,99,235,.08); }
.step__icon {
  width: 64px; height: 64px; border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-primary); color: #fff;
  font-size: 1.4rem; margin-bottom: var(--s-3);
  box-shadow: 0 8px 20px -6px rgba(15,23,42,.35);
  transition: transform var(--t-spring);
}
.step:hover .step__icon { transform: rotate(-6deg) scale(1.06); }
.step h3 { margin-bottom: 10px; font-size: 1.32rem; }
.step p { color: var(--c-muted); font-size: 0.98rem; }

.booking-cta {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-6) var(--s-6);
  background: var(--c-primary); color: #fff;
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  box-shadow: var(--sh-xl);
}
.booking-cta::before {
  content: ""; position: absolute; right: -100px; top: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132,204,22,.32), transparent 70%);
}
.booking-cta::after {
  content: ""; position: absolute; left: -80px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.4), transparent 70%);
}
.booking-cta > * { position: relative; z-index: 1; }
.booking-cta h3 { color: #fff; margin-bottom: 8px; font-size: 1.8rem; }
.booking-cta p { color: rgba(255,255,255,.78); max-width: 420px; }
.booking-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 720px) {
  .booking-cta { flex-direction: column; align-items: flex-start; text-align: left; padding: var(--s-4); }
  .booking-cta__actions { width: 100%; }
  .booking-cta__actions .btn { flex: 1; }
}

/* ========== Facilities ========== */
.facilities {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2);
}
@media (max-width: 900px) { .facilities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .facilities { grid-template-columns: 1fr; } }
.facility {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  position: relative;
}
.facility::after {
  content: "→";
  position: absolute; right: 22px; opacity: 0; transform: translateX(-8px);
  color: var(--c-accent); font-family: var(--f-heading); font-weight: 700;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.facility:hover { transform: translateY(-4px); border-color: var(--c-accent); box-shadow: var(--sh-md); }
.facility:hover::after { opacity: 1; transform: translateX(0); }
.facility i {
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(37,99,235,.04));
  color: var(--c-accent);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform var(--t-spring);
}
.facility:hover i { transform: rotate(-6deg) scale(1.08); }
.facility span {
  font-family: var(--f-heading); font-weight: 600; color: var(--c-primary);
  font-size: 0.98rem;
}

/* ========== Story / Timeline ========== */
.story { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--s-10); align-items: start; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: var(--s-6); } }

.story__portraits {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2);
  position: sticky; top: 110px;
}
.story__portraits figure { margin: 0; }
.story__portraits figure:nth-child(2) { transform: translateY(36px); }
.story__portraits img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  transition: transform var(--t-med), box-shadow var(--t-med);
  filter: contrast(1.03) saturate(1.05);
}
.story__portraits figure:hover img { transform: translateY(-6px) scale(1.02); box-shadow: var(--sh-xl); }
.story__portraits figcaption {
  margin-top: 14px;
  display: flex; flex-direction: column;
}
.story__portraits figcaption strong { font-family: var(--f-heading); font-weight: 700; color: var(--c-primary); font-size: 1.05rem; }
.story__portraits figcaption span { font-size: 0.72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.2em; margin-top: 4px; font-weight: 500; }
@media (max-width: 900px) { .story__portraits { position: relative; top: 0; max-width: 480px; } }

.timeline {
  position: relative; padding-left: 40px;
}
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-border) 40%, var(--c-border) 60%, var(--c-highlight) 100%);
  border-radius: 2px;
}
.timeline__item {
  position: relative; padding: 0 0 var(--s-5) var(--s-3);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: -40px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--c-accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,.08);
  transition: transform var(--t-spring), box-shadow var(--t-med);
}
.timeline__item.is-visible .timeline__dot { animation: dotPop 600ms cubic-bezier(.34,1.56,.64,1); }
@keyframes dotPop { 0% { transform: scale(.3); } 100% { transform: scale(1); } }
.timeline__dot--active {
  background: var(--c-highlight); border-color: var(--c-primary);
  box-shadow: 0 0 0 6px rgba(132,204,22,.22), 0 0 20px rgba(132,204,22,.5);
}
.timeline__year {
  display: inline-block; font-family: var(--f-heading); font-weight: 700;
  color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.76rem; margin-bottom: 10px;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(37,99,235,.08);
}
.timeline__item:last-child .timeline__year { color: #4c7f16; background: rgba(132,204,22,.14); }
.timeline__title { font-size: 1.3rem; margin-bottom: 8px; }
.timeline__item p { color: var(--c-muted); line-height: 1.7; }

.story__tag {
  margin-top: var(--s-4);
  font-family: var(--f-heading); font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--c-primary); letter-spacing: -0.025em;
  line-height: 1.15;
}

/* ========== Gallery ========== */
.gallery__filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: var(--s-6);
}
.chip {
  border: 1px solid var(--c-border); background: #fff;
  padding: 11px 24px; border-radius: var(--r-pill);
  font-family: var(--f-heading); font-weight: 600; font-size: 0.84rem; color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.chip:hover { border-color: var(--c-primary); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.chip:active { transform: translateY(0) scale(.98); }
.chip.is-active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); box-shadow: var(--sh-md); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s-2);
}
.gallery__item {
  margin: 0; overflow: hidden; border-radius: var(--r-md); position: relative;
  grid-row: span 1;
  cursor: zoom-in;
  transition: transform var(--t-med), box-shadow var(--t-med), opacity var(--t-med);
}
.gallery__item::after {
  content: "\f00e"; /* fa-search-plus */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  background: rgba(15,23,42,.35);
  opacity: 0; transition: opacity var(--t-med);
}
.gallery__item:hover { box-shadow: var(--sh-lg); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(.22,1,.36,1); }
.gallery__item:hover img { transform: scale(1.12); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item.is-hidden { display: none; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,23,42,.94);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: var(--s-4);
  opacity: 0; transition: opacity var(--t-med);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--r-md); box-shadow: var(--sh-xl); animation: lbIn 400ms cubic-bezier(.22,1,.36,1); }
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lightbox__close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,.24); transform: scale(1.06); }

/* ========== Events ========== */
.events {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
}
@media (max-width: 900px) { .events { grid-template-columns: 1fr; } }
.event {
  display: flex; gap: var(--s-3);
  padding: var(--s-3) var(--s-3) var(--s-4);
}
.event:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: transparent; }
.event__date {
  flex-shrink: 0;
  width: 84px; height: 94px;
  background: var(--c-primary); color: #fff;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--f-heading);
  box-shadow: var(--sh-md);
  position: relative; overflow: hidden;
}
.event__date::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-highlight));
}
.event__date span { font-size: 2rem; font-weight: 900; line-height: 1; letter-spacing: -0.02em; margin-top: 4px; }
.event__date small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--c-highlight); margin-top: 8px; font-weight: 600; }
.event__body h3 { margin: 6px 0 8px; font-size: 1.22rem; }
.event__body p { color: var(--c-muted); font-size: 0.94rem; margin-bottom: 12px; }

/* ========== Reviews ========== */
.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3);
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.review {
  padding: var(--s-4);
  position: relative;
}
.review::before {
  content: "\201C"; /* left double quote */
  position: absolute; top: 12px; right: 24px;
  font-family: Georgia, serif; font-size: 5.5rem;
  color: var(--c-bg-tint); line-height: 1;
  pointer-events: none;
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: transparent; }
.review__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; position: relative; z-index: 1; }
.review__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  box-shadow: var(--sh-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.review__head strong { display: block; font-family: var(--f-heading); font-weight: 700; color: var(--c-primary); }
.review__head span { font-size: 0.8rem; color: var(--c-muted); }
.review__brand { margin-left: auto; color: #4285F4; font-size: 1.4rem; }
.review__stars { color: #FBBC05; margin-bottom: 14px; letter-spacing: 2px; font-size: 0.9rem; position: relative; z-index: 1; }
.review p { color: var(--c-text); line-height: 1.7; position: relative; z-index: 1; font-size: 0.96rem; }

/* ========== FAQ ========== */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 22px 26px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.faq__item:hover { border-color: var(--c-muted-2); }
.faq__item[open] { border-color: var(--c-accent); box-shadow: var(--sh-md); background: #fff; }
.faq__item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--f-heading); font-weight: 600; color: var(--c-primary);
  font-size: 1.04rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 1.6rem; color: var(--c-accent);
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; background: rgba(37,99,235,.08);
  display: inline-flex; align-items: center; justify-content: center; line-height: 1;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.faq__item[open] summary::after {
  content: "−"; background: var(--c-accent); color: #fff;
  transform: rotate(180deg);
}
.faq__item p { color: var(--c-muted); margin-top: 14px; line-height: 1.7; }
.faq__item[open] p { animation: faqSlide 350ms cubic-bezier(.22,1,.36,1); }
@keyframes faqSlide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ========== Final CTA ========== */
.cta { padding: var(--s-12) 0; }
.cta__card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 50% -20%, rgba(37,99,235,.28), transparent 60%),
    var(--c-primary);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: var(--s-12) var(--s-6);
  text-align: center;
  box-shadow: var(--sh-xl);
}
.cta__card::before, .cta__card::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta__card::before {
  top: -140px; right: -100px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(132,204,22,.3), transparent 70%);
}
.cta__card::after {
  bottom: -160px; left: -120px; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(37,99,235,.5), transparent 70%);
}
.cta__grain {
  position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}
.cta__title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 14px 0 16px;
  position: relative;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.cta__sub { color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto var(--s-5); position: relative; font-size: 1.08rem; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; position: relative; }

/* ========== Footer ========== */
.footer {
  background: var(--c-primary); color: rgba(255,255,255,.78);
  padding: var(--s-12) 0 var(--s-3);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132,204,22,.35), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: var(--s-6);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo { display: flex; align-items: center; gap: 14px; margin-bottom: var(--s-2); }
.footer__logo strong { display: block; font-family: var(--f-heading); font-weight: 900; color: #fff; font-size: 1.3rem; letter-spacing: -0.02em; }
.footer__logo small { display: block; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-top: 3px; }
.footer__brand p { margin: 0 0 var(--s-3); max-width: 340px; font-size: 0.95rem; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.footer__social a:hover { background: var(--c-highlight); color: var(--c-primary); border-color: var(--c-highlight); transform: translateY(-3px) rotate(-4deg); }

.footer__col h4 { color: #fff; margin-bottom: 20px; font-family: var(--f-heading); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.24em; }
.footer__col ul li { padding: 6px 0; }
.footer__col ul li a { color: rgba(255,255,255,.68); transition: color var(--t-fast), padding var(--t-fast); font-size: 0.94rem; display: inline-block; }
.footer__col ul li a::before { content: "→ "; opacity: 0; margin-right: 0; transition: opacity var(--t-fast), margin var(--t-fast); }
.footer__col ul li a:hover { color: var(--c-highlight); }
.footer__col ul li a:hover::before { opacity: 1; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; line-height: 1.6; font-size: 0.94rem; }
.footer__contact i { color: var(--c-highlight); margin-top: 5px; font-size: 0.9rem; }
.footer__contact a { color: rgba(255,255,255,.85); }
.footer__contact a:hover { color: var(--c-highlight); }

.map-placeholder {
  border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(255,255,255,.1);
  height: 200px;
  box-shadow: var(--sh-md);
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.5) contrast(1.05) brightness(.95); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-top: var(--s-4);
  font-size: 0.85rem;
  color: rgba(255,255,255,.62);
}
.footer__mini { color: rgba(255,255,255,.55); }
@media (max-width: 560px) { .footer__bottom { flex-direction: column; text-align: center; } }

/* ========== Reveal animations (JS-gated for no-JS resilience) ========== */
.reveal { transition: opacity 800ms cubic-bezier(.22,1,.36,1), transform 800ms cubic-bezier(.22,1,.36,1); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ========== Custom logo (Appearance → Customize → Site Identity) ========== */
.custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.nav .custom-logo-link img { height: 44px; width: auto; }
.footer .custom-logo-link img { height: 68px; width: auto; }
