:root{
  --bg:#0b0c11;
  --bg-soft:#12141b;
  --panel:#181b24;
  --panel-2:#1f2330;
  --text:#f5f1ea;
  --muted:#b6b0a4;
  --line:rgba(255,255,255,.1);
  --gold:#d8ad5e;
  --gold-2:#f0ca84;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --shell:min(1180px, 92%);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Outfit',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(216,173,94,.06) 0%, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(100,120,255,.06) 0%, transparent 30%),
    linear-gradient(180deg,#090a0f 0%,#0d1016 50%,#0a0b10 100%);
  color:var(--text);
  overflow-x:hidden;
  opacity:1;
  transition:opacity .55s ease, background-position 1.2s ease;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:40px 40px;
  mask-image:radial-gradient(circle at center, rgba(0,0,0,.8), transparent 85%);
  opacity:.16;
}

body.page-enter{
  opacity:0;
}

body.page-leave{
  opacity:0;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.container{width:var(--shell);margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  background:rgba(8,10,14,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled{
  background:rgba(8,10,14,.88);
  border-bottom:1px solid rgba(255,255,255,.09);
  box-shadow:0 10px 30px rgba(0,0,0,.28);
}

.nav-wrap{
  min-height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  transition:transform .28s ease;
}
.brand:hover{transform:translateY(-1px)}

.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  padding:4px;
  box-shadow:0 0 0 1px rgba(255,255,255,.05), 0 10px 30px rgba(0,0,0,.22);
  transition:transform .35s ease, box-shadow .35s ease;
}
.brand:hover img{
  transform:scale(1.04);
  box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 14px 36px rgba(0,0,0,.28), 0 0 28px rgba(216,173,94,.12);
}

.brand span{display:flex;flex-direction:column;line-height:1}
.brand strong{font-size:1.12rem;font-weight:800;letter-spacing:.02em}
.brand small{font-size:.82rem;color:var(--muted);margin-top:4px}

.site-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:30px;
}
.site-nav a{
  position:relative;
  color:#ebe5da;
  font-size:.96rem;
  font-weight:500;
  transition:color .25s ease, opacity .25s ease, transform .25s ease;
}
.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--gold-2));
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .28s ease;
}
.site-nav a:hover{
  color:var(--gold);
  transform:translateY(-1px);
}
.site-nav a:hover::after{
  transform:scaleX(1);
}

.nav-cta,
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  overflow:hidden;
}

.nav-cta::before,
.btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22) 45%, transparent 70%);
  transform:translateX(-120%);
  transition:transform .7s ease;
  pointer-events:none;
}

.nav-cta:hover::before,
.btn:hover::before{
  transform:translateX(120%);
}

.nav-cta{
  padding:14px 22px;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-2) 100%);
  color:#17120a;
  box-shadow:0 10px 30px rgba(216,173,94,.25), 0 0 0 1px rgba(255,255,255,.03);
}
.nav-cta:hover,
.btn:hover{
  transform:translateY(-2px);
}
.nav-cta:hover{
  box-shadow:0 16px 36px rgba(216,173,94,.28), 0 0 24px rgba(216,173,94,.18);
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:5px 0;
  border-radius:999px;
  transition:transform .25s ease, opacity .25s ease;
}

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-media,
.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.04);
  transition:transform 6s ease;
}

body.loaded .hero-media img{
  transform:scale(1);
}

.hero-overlay{
  background:
    linear-gradient(90deg, rgba(7,8,12,.88) 0%, rgba(8,10,14,.62) 42%, rgba(8,10,14,.38) 100%),
    linear-gradient(180deg, rgba(8,10,14,.26) 0%, rgba(8,10,14,.68) 100%);
}

.hero-overlay::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 30% 35%, rgba(216,173,94,.08), transparent 28%),
    radial-gradient(circle at 70% 20%, rgba(95,130,255,.08), transparent 24%);
  animation:heroGlow 7s ease-in-out infinite alternate;
}

@keyframes heroGlow{
  0%{opacity:.45; transform:scale(1)}
  100%{opacity:.95; transform:scale(1.05)}
}

.hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:90px 0 80px;
  display:flex;
  justify-content:center;
}

.hero-copy{
  max-width:900px;
  width:100%;
  text-align:center;
  margin:0 auto;
}

.eyebrow,
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--gold-2);
}

.hero h1,
.section h2{
  margin:18px 0 0;
  font-family:'Playfair Display', Georgia, serif;
  line-height:.98;
  letter-spacing:-.03em;
}

.hero h1{
  font-size:clamp(3rem, 6vw, 6rem);
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.hero-text{
  margin:24px auto 0;
  max-width:760px;
  font-size:1.1rem;
  line-height:1.75;
  color:#e9e3d8;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-text,
.hero-copy .hero-actions,
.hero-copy .hero-points{
  opacity:0;
  transform:translateY(22px);
  filter:blur(8px);
}

body.loaded .hero-copy .eyebrow{
  animation:heroReveal .75s ease forwards .10s;
}
body.loaded .hero-copy h1{
  animation:heroReveal .85s ease forwards .22s;
}
body.loaded .hero-copy .hero-text{
  animation:heroReveal .85s ease forwards .38s;
}
body.loaded .hero-copy .hero-actions{
  animation:heroReveal .85s ease forwards .54s;
}
body.loaded .hero-copy .hero-points{
  animation:heroReveal .85s ease forwards .70s;
}

@keyframes heroReveal{
  to{
    opacity:1;
    transform:none;
    filter:blur(0);
  }
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
  margin-top:34px;
}

.btn{padding:16px 26px}

.btn-primary{
  background:linear-gradient(135deg,var(--gold) 0%, var(--gold-2) 100%);
  color:#18120a;
  box-shadow:0 14px 34px rgba(216,173,94,.22), 0 0 0 1px rgba(255,255,255,.03);
}
.btn-primary:hover{
  box-shadow:0 18px 40px rgba(216,173,94,.28), 0 0 28px rgba(216,173,94,.18);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.05);
  color:#fff;
}
.btn-secondary:hover{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
}

.hero-points{
  list-style:none;
  padding:0;
  margin:30px 0 0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}
.hero-points li{
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#f5ede1;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.hero-points li:hover{
  transform:translateY(-2px);
  border-color:rgba(216,173,94,.22);
  background:rgba(255,255,255,.08);
}

.intro-strip{
  position:relative;
  margin-top:-42px;
  z-index:5;
}
.intro-grid{
  display:grid;
  grid-template-columns:1.35fr .8fr;
  gap:24px;
  align-items:stretch;
}
.intro-grid article,
.intro-card{
  background:rgba(20,23,31,.92);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
  padding:30px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.intro-grid article:hover,
.intro-card:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.14);
  box-shadow:0 26px 60px rgba(0,0,0,.34), 0 0 28px rgba(216,173,94,.08);
}
.intro-grid h2{margin:0 0 14px;font-size:clamp(1.8rem,4vw,2.8rem)}
.intro-grid p{margin:0;color:var(--muted);line-height:1.8}
.intro-card{display:flex;flex-direction:column;justify-content:center}
.intro-card span{font-size:.95rem;color:var(--gold-2);text-transform:uppercase;letter-spacing:.15em;font-weight:700}
.intro-card strong{margin-top:14px;font-size:1.5rem;line-height:1.35}

.section{padding:110px 0}

.split-layout,
.spotlight-grid,
.contact-grid,
.location-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
}

.section h2{font-size:clamp(2.4rem,5vw,4.3rem)}

.section-copy > p:not(.section-tag),
.section-head p,
.spotlight-copy > p:not(.section-tag),
.contact-copy > p:not(.section-tag),
.location-copy > p:not(.section-tag){
  color:var(--muted);
  line-height:1.85;
  font-size:1.02rem;
}

.feature-list{display:grid;gap:18px;margin-top:30px}

.feature-item{
  padding:22px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.feature-item:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.18);
  background:rgba(255,255,255,.045);
  box-shadow:0 20px 40px rgba(0,0,0,.24), 0 0 22px rgba(216,173,94,.08);
}
.feature-item h3{margin:0 0 10px;font-size:1.15rem}
.feature-item p{margin:0;color:var(--muted);line-height:1.7}

.about-image-card,
.spotlight-photo{
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}
.about-image-card:hover,
.spotlight-photo:hover{
  transform:translateY(-5px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 26px 60px rgba(0,0,0,.34), 0 0 24px rgba(216,173,94,.08);
}
.about-image-card img,
.spotlight-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s ease;
}
.about-image-card:hover img,
.spotlight-photo:hover img{
  transform:scale(1.03);
}

.section-head{max-width:860px;margin:0 auto 42px}
.section-head.center{text-align:center}

.program-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.program-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-lg);
  padding:28px;
  min-height:260px;
  box-shadow:var(--shadow);
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.program-card:hover{
  transform:translateY(-6px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 26px 60px rgba(0,0,0,.30), 0 0 25px rgba(216,173,94,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.03) 100%);
}
.program-card span{
  display:inline-flex;
  width:52px;
  height:52px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(216,173,94,.14);
  color:var(--gold-2);
  font-weight:800;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.program-card:hover span{
  transform:scale(1.06);
  box-shadow:0 0 20px rgba(216,173,94,.14);
}
.program-card h3{margin:22px 0 12px;font-size:1.25rem}
.program-card p{margin:0;color:var(--muted);line-height:1.75}

.spotlight{padding-top:70px}

.stats-grid{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
.stat-box{
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.stat-box:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 20px 42px rgba(0,0,0,.24), 0 0 22px rgba(216,173,94,.08);
}
.stat-box strong{display:block;font-size:1.3rem;color:var(--gold-2)}
.stat-box span{display:block;margin-top:8px;color:var(--muted);line-height:1.6}

.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
  grid-auto-rows:280px;
}
.gallery-card{
  margin:0;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.gallery-card:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 24px 55px rgba(0,0,0,.30), 0 0 22px rgba(216,173,94,.08);
}
.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease, filter .6s ease;
}
.gallery-card:hover img{
  transform:scale(1.05);
  filter:saturate(1.04);
}
.gallery-card-large{grid-row:span 2}

.location-grid{
  align-items:start;
}
.location-card,
.location-map{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.location-card{
  border-radius:20px;
  padding:20px;
  margin-top:28px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.location-card:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 20px 42px rgba(0,0,0,.24), 0 0 22px rgba(216,173,94,.08);
}
.location-card span{
  display:block;
  font-size:.88rem;
  color:var(--gold-2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}
.location-card strong{
  display:block;
  margin-top:10px;
  line-height:1.5;
}
.location-map{
  border-radius:28px;
  padding:12px;
  overflow:hidden;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.location-map:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 24px 55px rgba(0,0,0,.30), 0 0 22px rgba(216,173,94,.08);
}
.location-map iframe{
  display:block;
  width:100%;
  height:450px;
  border:0;
  border-radius:20px;
}

.cta-band{padding-top:30px}
.cta-band-wrap{
  background:linear-gradient(135deg, rgba(216,173,94,.14) 0%, rgba(255,255,255,.04) 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:32px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.cta-band-wrap:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.16);
  box-shadow:0 24px 55px rgba(0,0,0,.30), 0 0 20px rgba(216,173,94,.08);
}
.cta-band-wrap h2{margin:14px 0 0;font-size:clamp(2rem,4vw,3.2rem)}

.contact-grid{align-items:start}

.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}
.contact-card,
.contact-form{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.contact-card{
  border-radius:20px;
  padding:20px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.contact-card:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.18);
  box-shadow:0 20px 42px rgba(0,0,0,.24), 0 0 22px rgba(216,173,94,.08);
}
.contact-card span{display:block;font-size:.88rem;color:var(--gold-2);text-transform:uppercase;letter-spacing:.12em;font-weight:700}
.contact-card strong{display:block;margin-top:10px;line-height:1.5}

.contact-form{
  border-radius:28px;
  padding:28px;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.contact-form:hover{
  transform:translateY(-4px);
  border-color:rgba(216,173,94,.16);
  box-shadow:0 24px 55px rgba(0,0,0,.30), 0 0 20px rgba(216,173,94,.08);
}

.form-group{display:grid;gap:10px;margin-bottom:16px}
label{font-weight:600;color:#f2ebdf}
input,textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:16px;
  padding:15px 16px;
  outline:none;
  transition:border-color .25s ease, box-shadow .25s ease, background .25s ease, transform .2s ease;
}
input::placeholder,textarea::placeholder{color:#a89f93}
input:focus,textarea:focus{
  border-color:rgba(216,173,94,.55);
  box-shadow:0 0 0 4px rgba(216,173,94,.08), 0 0 18px rgba(216,173,94,.08);
  background:rgba(255,255,255,.055);
}
.full{width:100%;border:0;cursor:pointer}

.floating-socials{
  position:fixed !important;
  right:22px !important;
  bottom:24px !important;
  left:auto !important;
  top:auto !important;
  z-index:99999 !important;
  display:flex;
  flex-direction:column;
  gap:12px;
  pointer-events:none;
}

.floating-social{
  pointer-events:auto;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 14px 34px rgba(0,0,0,.28);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.floating-social svg{
  width:26px;
  height:26px;
  fill:#fff;
}

.floating-whatsapp{
  background:linear-gradient(135deg, rgba(37,211,102,.9) 0%, rgba(20,130,63,.92) 100%);
}

.floating-instagram{
  background:linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
}

.floating-social:hover{
  transform:translateY(-4px) scale(1.04);
  border-color:rgba(255,255,255,.22);
}

.floating-whatsapp:hover{
  box-shadow:0 18px 40px rgba(37,211,102,.28), 0 0 24px rgba(37,211,102,.18);
}

.floating-instagram:hover{
  box-shadow:0 18px 40px rgba(221,42,123,.24), 0 0 24px rgba(129,52,175,.18);
}

.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:26px 0 40px;
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.footer-brand{display:flex;align-items:center;gap:14px}
.footer-brand img{
  width:52px;
  height:52px;
  object-fit:contain;
  background:#fff;
  border-radius:14px;
  padding:4px;
}
.footer-brand strong{display:block}
.footer-brand p,.footer-copy{margin:4px 0 0;color:var(--muted)}

.reveal{
  opacity:0;
  transform:translateY(34px) scale(.985);
  filter:blur(10px);
  transition:opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1), filter .85s ease;
  will-change:opacity,transform,filter;
}
.reveal.visible{
  opacity:1;
  transform:none;
  filter:blur(0);
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }
  .reveal,
  .reveal.visible,
  body,
  body.page-enter,
  body.page-leave{
    opacity:1 !important;
    transform:none !important;
    filter:none !important;
  }
}

@media (max-width: 1120px){
  .program-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:1fr 1fr;grid-auto-rows:240px}
  .gallery-card-large{grid-row:span 1}
  .contact-cards{grid-template-columns:1fr}
}

@media (max-width: 900px){
  .menu-toggle{display:block;justify-self:end}
  .nav-wrap{grid-template-columns:auto 1fr auto}
  .site-nav,
  .nav-cta{
    display:none;
  }
  .site-nav.is-open{
    position:absolute;
    top:88px;
    left:4%;
    right:4%;
    display:flex;
    flex-direction:column;
    gap:0;
    background:rgba(10,12,18,.98);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow);
  }
  .site-nav.is-open a{
    padding:18px 22px;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .site-nav.is-open a:last-child{border-bottom:0}

  .split-layout,
  .spotlight-grid,
  .contact-grid,
  .location-grid,
  .intro-grid{grid-template-columns:1fr}

  .hero{min-height:88vh}
  .hero-copy{max-width:100%}
}

@media (max-width: 640px){
  .nav-wrap{min-height:80px;gap:14px}
  .brand img{width:50px;height:50px}
  .hero-content{padding:72px 0 60px}
  .hero h1{font-size:clamp(2.5rem, 12vw, 4rem)}
  .hero-text{font-size:1rem}
  .hero-points{display:grid;grid-template-columns:1fr}
  .section{padding:84px 0}
  .program-grid,
  .stats-grid,
  .gallery-grid{grid-template-columns:1fr}
  .gallery-grid{grid-auto-rows:240px}
  .cta-band-wrap,
  .footer-wrap{flex-direction:column;align-items:flex-start}
  .contact-form{padding:22px}
  .location-map iframe{height:320px}

  .floating-socials{
    right:14px !important;
    bottom:16px !important;
    gap:10px;
  }
  .floating-social{
    width:52px;
    height:52px;
  }
  .floating-social svg{
    width:23px;
    height:23px;
  }
}