/* ==========================================================================
   DISNEY ACADEMY PRESCHOOL — style.css
   Storybook design system: royal purple, gold and royal blue.
   Arch-topped cards, ribbon headings, crest motifs, deep purple chrome.
   --------------------------------------------------------------------------
   01 Tokens · 02 Reset · 03 Type · 04 Layout · 05 Buttons · 06 Ambience
   07 Preloader · 08 Header/Nav · 09 Floating UI · 10 Hero · 11 Section heads
   12 Cards · 13 Stats · 14 Storyline · 15 Gallery · 16 Forms · 17 Shop
   18 Accordion · 19 Contact · 20 Footer · 21 Utilities
   ========================================================================== */

/* ==========================================================================
   01. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Core brand — taken from the school crest */
  --purple-900: #2E0F63;
  --purple-800: #3B1580;
  --purple-700: #4C1D95;
  --purple-600: #5B21B6;
  --purple-400: #8B5CF6;
  --purple-200: #DDD2FB;
  --purple-100: #EFE9FE;
  --purple-050: #F7F4FF;

  --gold-600: #E8A400;
  --gold-500: #FFB800;
  --gold-400: #FFC93C;
  --gold-200: #FFE9A8;
  --gold-100: #FFF6DC;

  --blue-700: #1546C0;
  --blue-600: #1D5BE0;
  --blue-400: #4A9BF5;
  --blue-200: #C5DFFB;
  --blue-100: #E4F0FE;

  /* Supporting accents from the booklet icon set */
  --green: #35B54A;
  --coral: #F0562D;
  --rose: #E8368F;
  --teal: #00A9A5;

  /* Ink */
  --ink-900: #1B1035;
  --ink-700: #3B2E5E;
  --ink-500: #6A5D8A;
  --ink-300: #9C92B4;
  --line: #E9E3F8;

  /* Surfaces */
  --bg: #FFFFFF;
  --surface: var(--purple-050);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-line: rgba(255, 255, 255, 0.85);

  /* Gradients */
  --grad-royal: linear-gradient(135deg, var(--purple-700), var(--blue-600));
  --grad-gold: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  --grad-magic: linear-gradient(120deg, var(--purple-700) 0%, var(--blue-600) 45%, var(--purple-400) 100%);
  --grad-sky: linear-gradient(180deg, #EFE9FE 0%, #E4F0FE 55%, #FFFFFF 100%);
  --grad-dusk: linear-gradient(165deg, var(--purple-900), var(--purple-700) 55%, var(--blue-700));

  /* Radii — arches, not pills. This is the signature shape of the site. */
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-arch: 140px 140px 28px 28px;
  --r-arch-sm: 90px 90px 20px 20px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 2px 10px rgba(46, 15, 99, 0.06);
  --sh-sm: 0 10px 26px rgba(46, 15, 99, 0.09);
  --sh-md: 0 20px 46px rgba(46, 15, 99, 0.13);
  --sh-lg: 0 36px 80px rgba(46, 15, 99, 0.18);
  --sh-gold: 0 10px 26px rgba(255, 184, 0, 0.42);
  --sh-purple: 0 12px 30px rgba(76, 29, 149, 0.35);

  /* Type — deliberately different from the sister school */
  --font-head: "Baloo 2", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Quicksand", "Segoe UI", system-ui, sans-serif;

  --fs-hero: clamp(2.5rem, 5.6vw, 4.6rem);
  --fs-h1: clamp(2.1rem, 4.2vw, 3.4rem);
  --fs-h2: clamp(1.8rem, 3.2vw, 2.7rem);
  --fs-h3: clamp(1.2rem, 1.9vw, 1.5rem);
  --fs-lead: clamp(1.02rem, 1.3vw, 1.2rem);

  /* Spacing */
  --sp-1: .5rem; --sp-2: 1rem; --sp-3: 1.5rem; --sp-4: 2.25rem;
  --sp-5: 3.25rem; --sp-6: 4.75rem; --sp-7: 6.5rem;

  --container: 1220px;
  --nav-h: 92px;

  --ease: cubic-bezier(.22,1,.36,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

::selection { background: var(--gold-400); color: var(--purple-900); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 6px; }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--purple-050); }
::-webkit-scrollbar-thumb {
  background: var(--grad-royal);
  border-radius: 99px;
  border: 3px solid var(--purple-050);
}

/* ==========================================================================
   03. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--purple-900);
  line-height: 1.14;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: var(--fs-lead); color: var(--ink-500); line-height: 1.78; }
.gold { color: var(--gold-500); }

/* Gold-underscored word, used inside headings */
.swoop {
  position: relative;
  display: inline-block;
  color: var(--blue-600);
}
.swoop::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: .04em;
  height: .34em;
  background: var(--gold-400);
  border-radius: 99px;
  opacity: .45;
  z-index: -1;
}

/* Kicker — a small gold ribbon tab instead of a pill badge */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-800);
  background: var(--gold-200);
  padding: .4rem 1rem .4rem .85rem;
  border-radius: 4px 99px 99px 4px;
  border-left: 4px solid var(--gold-500);
  margin-bottom: 1rem;
}
.kicker i { color: var(--gold-600); }
.on-dark .kicker { background: rgba(255,255,255,.14); color: #fff; border-left-color: var(--gold-400); }
.on-dark .kicker i { color: var(--gold-400); }

.link-gold { font-weight: 700; color: var(--blue-600); border-bottom: 2px solid var(--gold-400); transition: color .3s ease; }
.link-gold:hover { color: var(--purple-700); }

/* ==========================================================================
   04. LAYOUT
   ========================================================================== */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 880px); margin-inline: auto; }

.section { padding: var(--sp-7) 0; position: relative; }
.section--sm { padding: var(--sp-5) 0; }

/* Alternating band backgrounds give the page a rhythm the sister site doesn't have */
.band-lilac { background: var(--purple-050); }
.band-sky { background: linear-gradient(180deg, #fff, var(--blue-100) 60%, #fff); }
.band-dusk {
  background: var(--grad-dusk);
  color: #F2ECFF;
  position: relative;
  overflow: hidden;
}
.band-dusk h1, .band-dusk h2, .band-dusk h3 { color: #fff; }
.band-dusk .lead { color: #E6DBFF; }
.band-dusk p, .band-dusk li, .band-dusk span { color: #F2ECFF; }
.band-dusk .note, .band-dusk .note span { color: #D9CCF7; }

/* Curved top/bottom edges — the "storybook page" silhouette */
.curve-top { border-radius: 60px 60px 0 0; }
.curve-bottom { border-radius: 0 0 60px 60px; }

.grid { display: grid; gap: var(--sp-3); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.wrap { flex-wrap: wrap; }
.center { display: flex; align-items: center; justify-content: center; }
.between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.tc { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.25rem; } .mt-5 { margin-top: 3.25rem; }
.mx-auto { margin-inline: auto; }

/* ==========================================================================
   05. BUTTONS
   ========================================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .95rem 1.9rem;
  border-radius: var(--r-pill);
  background: var(--grad-royal);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-purple);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
  opacity: 0; transition: opacity .4s var(--ease); z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(76,29,149,.42); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(-1px); }

/* Gold is the primary "do this now" action across the site */
.btn--gold { background: var(--grad-gold); color: var(--purple-900); box-shadow: var(--sh-gold); }
.btn--gold::before { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); }
.btn--gold:hover { box-shadow: 0 16px 34px rgba(255,184,0,.5); }

.btn--outline {
  background: transparent;
  color: var(--purple-800);
  border: 2px solid var(--purple-200);
  box-shadow: none;
}
.btn--outline::before { background: var(--purple-100); }
.btn--outline:hover { color: var(--purple-900); border-color: var(--purple-400); box-shadow: var(--sh-sm); }

.on-dark .btn--outline { color: #fff; border-color: rgba(255,255,255,.45); }
.on-dark .btn--outline::before { background: rgba(255,255,255,.16); }

.btn--white { background: #fff; color: var(--purple-800); box-shadow: var(--sh-sm); }
.btn--white::before { background: var(--gold-100); }

.btn--sm { padding: .6rem 1.25rem; font-size: .88rem; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.06rem; }
.btn--block { width: 100%; }

.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.5);
  transform: scale(0);
  animation: ripple-out .65s var(--ease) forwards;
  pointer-events: none; z-index: 1;
}

/* ==========================================================================
   06. AMBIENCE — starfield canvas + soft glows
   ========================================================================== */
#starfield { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
main, header, footer { position: relative; z-index: 1; }

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.glow--purple { background: var(--purple-400); }
.glow--blue { background: var(--blue-400); }
.glow--gold { background: var(--gold-400); }

/* Decorative crest watermark used on dark bands */
.watermark {
  position: absolute;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
  filter: grayscale(1) brightness(3);
}

/* ==========================================================================
   07. PRELOADER
   ========================================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--grad-dusk);
  transition: opacity .6s var(--ease), visibility .6s;
}
#preloader.is-done { opacity: 0; visibility: hidden; }
.pl-inner { text-align: center; color: #fff; }
.pl-stars { display: flex; gap: 12px; justify-content: center; margin-bottom: 1.1rem; }
.pl-stars i { font-size: 1.4rem; color: var(--gold-400); animation: star-pop 1.1s infinite var(--ease); }
.pl-stars i:nth-child(2) { animation-delay: .15s; }
.pl-stars i:nth-child(3) { animation-delay: .3s; }
.pl-inner p {
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; font-size: .76rem;
  color: #E7DFFC;
}

/* ==========================================================================
   08. HEADER & NAVIGATION
   ========================================================================== */
.topline {
  background: var(--purple-900);
  color: #EDE6FF;
  font-size: .8rem;
  font-weight: 600;
}
.topline .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; flex-wrap: wrap; }
.topline a { display: inline-flex; align-items: center; gap: .4rem; }
.topline a:hover { color: var(--gold-400); }
.topline .tl-tag { display: inline-flex; align-items: center; gap: .5rem; }
.topline .tl-tag i { color: var(--gold-400); }

.site-header { position: sticky; top: 0; z-index: 900; transition: transform .45s var(--ease); }
.site-header.is-hidden { transform: translateY(-100%); }

.nav {
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 3px solid transparent;
  border-image: var(--grad-gold) 1;
  transition: box-shadow .4s var(--ease), background .4s var(--ease);
}
.nav.is-scrolled { background: rgba(255,255,255,.96); box-shadow: var(--sh-sm); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--nav-h); }

/* Wide banner logo — a different lockup from the sister school's square mark */
.brand { display: inline-flex; align-items: center; }
.brand img { height: 58px; width: auto; transition: transform .4s var(--spring); }
.brand:hover img { transform: scale(1.04); }

.nav-list { display: flex; align-items: center; gap: .1rem; }
.nav-list a {
  position: relative;
  display: block;
  padding: .55rem .8rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink-700);
  border-radius: var(--r-xs);
  transition: color .3s ease, background .3s ease;
}
.nav-list a::after {
  content: "";
  position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 3px; border-radius: 3px;
  background: var(--gold-500);
  transform: translateX(-50%);
  transition: width .35s var(--ease);
}
.nav-list a:hover { color: var(--purple-800); background: var(--purple-050); }
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { width: 22px; }
.nav-list a[aria-current="page"] { color: var(--purple-800); }

.nav-actions { display: flex; align-items: center; gap: .7rem; }

.burger {
  display: none;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--purple-050);
  border: 2px solid var(--purple-200);
  position: relative;
}
.burger span {
  position: absolute; left: 12px;
  width: 20px; height: 2.6px; border-radius: 3px;
  background: var(--purple-800);
  transition: transform .42s var(--spring), opacity .25s ease, width .3s ease;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; width: 14px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 20px; }

/* Mobile drawer slides in from the right (sister site drops from the top) */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  z-index: 950;
  background: var(--grad-dusk);
  color: #fff;
  padding: 1.5rem 1.35rem 2rem;
  transform: translateX(105%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
  visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.drawer-head img { height: 44px; width: auto; }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; }
.drawer ul { display: grid; gap: .25rem; }
.drawer ul a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 1.12rem; font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.06);
  opacity: 0; transform: translateX(18px);
}
.drawer.is-open ul a { animation: drawer-in .45s var(--ease) forwards; }
.drawer.is-open li:nth-child(1) a { animation-delay: .05s; }
.drawer.is-open li:nth-child(2) a { animation-delay: .09s; }
.drawer.is-open li:nth-child(3) a { animation-delay: .13s; }
.drawer.is-open li:nth-child(4) a { animation-delay: .17s; }
.drawer.is-open li:nth-child(5) a { animation-delay: .21s; }
.drawer.is-open li:nth-child(6) a { animation-delay: .25s; }
.drawer.is-open li:nth-child(7) a { animation-delay: .29s; }
.drawer.is-open li:nth-child(8) a { animation-delay: .33s; }
.drawer ul a i { color: var(--gold-400); font-size: .9rem; }
.drawer-cta { display: grid; gap: .6rem; margin-top: 1.4rem; }
.drawer-contact { margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: .55rem; font-size: .9rem; }
.drawer-contact a, .drawer-contact span { display: flex; gap: .6rem; align-items: flex-start; color: #EDE6FF; }
.drawer-contact i { color: var(--gold-400); width: 16px; margin-top: .28em; }

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(27,16,53,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   09. FLOATING UI
   ========================================================================== */
.floaters { position: fixed; right: 20px; bottom: 22px; z-index: 880; display: grid; gap: 12px; justify-items: end; }
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.32rem; color: #fff;
  box-shadow: var(--sh-md);
  transition: transform .4s var(--spring);
}
.fab:hover { transform: translateY(-4px) scale(1.06); }
.fab--wa { background: linear-gradient(140deg, #4ee07a, #25d366); position: relative; }
.fab--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.6);
  animation: ring-pulse 2.4s ease-out infinite;
}
.fab--top {
  background: #fff; color: var(--purple-800);
  border: 2px solid var(--purple-200);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .4s var(--ease);
}
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-tip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--purple-900); color: #fff;
  font-size: .78rem; font-weight: 700;
  padding: .45rem .8rem; border-radius: var(--r-xs);
  opacity: 0; transform: translateX(8px);
  transition: all .35s var(--ease); pointer-events: none;
}
.fab--wa:hover .wa-tip { opacity: 1; transform: translateX(0); }

.progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; background: var(--grad-gold); z-index: 960; transition: width .1s linear; }

/* ==========================================================================
   10. HERO — centred crest, full-width dusk panel
   ========================================================================== */
.hero {
  position: relative;
  background: var(--grad-dusk);
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  overflow: hidden;
  border-radius: 0 0 clamp(40px, 6vw, 80px) clamp(40px, 6vw, 80px);
}
.hero h1, .hero h2 { color: #fff; }
.hero .lead { color: #E9E0FF; }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-crest { width: clamp(200px, 26vw, 320px); margin: 0 auto 1.6rem; }
.hero-crest img { width: 100%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.hero h1 { font-size: var(--fs-hero); max-width: 16ch; margin-inline: auto; }
.hero .swoop { color: var(--gold-400); }
.hero .swoop::after { background: rgba(255,255,255,.22); }
.hero .lead { max-width: 58ch; margin-inline: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: var(--sp-3); }

/* Ribbon of quick facts sitting on the hero's lower edge */
.hero-ribbon {
  position: relative; z-index: 2;
  margin-top: var(--sp-5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
}
.hero-ribbon div { padding: 1.25rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,.14); }
.hero-ribbon div:last-child { border-right: 0; }
.hero-ribbon i { color: var(--gold-400); font-size: 1.15rem; margin-bottom: .35rem; display: block; }
.hero-ribbon strong { display: block; font-family: var(--font-head); font-size: 1.02rem; color: #fff; }
.hero-ribbon small { color: #DCCFFA; font-size: .8rem; }

/* Inner page banner */
.page-banner {
  position: relative;
  background: var(--grad-dusk);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
  border-radius: 0 0 clamp(36px, 5vw, 64px) clamp(36px, 5vw, 64px);
  text-align: center;
}
.page-banner h1 { color: #fff; max-width: 20ch; margin-inline: auto; }
.page-banner .lead { color: #E9E0FF; max-width: 62ch; margin-inline: auto; }
.page-banner > .container { position: relative; z-index: 2; }
.crumbs {
  display: flex; justify-content: center; gap: .5rem;
  font-size: .82rem; font-weight: 700;
  color: #CFC0F2;
  margin-top: var(--sp-3);
}
.crumbs a:hover { color: var(--gold-400); }
.crumbs span[aria-current] { color: #fff; }

/* ==========================================================================
   11. SECTION HEADINGS — centred with a gold rule beneath
   ========================================================================== */
.sec-head { max-width: 760px; margin: 0 auto var(--sp-5); text-align: center; }
.sec-head.left { margin-inline: 0; text-align: left; }
.sec-head h2 { margin-bottom: .4em; }
.sec-head::after {
  content: "";
  display: block;
  width: 74px; height: 4px;
  margin: 1.1rem auto 0;
  border-radius: 99px;
  background: var(--grad-gold);
}
.sec-head.left::after { margin-inline: 0; }

/* ==========================================================================
   12. CARDS
   ========================================================================== */
/* -- Arch card: the signature component -- */
.arch {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-arch);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
  height: 100%;
  overflow: hidden;
}
.arch::before {
  content: "";
  position: absolute; inset: 0 0 auto;
  height: 160px;
  background: var(--purple-050);
  border-radius: var(--r-arch);
  z-index: 0;
  transition: background .45s var(--ease);
}
.arch > * { position: relative; z-index: 1; }
.arch:hover { transform: translateY(-10px); box-shadow: var(--sh-md); border-color: var(--purple-200); }
.arch:hover::before { background: var(--gold-100); }
.arch h3 { margin-bottom: .35em; }
.arch p { font-size: .95rem; color: var(--ink-500); margin: 0; }

.arch-icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--sp-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: var(--sh-sm);
  transition: transform .5s var(--spring);
}
.arch:hover .arch-icon { transform: translateY(-4px) scale(1.08); }
.ic-purple { background: linear-gradient(140deg, var(--purple-400), var(--purple-700)); }
.ic-blue   { background: linear-gradient(140deg, var(--blue-400), var(--blue-700)); }
.ic-gold   { background: var(--grad-gold); color: var(--purple-900); }
.ic-green  { background: linear-gradient(140deg, #5CD46F, var(--green)); }
.ic-coral  { background: linear-gradient(140deg, #FF8A63, var(--coral)); }
.ic-rose   { background: linear-gradient(140deg, #F573AC, var(--rose)); }
.ic-teal   { background: linear-gradient(140deg, #4FD1CE, var(--teal)); }

/* -- Feature panel: big alternating left/right blocks -- */
.panel { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.panel--flip .panel__media { order: 2; }
.panel__media {
  position: relative;
  border-radius: var(--r-arch);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background: var(--purple-100);
  box-shadow: var(--sh-md);
}
.panel__media img { width: 100%; height: 100%; object-fit: cover; }
.panel__media::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--r-arch);
  border: 10px solid rgba(255,255,255,.5);
  pointer-events: none;
}
.panel__num {
  position: absolute;
  right: -18px; bottom: 18px;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--purple-900);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  box-shadow: var(--sh-gold);
  z-index: 2;
}

/* -- Programme card: horizontal, with a coloured spine -- */
.prog {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  height: 100%;
}
.prog:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.prog__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--purple-100); }

/* Animated SVG illustrations are shown whole, never cropped */
.prog__media--art { aspect-ratio: 4 / 3; background: var(--purple-900); }
.prog__media--art img { object-fit: contain; }
.prog:hover .prog__media--art img { transform: none; }
.panel__media--art { aspect-ratio: 4 / 3; background: var(--purple-900); }
.panel__media--art img { object-fit: contain; }
.prog__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.prog:hover .prog__media img { transform: scale(1.06); }
.prog__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad-gold);
  color: var(--purple-900);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  padding: .35rem .9rem;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: .4rem;
}
.prog__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.prog__hours {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--blue-100); color: var(--blue-700);
  border-radius: var(--r-pill);
  padding: .4rem .95rem;
  font-size: .84rem; font-weight: 800;
}
.prog__foot { margin-top: auto; padding-top: .4rem; }

.ticks { display: grid; gap: .55rem; }
.ticks li { display: flex; gap: .65rem; font-size: .93rem; color: var(--ink-500); line-height: 1.55; }
.ticks li i { color: var(--gold-500); margin-top: .3em; flex: none; }
.on-dark .ticks li, .band-dusk .ticks li { color: #F2ECFF; }

/* -- Tag chips -- */
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .76rem; font-weight: 800;
  letter-spacing: .03em; text-transform: uppercase;
  padding: .32rem .8rem;
  border-radius: var(--r-pill);
  background: var(--purple-100); color: var(--purple-700);
}
.chip--gold { background: var(--gold-200); color: #8A6200; }
.chip--blue { background: var(--blue-100); color: var(--blue-700); }
.chip--green { background: #DFF6E3; color: #1C7A2C; }

/* -- Quote card -- */
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold-500);
  border-radius: var(--r-md);
  padding: var(--sp-3);
  box-shadow: var(--sh-xs);
  height: 100%;
  display: flex; flex-direction: column; gap: .9rem;
}
.quote .stars { color: var(--gold-500); letter-spacing: 2px; }
.quote blockquote { margin: 0; font-size: 1rem; color: var(--ink-700); line-height: 1.75; }
.quote figcaption { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.q-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-royal); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; flex: none;
}
.quote figcaption strong { display: block; font-size: .92rem; color: var(--purple-900); }
.quote figcaption small { color: var(--ink-300); font-size: .8rem; }

/* -- Info card (contact) -- */
.info {
  display: flex; gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem;
  transition: transform .45s var(--ease), box-shadow .45s ease;
}
.info:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.info__icon { width: 52px; height: 52px; border-radius: var(--r-sm); display: grid; place-items: center; font-size: 1.1rem; color: #fff; flex: none; }
.info h3 { font-size: 1rem; margin-bottom: .25em; }
.info p, .info a { font-size: .93rem; color: var(--ink-500); margin: 0; }
.info a:hover { color: var(--blue-600); }

/* -- Call to action band -- */
.cta-band {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 4rem);
  background: var(--grad-magic);
  color: #fff;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--sh-lg);
}
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p, .cta-band .lead { color: #F3EDFF; max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: var(--sp-3); }

/* ==========================================================================
   13. STATS
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.stat {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-2);
  box-shadow: var(--sh-xs);
}
.stat__n {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--purple-700);
}
.stat__l { display: block; margin-top: .5rem; font-size: .85rem; font-weight: 700; color: var(--ink-500); }

/* ==========================================================================
   14. STORYLINE — the daily rhythm, drawn as a path
   ========================================================================== */
.storyline { position: relative; display: grid; gap: 1rem; }
.story-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
}
.story-step:hover { transform: translateX(8px); box-shadow: var(--sh-sm); border-color: var(--purple-200); }
.story-time {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--grad-royal);
  border-radius: var(--r-sm);
  padding: .5rem .25rem;
  text-align: center;
}
.story-step:nth-child(even) .story-time { background: var(--grad-gold); color: var(--purple-900); }
.story-step strong { display: block; font-family: var(--font-head); color: var(--purple-900); font-size: 1.04rem; }
.story-step p { margin: 0; font-size: .92rem; }

/* Milestones */
.milestones { display: grid; gap: var(--sp-3); }
.milestone {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem 1.4rem 4.5rem;
  box-shadow: var(--sh-xs);
}
.milestone::before {
  content: attr(data-year);
  position: absolute;
  left: 1.1rem; top: 1.35rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad-royal);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: .82rem;
}
.milestone:nth-child(even)::before { background: var(--grad-gold); color: var(--purple-900); }
.milestone h3 { font-size: 1.1rem; margin-bottom: .3em; }
.milestone p { margin: 0; font-size: .94rem; color: var(--ink-500); }

/* ==========================================================================
   15. GALLERY
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: var(--sp-4); }
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600; font-size: .88rem;
  padding: .55rem 1.15rem;
  border-radius: var(--r-pill);
  background: #fff;
  border: 2px solid var(--purple-200);
  color: var(--ink-500);
  transition: all .35s var(--ease);
}
.filter-btn:hover { color: var(--purple-800); border-color: var(--purple-400); transform: translateY(-2px); }
.filter-btn.is-active { background: var(--grad-royal); color: #fff; border-color: transparent; box-shadow: var(--sh-purple); }

.mosaic { columns: 3; column-gap: 1.1rem; }
.tile {
  break-inside: avoid;
  margin-bottom: 1.1rem;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--sh-xs);
  background: var(--purple-100);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tile img {
  width: 100%; display: block;
  aspect-ratio: var(--ar, 4/5);
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tile:hover img { transform: scale(1.06); }
.tile__cap {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(27,16,53,.82));
  opacity: 0; transition: opacity .45s var(--ease);
  display: flex; align-items: flex-end; padding: 1.1rem; color: #fff;
}
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { opacity: 1; }
.tile__cap strong { font-family: var(--font-head); font-size: 1rem; display: block; }
.tile__cap small { opacity: .85; font-size: .78rem; }
.tile__zoom {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold-400); color: var(--purple-900);
  display: grid; place-items: center;
  opacity: 0; transform: scale(.7);
  transition: all .4s var(--spring);
}
.tile:hover .tile__zoom { opacity: 1; transform: scale(1); }
.tile.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(27,16,53,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: grid; place-items: center;
  padding: 4rem 1.25rem;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 960px; width: 100%; text-align: center; transform: scale(.94); transition: transform .5s var(--spring); }
.lightbox.is-open figure { transform: scale(1); }
.lightbox img { border-radius: var(--r-md); max-height: 74vh; width: auto; margin-inline: auto; box-shadow: var(--sh-lg); }
.lightbox figcaption { color: #fff; margin-top: 1rem; font-weight: 700; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: grid; place-items: center;
  transition: background .3s ease, transform .3s var(--spring);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold-500); color: var(--purple-900); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ==========================================================================
   16. FORMS
   ========================================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid transparent;
  border-image: var(--grad-gold) 1;
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  box-shadow: var(--sh-md);
}
.f-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 800; color: var(--purple-800); display: flex; align-items: center; gap: .35rem; }
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1.05rem;
  border-radius: var(--r-sm);
  border: 2px solid var(--line);
  background: var(--purple-050);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.field textarea { resize: vertical; min-height: 128px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236A5D8A' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.05rem center; padding-right: 2.6rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-400); background: #fff;
  box-shadow: 0 0 0 4px rgba(139,92,246,.18);
}
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--coral); box-shadow: 0 0 0 4px rgba(240,86,45,.14);
}
.field .err { font-size: .78rem; font-weight: 700; color: var(--coral); display: none; align-items: center; gap: .35rem; }
.field.has-error .err { display: flex; }

.note { font-size: .84rem; color: var(--ink-300); display: flex; gap: .5rem; align-items: flex-start; }
.note i { margin-top: .25em; color: var(--purple-400); }

.form-status { display: none; align-items: flex-start; gap: .75rem; padding: 1rem 1.15rem; border-radius: var(--r-sm); font-size: .92rem; font-weight: 700; margin-top: 1.1rem; }
.form-status.is-visible { display: flex; animation: pop-in .5s var(--spring); }
.form-status--ok { background: #DFF6E3; color: #16702A; }
.form-status--err { background: #FFE6DE; color: #B03A16; }

.success-overlay {
  position: fixed; inset: 0; z-index: 1010;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: grid; place-items: center; padding: 2rem;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.success-overlay.is-open { opacity: 1; visibility: visible; }
.success-inner { text-align: center; max-width: 460px; }
.success-tick { width: 128px; height: 128px; margin: 0 auto 1.25rem; }
.success-tick circle { fill: none; stroke: var(--green); stroke-width: 4; stroke-dasharray: 314; stroke-dashoffset: 314; }
.success-tick path { fill: none; stroke: var(--green); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 70; stroke-dashoffset: 70; }
.success-overlay.is-open .success-tick circle { animation: draw-circle .75s var(--ease) forwards; }
.success-overlay.is-open .success-tick path { animation: draw-tick .5s var(--ease) .55s forwards; }

.toasts { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1020; display: grid; gap: .6rem; width: min(92vw, 380px); }
.toast {
  display: flex; align-items: center; gap: .7rem;
  background: var(--purple-900); color: #fff;
  padding: .85rem 1.1rem; border-radius: var(--r-sm);
  font-size: .9rem; font-weight: 700;
  box-shadow: var(--sh-lg);
  animation: toast-in .45s var(--spring);
}
.toast.is-out { animation: toast-out .35s var(--ease) forwards; }
.toast i { color: var(--gold-400); }

/* ==========================================================================
   17. SHOP
   ========================================================================== */
.shop-bar { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.search { position: relative; flex: 1 1 260px; max-width: 380px; }
.search i { position: absolute; left: 1.05rem; top: 50%; transform: translateY(-50%); color: var(--ink-300); pointer-events: none; }
.search input {
  width: 100%; padding: .82rem 1rem .82rem 2.7rem;
  border-radius: var(--r-pill); border: 2px solid var(--line);
  background: #fff; font-family: var(--font-body); font-weight: 500;
}
.search input:focus { outline: none; border-color: var(--purple-400); box-shadow: 0 0 0 4px rgba(139,92,246,.16); }

.product {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xs);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  height: 100%;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.product.is-hidden { display: none; }
.product__media { position: relative; aspect-ratio: 3 / 4; background: var(--purple-050); overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--grad-gold); color: var(--purple-900);
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: var(--r-pill);
}
.product__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.product__body h3 { font-size: 1.06rem; margin: 0; }
.product__body p { font-size: .9rem; color: var(--ink-500); margin: 0; }
.product__foot { margin-top: auto; }

/* Product slideshow */
.pslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.pslide.is-active { opacity: 1; visibility: visible; }
.pslide img { width: 100%; height: 100%; object-fit: cover; }
.pslide-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 .6rem; pointer-events: none; z-index: 3; }
.pslide-nav button {
  pointer-events: auto;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--purple-800);
  box-shadow: var(--sh-sm);
  opacity: 0; transform: scale(.85);
  transition: all .35s var(--spring);
}
.product:hover .pslide-nav button, .product:focus-within .pslide-nav button { opacity: 1; transform: scale(1); }
.pslide-nav button:hover { background: var(--gold-400); }
.pslide-dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 6px; z-index: 3; }
.pslide-dot { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,.7); box-shadow: 0 1px 4px rgba(27,16,53,.35); transition: all .35s var(--ease); }
.pslide-dot.is-active { width: 26px; background: var(--gold-400); }
.pslide-count {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: rgba(27,16,53,.65); color: #fff;
  font-size: .7rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: var(--r-pill);
}
@media (hover: none) { .pslide-nav button { opacity: 1; transform: scale(1); } }

/* ==========================================================================
   18. ACCORDION
   ========================================================================== */
.faq { display: grid; gap: .7rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .4s ease, border-color .4s ease; }
.faq-item.is-open { box-shadow: var(--sh-sm); border-color: var(--purple-200); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  color: var(--purple-900);
}
.faq-q i { color: var(--gold-500); transition: transform .45s var(--spring); flex: none; }
.faq-item.is-open .faq-q i { transform: rotate(135deg); color: var(--purple-600); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 1.3rem 1.25rem; margin: 0; font-size: .94rem; color: var(--ink-500); }

/* ==========================================================================
   19. CONTACT & MAP
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--sp-4); align-items: start; }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 6px solid #fff; }
.map-frame iframe { width: 100%; min-height: 420px; border: 0; display: block; }

.hours { display: grid; gap: .55rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.site-footer .hours li { border-bottom-color: rgba(255,255,255,.16); color: #EDE6FF; }
.site-footer .hours strong { color: var(--gold-400); }
.hours li:last-child { border-bottom: 0; }
.hours strong { color: var(--purple-900); font-weight: 800; }

/* ==========================================================================
   20. FOOTER — deep purple, gold rules
   ========================================================================== */
.newsletter {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--grad-gold);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: var(--sp-3); align-items: center;
}
.newsletter h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: .3em; color: var(--purple-900); }
.newsletter p { margin: 0; color: #6B4E00; font-size: .95rem; font-weight: 600; }
.nl-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.nl-form input {
  flex: 1 1 240px; min-width: 0;
  padding: .95rem 1.25rem;
  border-radius: var(--r-pill);
  border: 2px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.9);
  font-family: var(--font-body); font-weight: 500;
}
.nl-form input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.55); }

.site-footer {
  margin-top: var(--sp-6);
  background: var(--grad-dusk);
  color: #EDE6FF;
  border-radius: clamp(40px, 6vw, 70px) clamp(40px, 6vw, 70px) 0 0;
  padding-top: var(--sp-6);
  position: relative;
  overflow: hidden;
}
.site-footer h3 { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1.1rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: var(--sp-4); padding-bottom: var(--sp-5); position: relative; z-index: 1; }
.foot-about img { height: 56px; width: auto; margin-bottom: 1rem; }
.foot-about p { font-size: .93rem; color: #E2D8FA; max-width: 34ch; }
.site-footer ul { display: grid; gap: .6rem; }
.site-footer ul a { font-size: .94rem; color: #E7DFFC; transition: color .3s ease, transform .3s ease; display: inline-block; }
.site-footer ul a:hover { color: var(--gold-400); transform: translateX(4px); }
.foot-contact li { display: flex; gap: .7rem; font-size: .92rem; align-items: flex-start; }
.foot-contact i { color: var(--gold-400); margin-top: .3em; width: 16px; flex: none; }
.socials { display: flex; gap: .55rem; margin-top: 1.2rem; }
.socials a {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  transition: all .4s var(--spring);
}
.socials a:hover { background: var(--grad-gold); color: var(--purple-900); transform: translateY(-4px); border-color: transparent; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  font-size: .85rem; color: #D6CAF5;
  position: relative; z-index: 1;
}
.foot-bottom a:hover { color: var(--gold-400); }

/* ==========================================================================
   21. UTILITIES
   ========================================================================== */
.skip {
  position: absolute; left: 1rem; top: -60px; z-index: 1100;
  background: var(--purple-900); color: #fff;
  padding: .7rem 1.2rem; border-radius: var(--r-xs);
  font-weight: 700; transition: top .3s var(--ease);
}
.skip:focus { top: 1rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   22. INLINE SVG ICONS
   Self-hosted sprite replaces Font Awesome — no third-party CSS, no webfont,
   no render-blocking request. Icons inherit colour and font-size.
   ========================================================================== */
.ic {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  flex: none;
  color: inherit;
  overflow: visible;
}
.ic--spin { animation: spin 0.9s linear infinite; transform-origin: center; }

/* ==========================================================================
   23. SCROLL-SNAP CAROUSEL
   Replaces Swiper (~48 KB). Native scrolling means it is butter-smooth on a
   phone because the browser handles it off the main thread.
   ========================================================================== */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(88%, 380px);
  gap: var(--sp-3);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1px;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; height: auto; }

.rail-nav { display: flex; justify-content: center; align-items: center; gap: .6rem; margin-top: var(--sp-2); }
.rail-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--purple-200);
  color: var(--purple-800);
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--spring), background .3s ease, opacity .3s ease;
}
.rail-btn:hover { transform: scale(1.08); background: var(--gold-400); border-color: transparent; }
.rail-btn[disabled] { opacity: .35; pointer-events: none; }
.rail-dots { display: flex; gap: 6px; }
.rail-dot {
  width: 9px; height: 9px; border-radius: 99px;
  background: var(--purple-200);
  transition: all .35s var(--ease);
}
.rail-dot.is-active { width: 26px; background: var(--gold-500); }

@media (min-width: 900px) {
  .rail { grid-auto-columns: calc((100% - var(--sp-3) * 2) / 3); }
}

/* ==========================================================================
   24. SCROLL REVEALS
   Replaces GSAP ScrollTrigger (~48 KB) with an IntersectionObserver toggling
   one class. Critically: if JS fails entirely, `.no-js`-style safety means
   content is visible by default — text can never be trapped at opacity 0.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal [data-rv] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    transition-delay: var(--rv-delay, 0ms);
  }
  .js-reveal [data-rv="left"]  { transform: translateX(-38px); }
  .js-reveal [data-rv="right"] { transform: translateX(38px); }
  .js-reveal [data-rv="pop"]   { transform: scale(.94); }
  .js-reveal [data-rv].is-in {
    opacity: 1;
    transform: none;
  }
}
