/* ==========================================================================
   Anand Vidya Niketan — Stylesheet
   Design language: "The Lamp & The Page"
   Navy (book) + Vermilion (diya bowl) + Marigold (diya flame) on warm paper
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,450;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&family=Hind:wght@400;500;600;700&display=swap');

:root{
  /* Colors */
  --navy: #0e1a3a;
  --navy-deep: #080f26;
  --navy-soft: #1b2c5c;
  --flame: #e8a33d;
  --flame-bright: #f6c469;
  --diya: #b4392c;
  --diya-deep: #8c2a20;
  --leaf: #3c6b45;
  --paper: #faf6ee;
  --paper-2: #f3ecdc;
  --ink: #191a22;
  --ink-soft: #4a4d5c;
  --line: rgba(14,26,58,0.12);
  --white: #ffffff;

  --shadow-sm: 0 2px 10px rgba(14,26,58,0.08);
  --shadow-md: 0 12px 32px rgba(14,26,58,0.14);
  --shadow-lg: 0 24px 60px rgba(14,26,58,0.22);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .7s;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:'Manrope', 'Hind', sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

.container{
  width:100%;
  max-width:1220px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:'Space Mono', monospace;
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--diya);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-weight:700;
}
.eyebrow::before{
  content:'';
  width:26px; height:2px;
  background:var(--flame);
  display:inline-block;
}

h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  color:var(--navy);
  margin:0;
  line-height:1.08;
  font-weight:600;
}

.section-head{ max-width:680px; margin-bottom:48px; }
.section-head h2{ font-size:clamp(1.8rem, 4vw, 2.8rem); }
.section-head p{ color:var(--ink-soft); font-size:1.05rem; margin-top:14px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head.center .eyebrow::before{ display:none; }
.section-head.on-dark h2{ color:var(--white); }
.section-head.on-dark p{ color:rgba(255,255,255,.68); }
.section-head.on-dark .eyebrow{ color:var(--flame-bright); }
.section-head.on-dark .eyebrow::before{ background:var(--flame-bright); }

section{ position:relative; padding:110px 0; }
@media (max-width:768px){ section{ padding:72px 0; } }

/* ---------- Lamp divider (signature element) ---------- */
.lamp-divider{
  display:flex; align-items:center; justify-content:center;
  gap:18px;
  padding:36px 0;
}
.lamp-divider .rule{ height:1px; width:70px; background:linear-gradient(90deg, transparent, var(--line)); }
.lamp-divider .rule.right{ background:linear-gradient(270deg, transparent, var(--line)); }
.lamp-svg{ width:34px; height:40px; }
.lamp-flame{ transform-origin:50% 100%; animation: flicker 2.6s ease-in-out infinite; }
@keyframes flicker{
  0%,100%{ transform:scaleY(1) scaleX(1) rotate(0deg); opacity:1; }
  25%{ transform:scaleY(1.08) scaleX(.95) rotate(-2deg); opacity:.92; }
  50%{ transform:scaleY(.94) scaleX(1.05) rotate(1deg); opacity:1; }
  75%{ transform:scaleY(1.05) scaleX(.97) rotate(-1deg); opacity:.95; }
}

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.14s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.23s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.32s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.41s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.5s; }

/* directional variants for extra scroll-effect variety */
.reveal-left{ opacity:0; transform:translateX(-50px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-left.in{ opacity:1; transform:translateX(0); }
.reveal-right{ opacity:0; transform:translateX(50px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-right.in{ opacity:1; transform:translateX(0); }
.reveal-scale{ opacity:0; transform:scale(.88); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-scale.in{ opacity:1; transform:scale(1); }
.reveal-rotate{ opacity:0; transform:rotate(-4deg) translateY(30px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-rotate.in{ opacity:1; transform:rotate(0) translateY(0); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px;
  border-radius:100px;
  font-weight:700;
  font-size:.94rem;
  border:1.5px solid transparent;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--diya); color:var(--white); box-shadow:0 10px 26px rgba(180,57,44,.32); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(180,57,44,.42); background:var(--diya-deep); }
.btn-gold{ background:var(--flame); color:var(--navy-deep); box-shadow:0 10px 26px rgba(232,163,61,.34); }
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 16px 34px rgba(232,163,61,.46); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.5); color:var(--white); }
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:var(--white); transform:translateY(-3px); }
.btn-outline-dark{ background:transparent; border-color:var(--line); color:var(--navy); }
.btn-outline-dark:hover{ background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn-sm{ padding:11px 22px; font-size:.82rem; }
.btn svg{ width:17px; height:17px; }

/* ==================== HEADER ==================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1002;
  padding:16px 0;
  transition:background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.site-header.scrolled{
  background:rgba(14,26,58,.92);
  backdrop-filter:blur(14px);
  padding:10px 0;
  box-shadow:0 6px 24px rgba(0,0,0,.18);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:52px; height:52px; border-radius:50%; object-fit:cover; box-shadow:0 4px 14px rgba(0,0,0,.25); transition:width .4s ease, height .4s ease;}
.site-header.scrolled .brand img{ width:44px; height:44px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text .name{ font-family:'Fraunces', serif; font-weight:700; font-size:1.18rem; color:var(--white); letter-spacing:.01em; }
.brand-text .tag{ font-family:'Space Mono', monospace; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--flame-bright); margin-top:2px; }

.main-nav{ display:flex; align-items:center; gap:32px; }
.main-nav a{
  color:rgba(255,255,255,.86); font-weight:600; font-size:.92rem;
  position:relative; padding:6px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--flame);
  transition:width .35s var(--ease);
}
.main-nav a:hover{ color:var(--white); }
.main-nav a:hover::after{ width:100%; }
.header-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none; width:44px; height:44px; border-radius:50%; border:1.5px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.08); align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background:var(--white); border-radius:2px; transition:transform .35s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:960px){
  .main-nav{
    position:fixed; top:0; right:0; height:100dvh; width:min(80vw,320px); max-width:320px;
    background:var(--navy-deep); flex-direction:column; justify-content:flex-start; align-items:flex-start;
    padding:110px 34px 40px; gap:22px; transform:translateX(100%); transition:transform .5s var(--ease);
    box-shadow:-20px 0 50px rgba(0,0,0,.3); overflow-y:auto; box-sizing:border-box; z-index:1001;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav a{ font-size:1.1rem; width:100%; }
  .header-cta .btn-sm.hide-mobile{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-close{ display:flex; }
}
@media (min-width:961px){ .nav-toggle{ display:none; } .nav-close{ display:none; } }
.nav-close{
  position:absolute; top:22px; right:22px; width:42px; height:42px; border-radius:50%;
  border:1.5px solid rgba(255,255,255,.3); background:rgba(255,255,255,.06); color:#fff;
  align-items:center; justify-content:center; transition:all .3s ease;
}
.nav-close:hover{ background:var(--flame); border-color:var(--flame); color:var(--navy-deep); transform:rotate(90deg); }
.nav-close svg{ width:18px; height:18px; }
.nav-scrim{
  position:fixed; inset:0; z-index:999; background:rgba(8,15,38,.5); backdrop-filter:blur(2px);
  opacity:0; visibility:hidden; transition:opacity .4s ease, visibility .4s ease;
}
.nav-scrim.show{ opacity:1; visibility:visible; }

/* ==================== HERO ==================== */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:flex-end;
  overflow:hidden; padding-top:120px;
}
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transform:scale(1.12); transition:opacity 1.6s var(--ease), transform 8s linear;
}
.hero-slide.active{ opacity:1; transform:scale(1); z-index:1; }
.hero::before{
  content:''; position:absolute; inset:0; z-index:2;
  background:linear-gradient(180deg, rgba(8,15,38,.55) 0%, rgba(8,15,38,.35) 35%, rgba(8,15,38,.88) 100%);
}
.hero::after{
  content:''; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:radial-gradient(ellipse at 20% 10%, rgba(232,163,61,.18), transparent 55%);
}
.hero-content{ position:relative; z-index:3; width:100%; padding-bottom:90px; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Space Mono', monospace; font-size:.76rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--flame-bright); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  padding:8px 18px; border-radius:100px; margin-bottom:26px; backdrop-filter:blur(6px);
}
.hero h1{
  color:var(--white); font-size:clamp(2.4rem, 6vw, 4.6rem); font-weight:600; max-width:820px;
  letter-spacing:-.01em;
}
.hero h1 em{ font-style:italic; color:var(--flame-bright); font-weight:500; }
.hero-motto{
  font-family:'Hind', serif; color:rgba(255,255,255,.92); font-size:clamp(1.1rem,2vw,1.35rem);
  margin-top:22px; max-width:640px; font-weight:500; border-left:3px solid var(--flame); padding-left:18px;
}
.hero-motto span{ display:block; font-family:'Manrope',sans-serif; font-size:.85rem; color:rgba(255,255,255,.62); margin-top:6px; font-weight:400;}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:40px; }

.hero-stats{
  position:relative; z-index:3; margin-top:60px; display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,.18); padding-top:28px;
}
.hero-stats .stat{ text-align:left; }
.hero-stats .num{ font-family:'Fraunces',serif; font-size:clamp(1.6rem,3vw,2.4rem); color:var(--white); font-weight:700; display:flex; align-items:baseline; gap:2px;}
.hero-stats .num .suf{ font-size:.55em; color:var(--flame-bright); }
.hero-stats .lbl{ font-family:'Space Mono',monospace; font-size:.68rem; letter-spacing:.08em; color:rgba(255,255,255,.6); text-transform:uppercase; margin-top:4px;}

@media (max-width:768px){
  .hero-stats{ grid-template-columns:repeat(2,1fr); gap:22px; }
}

.hero-scroll{
  position:absolute; bottom:26px; right:26px; z-index:4; display:flex; flex-direction:column; align-items:center; gap:8px;
}
.hero-scroll .line{ width:1px; height:46px; background:rgba(255,255,255,.4); position:relative; overflow:hidden; }
.hero-scroll .line::after{ content:''; position:absolute; top:-100%; left:0; width:100%; height:100%; background:var(--flame); animation:scrolldown 1.8s ease-in-out infinite; }
@keyframes scrolldown{ 0%{top:-100%;} 60%{top:100%;} 100%{top:100%;} }
.hero-scroll span{ font-family:'Space Mono',monospace; font-size:.62rem; letter-spacing:.16em; color:rgba(255,255,255,.7); writing-mode:vertical-rl; }

.hero-dots{ position:absolute; z-index:4; bottom:26px; left:26px; display:flex; gap:8px; }
.hero-dots button{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.35); border:none; padding:0; transition:all .4s var(--ease); }
.hero-dots button.active{ background:var(--flame); width:26px; border-radius:5px; }

/* Hero manual arrow navigation */
.hero-arrow{
  position:absolute; z-index:5; top:50%; margin-top:-28px; width:56px; height:56px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1.5px solid rgba(255,255,255,.28); backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:all .4s var(--ease);
}
.hero-arrow:hover{ background:var(--flame); border-color:var(--flame); color:var(--navy-deep); transform:scale(1.08); }
.hero-arrow svg{ width:22px; height:22px; }
.hero-arrow.prev{ left:26px; }
.hero-arrow.next{ right:26px; }
@media (max-width:768px){
  .hero-arrow{ width:44px; height:44px; margin-top:-22px; }
  .hero-arrow svg{ width:18px; height:18px; }
  .hero-arrow.prev{ left:12px; }
  .hero-arrow.next{ right:12px; }
}

/* Hero -> next section transition device: a torn/curved edge so a "new section" clearly begins */
.hero-edge{
  position:absolute; left:0; right:0; bottom:-1px; z-index:6; line-height:0; pointer-events:none;
}
.hero-edge svg{ width:100%; height:auto; display:block; }

/* About "page reveal" divider - like a page lifting over the marquee ribbon */
.about{ position:relative; padding-top:130px; }
.page-curl{ position:absolute; top:-1px; left:0; right:0; z-index:2; line-height:0; pointer-events:none; }
.page-curl svg{ width:100%; height:auto; display:block; }
@media (max-width:768px){ .about{ padding-top:90px; } }

/* floating badge */
.floating-badge{
  position:absolute; z-index:4; top:150px; right:6%;
  background:rgba(255,255,255,.1); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.25); border-radius:var(--radius-md);
  padding:18px 22px; color:var(--white); text-align:center;
  animation:float 5s ease-in-out infinite;
  display:flex; flex-direction:column; align-items:center; gap:2px;
}
.floating-badge strong{ font-family:'Fraunces',serif; font-size:1.6rem; color:var(--flame-bright); }
.floating-badge small{ font-family:'Space Mono',monospace; font-size:.6rem; letter-spacing:.1em; text-transform:uppercase; }
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
@media (max-width:960px){ .floating-badge{ display:none; } }

/* ==================== MARQUEE STRIP ==================== */
.marquee-strip{
  background:var(--navy); padding:16px 0; overflow:hidden; position:relative;
  border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08);
}
.marquee-track{ display:flex; gap:50px; white-space:nowrap; animation:marquee 28s linear infinite; width:max-content; }
.marquee-track span{ font-family:'Space Mono',monospace; color:rgba(255,255,255,.55); font-size:.82rem; letter-spacing:.05em; display:flex; align-items:center; gap:14px; }
.marquee-track span::before{ content:'✦'; color:var(--flame); }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==================== ABOUT / OUR STORY (redesigned) ==================== */
.about{ background:var(--paper); }
.about-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:80px; align-items:center; }
@media (max-width:900px){ .about-grid{ grid-template-columns:1fr; gap:50px; } }

.about-visual{ position:relative; padding:10px 0 46px 26px; }
@media (max-width:560px){ .about-visual{ padding-left:14px; } }

.about-watermark{
  position:absolute; top:-46px; left:-10px; font-family:'Fraunces',serif; font-weight:900;
  font-size:clamp(5rem,11vw,8.5rem); color:transparent; -webkit-text-stroke:1.5px rgba(14,26,58,.1);
  line-height:1; z-index:0; user-select:none; pointer-events:none; letter-spacing:-.03em;
}

.about-photo-main{
  position:relative; z-index:1; overflow:hidden; box-shadow:var(--shadow-lg);
  clip-path:polygon(3% 0, 100% 4%, 97% 100%, 0 96%);
}
.about-photo-main img{ width:100%; height:500px; object-fit:cover; display:block; transition:transform 1.2s var(--ease); }
.about-photo-main:hover img{ transform:scale(1.06); }
@media (max-width:560px){ .about-photo-main img{ height:380px; } }

.about-photo-float{
  position:absolute; z-index:3; width:50%; bottom:-30px; right:-34px;
  border:6px solid var(--paper); box-shadow:var(--shadow-lg); border-radius:16px; overflow:hidden;
  transform:rotate(-5deg); transition:transform .5s var(--ease);
}
.about-photo-float:hover{ transform:rotate(0) scale(1.04); }
.about-photo-float img{ height:190px; object-fit:cover; width:100%; display:block; }
@media (max-width:560px){ .about-photo-float{ width:48%; right:-14px; bottom:-20px; } .about-photo-float img{ height:130px; } }

.about-orbit{ position:absolute; z-index:4; top:-6px; right:8%; width:112px; height:112px; }
.about-orbit .ring-svg{ width:100%; height:100%; animation:spin 22s linear infinite; display:block; }
@keyframes spin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }
.about-orbit .badge-center{
  position:absolute; inset:12px; border-radius:50%; background:var(--navy); display:flex; flex-direction:column;
  align-items:center; justify-content:center; box-shadow:var(--shadow-md);
}
.about-orbit .badge-center strong{ font-family:'Fraunces',serif; color:var(--flame-bright); font-size:1.3rem; line-height:1; }
.about-orbit .badge-center span{ font-family:'Space Mono',monospace; font-size:.5rem; color:rgba(255,255,255,.75); letter-spacing:.1em; text-transform:uppercase; margin-top:3px; }
@media (max-width:560px){ .about-orbit{ width:86px; height:86px; right:2%; top:-14px; } .about-orbit .badge-center strong{ font-size:1rem; } }

.about-copy{ position:relative; }
.about-copy .lede{ font-family:'Fraunces',serif; font-size:1.4rem; color:var(--navy); font-weight:500; line-height:1.45; margin-bottom:22px; }
.about-copy p.body-text{ color:var(--ink-soft); font-size:1.03rem; margin-bottom:0; }
.about-copy p.body-text::first-letter{
  font-family:'Fraunces',serif; font-size:3.6rem; font-weight:700; float:left; line-height:.78;
  padding:5px 12px 0 0; color:var(--diya);
}

.motto-seal{
  display:flex; align-items:center; gap:24px; margin-top:34px; padding:26px 0;
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.motto-seal .seal-mark{
  flex-shrink:0; width:76px; height:76px; border-radius:50%; border:2px solid var(--diya);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.motto-seal .seal-mark::before{ content:''; position:absolute; inset:7px; border:1px dashed rgba(180,57,44,.5); border-radius:50%; }
.motto-seal .seal-mark svg{ width:26px; height:26px; color:var(--diya); }
.motto-seal .txt .hindi{ font-family:'Hind',serif; font-size:1.22rem; color:var(--navy); font-weight:600; }
.motto-seal .txt .eng{ margin-top:6px; color:var(--ink-soft); font-size:.88rem; font-style:italic; line-height:1.5; }
@media (max-width:560px){ .motto-seal{ flex-direction:column; align-items:flex-start; gap:16px; } }

.about-ledger{ display:flex; gap:0; margin-top:32px; }
.about-ledger .ledger-item{ flex:1; padding:0 26px; }
.about-ledger .ledger-item:first-child{ padding-left:0; }
.about-ledger .ledger-item + .ledger-item{ border-left:1px solid var(--line); }
.about-ledger .ledger-item strong{ display:block; font-family:'Fraunces',serif; color:var(--navy); font-size:1.05rem; }
.about-ledger .ledger-item small{ color:var(--ink-soft); font-size:.78rem; letter-spacing:.02em; }
@media (max-width:560px){
  .about-ledger{ flex-direction:column; gap:18px; }
  .about-ledger .ledger-item{ padding:0; border-left:none !important; padding-left:16px !important; border-left:2px solid var(--diya) !important; }
}

/* ==================== STATS BAND ==================== */
.stats-band{ background:var(--navy); padding:70px 0; position:relative; overflow:hidden; }
.stats-band::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 85% 20%, rgba(232,163,61,.14), transparent 60%); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; position:relative; z-index:1; }
@media (max-width:768px){ .stats-grid{ grid-template-columns:repeat(2,1fr); } }
.stat-card{ text-align:center; padding:20px; border-right:1px solid rgba(255,255,255,.1); }
.stat-card:last-child{ border-right:none; }
@media (max-width:768px){ .stat-card:nth-child(2){ border-right:none; } }
.stat-card .num{ font-family:'Fraunces',serif; font-size:clamp(2rem,4vw,3rem); color:var(--flame-bright); font-weight:700; }
.stat-card .lbl{ color:rgba(255,255,255,.72); font-size:.86rem; margin-top:8px; font-weight:500; }

/* ==================== WHY CHOOSE / FEATURES ==================== */
.why{ background:var(--paper-2); }
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .why-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .why-grid{ grid-template-columns:1fr; } }
.why-card{
  background:var(--white); border-radius:var(--radius-md); padding:32px 28px;
  box-shadow:var(--shadow-sm); transition:transform .5s var(--ease), box-shadow .5s var(--ease);
  border:1px solid var(--line); position:relative; overflow:hidden;
}
.why-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.why-card .icon{
  width:56px; height:56px; border-radius:16px; background:linear-gradient(135deg, var(--diya), var(--flame));
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.why-card .icon svg{ width:28px; height:28px; color:var(--white); }
.why-card h3{ font-size:1.15rem; margin-bottom:10px; }
.why-card p{ color:var(--ink-soft); font-size:.92rem; }
.why-card .idx{ position:absolute; top:18px; right:22px; font-family:'Space Mono',monospace; font-size:2.2rem; color:var(--line); font-weight:700; }

/* ==================== JOURNEY / TIMELINE ==================== */
.journey{ background:var(--paper); }
.timeline{ position:relative; max-width:900px; margin:0 auto; }
.timeline::before{
  content:''; position:absolute; left:24px; top:8px; bottom:8px; width:2px;
  background:repeating-linear-gradient(180deg, var(--line) 0 8px, transparent 8px 16px);
}
@media (min-width:769px){ .timeline::before{ left:50%; margin-left:-1px; } }
.tl-item{ position:relative; padding-left:64px; margin-bottom:52px; }
.tl-item:last-child{ margin-bottom:0; }
@media (min-width:769px){
  .tl-item{ width:50%; padding-left:0; padding-right:56px; text-align:right; }
  .tl-item:nth-child(even){ margin-left:50%; padding-right:0; padding-left:56px; text-align:left; }
}
.tl-dot{
  position:absolute; left:14px; top:2px; width:22px; height:22px; border-radius:50%;
  background:var(--paper); border:3px solid var(--diya); z-index:2;
}
@media (min-width:769px){
  .tl-item .tl-dot{ left:auto; right:-11px; }
  .tl-item:nth-child(even) .tl-dot{ left:-11px; right:auto; }
}
.tl-year{ font-family:'Space Mono',monospace; color:var(--diya); font-weight:700; font-size:.9rem; letter-spacing:.04em; }
.tl-card{ background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md); padding:22px 26px; margin-top:10px; box-shadow:var(--shadow-sm); }
.tl-card h3{ font-size:1.15rem; margin-bottom:8px; }
.tl-card p{ color:var(--ink-soft); font-size:.92rem; margin:0; }

/* ==================== VISION / MISSION ==================== */
.vm{ background:var(--navy-deep); color:var(--white); position:relative; overflow:hidden; }
.vm::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 10% 90%, rgba(60,107,69,.25), transparent 55%); }
.vm-grid{ display:grid; grid-template-columns:1fr 1fr; gap:40px; position:relative; z-index:1; }
@media (max-width:800px){ .vm-grid{ grid-template-columns:1fr; } }
.vm-card{ background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius-lg); padding:44px 38px; backdrop-filter:blur(6px); }
.vm-card .icon{ width:56px; height:56px; border-radius:50%; background:rgba(232,163,61,.16); display:flex; align-items:center; justify-content:center; margin-bottom:24px; }
.vm-card .icon svg{ width:28px; height:28px; color:var(--flame-bright); }
.vm-card h3{ color:var(--white); font-size:1.5rem; margin-bottom:16px; }
.vm-card p{ color:rgba(255,255,255,.72); font-size:.98rem; }

/* ==================== ACADEMICS / CLASSES STRIP ==================== */
.academics{ background:var(--paper-2); }
.class-scroller{ display:flex; gap:20px; overflow-x:auto; padding-bottom:20px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
.class-scroller::-webkit-scrollbar{ height:6px; }
.class-scroller::-webkit-scrollbar-thumb{ background:var(--line); border-radius:10px; }
.class-chip{
  flex:0 0 auto; scroll-snap-align:start; min-width:170px;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:26px 22px; text-align:center; transition:transform .4s var(--ease), background .4s ease, color .4s ease;
}
.class-chip:hover{ transform:translateY(-6px); background:var(--navy); }
.class-chip:hover .stage, .class-chip:hover .range{ color:var(--white); }
.class-chip .stage{ font-family:'Fraunces',serif; font-size:1.1rem; color:var(--navy); transition:color .4s ease; }
.class-chip .range{ font-family:'Space Mono',monospace; font-size:.72rem; letter-spacing:.06em; color:var(--diya); margin-top:6px; display:block; transition:color .4s ease; }

.medium-tags{ display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; justify-content:center; }
.medium-tags .tag{
  padding:10px 22px; border-radius:100px; border:1.5px solid var(--diya); color:var(--diya);
  font-weight:700; font-size:.86rem; font-family:'Space Mono',monospace;
}

/* ==================== GALLERY ==================== */
.gallery{ background:var(--navy-deep); color:var(--white); }
.gallery .section-head p{ color:rgba(255,255,255,.65); }
.gallery-track-wrap{ position:relative; }
.gallery-track{ display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory; padding:10px 4px 26px; -webkit-overflow-scrolling:touch; }
.gallery-track::-webkit-scrollbar{ height:8px; }
.gallery-track::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.18); border-radius:10px; }
.gallery-item{
  flex:0 0 auto; width:300px; scroll-snap-align:start; border-radius:var(--radius-md);
  overflow:hidden; position:relative; height:380px; cursor:zoom-in;
  box-shadow:var(--shadow-md);
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.gallery-item:hover img{ transform:scale(1.14); }
.gallery-item::after{
  content:''; position:absolute; inset:0; background:linear-gradient(180deg, transparent 50%, rgba(0,0,0,.75) 100%);
}
.gallery-cap{
  position:absolute; left:18px; right:18px; bottom:16px; z-index:2;
  font-family:'Space Mono',monospace; font-size:.76rem; letter-spacing:.03em; color:var(--white);
}
.gallery-zoom-icon{
  position:absolute; top:16px; right:16px; z-index:2; width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.14); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center;
  opacity:0; transform:scale(.7); transition:all .4s var(--ease);
}
.gallery-item:hover .gallery-zoom-icon{ opacity:1; transform:scale(1); }
.gallery-zoom-icon svg{ width:17px; height:17px; color:var(--white); }
.gallery-nav{ display:flex; gap:14px; justify-content:center; margin-top:10px; }
.gallery-nav button{
  width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.06);
  color:var(--white); display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease);
}
.gallery-nav button:hover{ background:var(--flame); border-color:var(--flame); color:var(--navy-deep); }
.gallery-nav svg{ width:18px; height:18px; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:2000; background:rgba(5,9,22,.94);
  display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden;
  transition:opacity .4s ease, visibility .4s ease; backdrop-filter:blur(6px);
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:88vw; max-height:82vh; border-radius:14px; box-shadow:0 30px 80px rgba(0,0,0,.5); transform:scale(.92); transition:transform .4s var(--ease); }
.lightbox.open img{ transform:scale(1); }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute; width:50px; height:50px; border-radius:50%; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
  color:#fff; display:flex; align-items:center; justify-content:center; transition:all .3s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background:var(--flame); color:var(--navy-deep); }
.lightbox-close{ top:26px; right:26px; }
.lightbox-prev{ left:26px; top:50%; margin-top:-25px; }
.lightbox-next{ right:26px; top:50%; margin-top:-25px; }
@media (max-width:600px){ .lightbox-prev,.lightbox-next{ width:40px; height:40px; } .lightbox-prev{left:10px;} .lightbox-next{right:10px;} .lightbox-close{ top:14px; right:14px; } }

/* ==================== HOLISTIC / ACTIVITIES ==================== */
.holistic{ background:var(--paper); }
.holistic-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
@media (max-width:900px){ .holistic-grid{ grid-template-columns:1fr; gap:36px; } }
.holistic-list{ display:flex; flex-direction:column; gap:0; }
.holistic-list li{ display:flex; gap:18px; padding:20px 0; border-bottom:1px solid var(--line); align-items:flex-start; }
.holistic-list li:first-child{ padding-top:0; }
.holistic-list .num{ font-family:'Space Mono',monospace; color:var(--diya); font-weight:700; font-size:.86rem; padding-top:3px; }
.holistic-list h4{ font-family:'Fraunces',serif; font-size:1.08rem; color:var(--navy); margin-bottom:4px; }
.holistic-list p{ color:var(--ink-soft); font-size:.9rem; margin:0; }
.holistic-visual img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); width:100%; height:520px; object-fit:cover; }

/* ==================== LEADERSHIP ==================== */
.leadership{ background:var(--paper-2); }
.leader-grid{ display:grid; grid-template-columns:1fr 1fr; gap:30px; max-width:900px; margin:0 auto; }
@media (max-width:700px){ .leader-grid{ grid-template-columns:1fr; } }
.leader-card{ background:var(--white); border-radius:var(--radius-lg); padding:40px 32px; text-align:center; box-shadow:var(--shadow-sm); border:1px solid var(--line); transition:transform .5s var(--ease); }
.leader-card:hover{ transform:translateY(-8px); }
.leader-avatar{
  width:110px; height:110px; border-radius:50%; margin:0 auto 22px; background:linear-gradient(135deg, var(--navy), var(--navy-soft));
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); position:relative;
}
.leader-avatar svg{ width:52px; height:52px; color:var(--flame-bright); }
.leader-avatar::after{ content:''; position:absolute; inset:-6px; border-radius:50%; border:1.5px dashed var(--flame); }
.leader-card h3{ font-size:1.3rem; }
.leader-card .role{ font-family:'Space Mono',monospace; color:var(--diya); font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; margin-top:8px; display:block; }
.leader-card .cred{ color:var(--ink-soft); font-size:.9rem; margin-top:14px; }

/* ==================== ADMISSIONS ==================== */
.admissions{ background:var(--navy); color:var(--white); position:relative; overflow:hidden; }
.admissions::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 90% 10%, rgba(232,163,61,.16), transparent 55%); }
.admissions-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:56px; position:relative; z-index:1; align-items:start; }
@media (max-width:900px){ .admissions-grid{ grid-template-columns:1fr; } }
.admissions .section-head p{ color:rgba(255,255,255,.68); }
.admit-list{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:6px; }
@media (max-width:560px){ .admit-list{ grid-template-columns:1fr; } }
.admit-list li{ display:flex; align-items:flex-start; gap:12px; font-size:.92rem; color:rgba(255,255,255,.85); }
.admit-list svg{ width:19px; height:19px; color:var(--flame-bright); flex-shrink:0; margin-top:2px; }
.admit-card{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16); border-radius:var(--radius-lg);
  padding:38px 34px; backdrop-filter:blur(8px);
}
.admit-card .fee-row{ display:flex; justify-content:space-between; align-items:center; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.14); }
.admit-card .fee-row:last-of-type{ border-bottom:none; }
.admit-card .fee-label{ color:rgba(255,255,255,.7); font-size:.9rem; }
.admit-card .fee-value{ font-family:'Fraunces',serif; font-size:1.3rem; color:var(--flame-bright); font-weight:700; }
.admit-card .btn{ width:100%; justify-content:center; margin-top:24px; }
.admit-card .rte-note{ margin-top:18px; font-size:.8rem; color:rgba(255,255,255,.55); text-align:center; }

/* ==================== TESTIMONIAL / QUOTE ==================== */
.quote-band{ background:var(--paper); text-align:center; padding:90px 0; }
.quote-band blockquote{
  font-family:'Fraunces',serif; font-style:italic; font-size:clamp(1.3rem,3vw,2.1rem); color:var(--navy);
  max-width:820px; margin:0 auto; line-height:1.5; position:relative;
}
.quote-band blockquote::before{ content:'“'; font-size:5rem; color:var(--flame); display:block; line-height:0; margin-bottom:14px; font-family:'Fraunces',serif; }
.quote-band cite{ display:block; margin-top:26px; font-family:'Space Mono',monospace; font-style:normal; color:var(--ink-soft); font-size:.85rem; letter-spacing:.06em; }

/* ==================== CONTACT ==================== */
.contact{ background:var(--paper-2); }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

.contact-info-list{ display:flex; flex-direction:column; gap:22px; margin-bottom:32px; }
.info-item{ display:flex; gap:16px; align-items:flex-start; }
.info-item .ic{ width:46px; height:46px; border-radius:14px; background:var(--white); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-item .ic svg{ width:21px; height:21px; color:var(--diya); }
.info-item strong{ display:block; color:var(--navy); font-family:'Fraunces',serif; font-size:1rem; }
.info-item span, .info-item a{ color:var(--ink-soft); font-size:.92rem; }

.social-row{ display:flex; gap:12px; margin-top:8px; }
.social-row a{
  width:44px; height:44px; border-radius:50%; background:var(--white); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; transition:all .35s var(--ease);
}
.social-row a:hover{ background:var(--diya); border-color:var(--diya); transform:translateY(-4px); }
.social-row svg{ width:19px; height:19px; color:var(--navy); transition:color .35s ease; }
.social-row a:hover svg{ color:var(--white); }

.map-frame{ border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-md); margin-top:8px; border:1px solid var(--line); }
.map-frame iframe{ width:100%; height:260px; border:0; display:block; }

.google-review-card{
  margin-top:24px; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:22px 24px; display:flex; align-items:center; gap:16px; justify-content:space-between; flex-wrap:wrap;
}
.google-review-card .stars{ color:var(--flame); font-size:1.1rem; letter-spacing:2px; }
.google-review-card p{ margin:4px 0 0; color:var(--ink-soft); font-size:.88rem; }

.contact-form{
  background:var(--white); border-radius:var(--radius-lg); padding:40px; box-shadow:var(--shadow-md); border:1px solid var(--line);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; position:relative; }
.field label{ display:block; font-size:.8rem; font-weight:700; color:var(--navy); margin-bottom:8px; letter-spacing:.02em; }
.field label .req{ color:var(--diya); }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:var(--radius-sm); border:1.5px solid var(--line);
  background:var(--paper); font-size:.94rem; color:var(--ink); transition:border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--diya); box-shadow:0 0 0 4px rgba(180,57,44,.1); background:var(--white);
}
.field textarea{ resize:vertical; min-height:110px; }
.field.field-error input, .field.field-error select, .field.field-error textarea{
  border-color:var(--diya); background:#fdf1ef; animation:shake .45s ease;
}
.field-error-msg{ display:none; color:var(--diya); font-size:.76rem; margin-top:6px; font-weight:600; }
.field.field-error .field-error-msg{ display:block; }
@keyframes shake{ 0%,100%{ transform:translateX(0);} 20%{ transform:translateX(-6px);} 40%{ transform:translateX(6px);} 60%{ transform:translateX(-4px);} 80%{ transform:translateX(4px);} }
.form-submit{ width:100%; justify-content:center; padding:16px; font-size:1rem; }
.form-note{ text-align:center; font-size:.78rem; color:var(--ink-soft); margin-top:16px; }
.form-success{
  display:none; align-items:center; gap:12px; background:#eef6ee; border:1px solid var(--leaf); color:var(--leaf);
  padding:16px 18px; border-radius:var(--radius-sm); font-size:.88rem; font-weight:600; margin-bottom:18px;
}
.form-success.show{ display:flex; }
.form-success svg{ width:20px; height:20px; flex-shrink:0; }

/* ==================== FAQ ==================== */
.faq{ background:var(--paper); }
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:24px 4px; background:none; border:none; text-align:left; font-family:'Fraunces',serif;
  font-size:1.08rem; color:var(--navy); font-weight:600;
}
.faq-q .plus{ width:30px; height:30px; border-radius:50%; border:1.5px solid var(--diya); flex-shrink:0; position:relative; transition:transform .4s var(--ease), background .4s ease; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--diya); top:50%; left:50%; transition:transform .4s var(--ease); }
.faq-q .plus::before{ width:12px; height:2px; transform:translate(-50%,-50%); }
.faq-q .plus::after{ width:2px; height:12px; transform:translate(-50%,-50%); }
.faq-item.open .faq-q .plus{ background:var(--diya); transform:rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after{ background:var(--white); }
.faq-item.open .faq-q .plus::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .5s var(--ease); }
.faq-a p{ padding:0 4px 24px; color:var(--ink-soft); font-size:.94rem; max-width:680px; }

/* ==================== CTA BAND ==================== */
.cta-band{
  background:linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  color:var(--white); padding:80px 0; text-align:center; position:relative; overflow:hidden;
  border-top:1px solid rgba(232,163,61,.25);
}
.cta-band::before{ content:''; position:absolute; inset:0; background:radial-gradient(circle at 20% 20%, rgba(232,163,61,.16), transparent 55%); }
.cta-band h2{ color:var(--white); font-size:clamp(1.8rem,4vw,3rem); position:relative; z-index:1; }
.cta-band p{ color:rgba(255,255,255,.85); max-width:560px; margin:16px auto 34px; position:relative; z-index:1; }
.cta-band .actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* ==================== FOOTER ==================== */
.site-footer{ background:var(--navy-deep); color:rgba(255,255,255,.7); padding:70px 0 26px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.1); }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ width:48px; height:48px; border-radius:50%; }
.footer-brand strong{ font-family:'Fraunces',serif; color:var(--white); font-size:1.15rem; }
.site-footer p{ font-size:.88rem; line-height:1.7; }
.footer-col h4{ color:var(--white); font-family:'Space Mono',monospace; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom:20px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:.88rem; transition:color .3s ease; }
.footer-col a:hover{ color:var(--flame-bright); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; padding-top:26px; font-size:.8rem; }
.footer-bottom a{ color:var(--flame-bright); }

/* ==================== FLOATING ACTION (WhatsApp) ==================== */
.fab-whatsapp{
  position:fixed; bottom:26px; right:26px; z-index:900; width:60px; height:60px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 26px rgba(37,211,102,.45);
  animation:pulse-fab 2.6s ease-in-out infinite;
}
.fab-whatsapp svg{ width:30px; height:30px; color:#fff; }
@keyframes pulse-fab{ 0%,100%{ box-shadow:0 10px 26px rgba(37,211,102,.45);} 50%{ box-shadow:0 10px 34px rgba(37,211,102,.7), 0 0 0 10px rgba(37,211,102,.12);} }
@media (max-width:768px){ .fab-whatsapp{ width:52px; height:52px; bottom:18px; right:18px; } .fab-whatsapp svg{ width:26px; height:26px; } }

/* back to top */
.back-top{
  position:fixed; bottom:26px; left:26px; z-index:900; width:48px; height:48px; border-radius:50%;
  background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px); transition:all .4s var(--ease); box-shadow:var(--shadow-md);
}
.back-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.back-top svg{ width:20px; height:20px; }
@media (max-width:600px){ .back-top{ display:none; } }

/* Utility */
.text-center{ text-align:center; }
.mt-40{ margin-top:40px; }
::selection{ background:var(--flame); color:var(--navy-deep); }

/* Preloader */
.preloader{
  position:fixed; inset:0; z-index:9999; background:var(--navy-deep); display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
.preloader.hide{ opacity:0; visibility:hidden; }
.preloader .lamp-svg{ width:56px; height:66px; }
