/* ==========================================================================
   LUCKNOW SHOOTING ACADEMY — style.css
   Premium light editorial design system (matched to logo: white / charcoal /
   saffron / green tricolor)
   ========================================================================== */

:root {
  --bg: #fafaf8;
  --bg-2: #f2f1ec;
  --bg-3: #eae8e2;
  --ink: #141416;
  --ink-dim: #4d4c48;
  --muted: #8a877e;
  --line: rgba(20, 20, 22, 0.1);
  --line-strong: rgba(20, 20, 22, 0.22);
  --saffron: #f26f15;
  --saffron-soft: rgba(242, 111, 21, 0.1);
  --green: #1d8a47;
  --wa: #25d366;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-light: rgba(20, 20, 22, 0.035);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 96px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--saffron); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Paper-grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1.display { font-size: clamp(3rem, 9.5vw, 8.5rem); }
h2.display { font-size: clamp(2.2rem, 5.5vw, 4.6rem); }
h3.display { font-size: clamp(1.4rem, 2.6vw, 2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--saffron);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  color: var(--ink-dim);
  font-weight: 400;
  max-width: 62ch;
}

.text-saffron { color: var(--saffron); }
.text-dim { color: var(--ink-dim); }

/* Outline / ghost display text */
.ghost {
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 20, 22, 0.28);
}

/* ---------- Layout ---------- */

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}
.container-wide { width: min(1440px, 94vw); margin-inline: auto; }

section { position: relative; }
.section { padding: clamp(80px, 12vh, 150px) 0; }
.section-tight { padding: clamp(56px, 8vh, 100px) 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(44px, 7vh, 80px);
  max-width: 900px;
}

.hairline { border: 0; border-top: 1px solid var(--line); }

/* Tricolor accent bar */
.tricolor {
  display: flex;
  width: 64px;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.tricolor span { flex: 1; }
.tricolor span:nth-child(1) { background: #f26f15; }
.tricolor span:nth-child(2) { background: #b9b6ad; }
.tricolor span:nth-child(3) { background: #1d8a47; }

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease-out), background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.45s;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn-solid {
  background: var(--ink);
  color: #fff;
}
.btn-solid:hover {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 12px 40px -8px rgba(242, 111, 21, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--ink);
  background: rgba(20, 20, 22, 0.05);
  transform: translateY(-2px);
}

.btn-saffron {
  background: var(--saffron);
  color: #fff;
}
.btn-saffron:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(20, 20, 22, 0.35);
}

.btn-wa {
  background: var(--wa);
  color: #073b16;
}
.btn-wa:hover {
  background: #1fc05a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(37, 211, 102, 0.45);
}

.btn-lg { padding: 20px 44px; font-size: 0.85rem; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s;
}
.arrow-link svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-out); }
.arrow-link:hover { color: var(--saffron); }
.arrow-link:hover svg { transform: translateX(6px); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s, border-color 0.45s, backdrop-filter 0.45s, box-shadow 0.45s, height 0.45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 68px;
  background: rgba(250, 250, 248, 0.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px -18px rgba(20, 20, 22, 0.12);
}

.nav-inner {
  width: min(1440px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-logo {
  height: 74px;
  width: auto;
  display: block;
  flex: none;
  transition: height 0.45s var(--ease-out);
}
.nav.scrolled .brand-logo { height: 48px; }
.footer .brand-logo { height: 124px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { flex: none; }
.nav-cta .btn { padding: 13px 26px; font-size: 0.72rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1102;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(250, 250, 248, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 8vw 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s, visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 6px 0;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.6s var(--ease-out), opacity 0.5s, color 0.3s;
}
.mobile-menu a.mm-link small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--saffron);
}
.mobile-menu.open a.mm-link { transform: translateY(0); opacity: 1; }
.mobile-menu a.mm-link:hover { color: var(--saffron); }
.mobile-menu .mm-foot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* Layers top->bottom: vertical fade, left readability wash, saffron tint,
     the photo, then a solid fallback shown only if the photo is missing */
  background-image:
    linear-gradient(180deg, rgba(250,250,248,0.85) 0%, rgba(250,250,248,0.16) 30%, rgba(250,250,248,0.16) 62%, rgba(250,250,248,0.97) 100%),
    linear-gradient(100deg, rgba(250,250,248,0.95) 0%, rgba(250,250,248,0.8) 38%, rgba(250,250,248,0.35) 70%, rgba(250,250,248,0.14) 100%),
    radial-gradient(ellipse 90% 65% at 72% 30%, rgba(242, 111, 21, 0.07), transparent 55%),
    url("../assets/img/hero.webp"),
    linear-gradient(180deg, #ffffff 0%, #fafaf8 60%, #f4f3ee 100%);
  background-size: cover, cover, cover, cover, cover;
  background-position: center, center, center, center 30%, center;
  will-change: transform;
}

/* Target-ring motif */
.hero-rings {
  position: absolute;
  right: -12vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 820px);
  aspect-ratio: 1;
  z-index: -1;
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner {
  width: min(1440px, 94vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 60px 0 120px;
}

.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy h1 { margin-bottom: 28px; }
.hero-copy h1 .line { display: block; overflow: hidden; }
.hero-copy h1 .line > span {
  display: block;
  transform: translateY(110%);
  animation: heroRise 1.1s var(--ease-out) forwards;
}
.hero-copy h1 .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero-copy h1 .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes heroRise { to { transform: translateY(0); } }

.hero-copy .lede { margin-bottom: 40px; max-width: 46ch; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Glass panel */
.hero-panel {
  background: var(--glass);
  border: 1px solid rgba(20, 20, 22, 0.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border-radius: 4px;
  padding: 36px 34px;
  box-shadow: 0 30px 80px -30px rgba(20, 20, 22, 0.22);
}
.hero-panel .panel-label {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.hero-panel .panel-label i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(29, 138, 71, 0.6);
  animation: blink 2.2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.panel-rating {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.panel-rating .score {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
}
.panel-rating .stars { color: var(--saffron); letter-spacing: 3px; font-size: 0.95rem; }
.panel-rating .sub { font-size: 0.74rem; color: var(--muted); display: block; margin-top: 4px; }

.panel-rows { display: flex; flex-direction: column; }
.panel-rows .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}
.panel-rows .row:last-child { border-bottom: 0; }
.panel-rows .row .k { color: var(--muted); }
.panel-rows .row .v { font-weight: 600; letter-spacing: 0.02em; }

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  animation: scrollPulse 2s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sub-page hero */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 60px) 0 70px;
  overflow: hidden;
}
.page-hero .hero-bg {
  background-position: center, center, center, center 40%, center;
  background-image:
    linear-gradient(180deg, rgba(250,250,248,0.88) 0%, rgba(250,250,248,0.55) 50%, rgba(250,250,248,0.97) 100%),
    linear-gradient(100deg, rgba(250,250,248,0.95) 0%, rgba(250,250,248,0.75) 45%, rgba(250,250,248,0.4) 100%),
    radial-gradient(ellipse 90% 65% at 72% 30%, rgba(242, 111, 21, 0.07), transparent 55%),
    url("../assets/img/hero.webp"),
    linear-gradient(180deg, #ffffff 0%, #fafaf8 60%, #f4f3ee 100%);
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero .lede { margin-top: 24px; }

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--ink);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4f1ea;
  white-space: nowrap;
  padding-right: 18px;
}
.marquee-track span i {
  font-style: normal;
  color: var(--saffron);
  padding-left: 18px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   STATS / TRUST
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 52px) clamp(20px, 2.5vw, 40px);
  transition: background 0.4s;
  background: #fff;
}
.stat:hover { background: var(--bg-2); }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat .num em { font-style: normal; color: var(--saffron); font-size: 0.5em; }
.stat .lbl {
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 42px) clamp(24px, 2.5vw, 36px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 22, 0.18);
}
.card:hover::before { transform: scaleX(1); }

.card .card-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--saffron);
  letter-spacing: 0.1em;
  margin-bottom: 22px;
  display: block;
}
.card .card-icon {
  width: 46px; height: 46px;
  margin-bottom: 24px;
  color: var(--saffron);
}
.card .card-icon svg { width: 100%; height: 100%; }
.card h3.display { margin-bottom: 12px; letter-spacing: 0.03em; }
.card p { color: var(--ink-dim); font-size: 0.94rem; }

/* ==========================================================================
   ABOUT PREVIEW / EDITORIAL SPLIT
   ========================================================================== */

.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.editorial .big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
.big-quote em { font-style: normal; color: var(--saffron); }
.card .big-quote { line-height: 1.45; letter-spacing: 0; }

.media-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background:
    linear-gradient(160deg, rgba(242,111,21,0.07), transparent 45%),
    linear-gradient(200deg, rgba(29,138,71,0.05), transparent 50%),
    #edece7;
  border: 1px solid var(--line);
}
.media-frame.wide { aspect-ratio: 16/9; }
.media-frame.square { aspect-ratio: 1; }
.media-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), opacity 0.6s;
}
.media-frame:hover img { transform: scale(1.045); }
.media-frame .frame-tag {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 3;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 2px;
}
/* Placeholder art shown behind (visible until a real photo is added) */
.media-frame .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
}
.media-frame .ph svg { width: 52%; max-width: 260px; opacity: 0.6; }
.media-frame img { position: relative; z-index: 1; }
.media-frame img[data-missing] { display: none; }

/* ==========================================================================
   PROGRAMS
   ========================================================================== */

.program-list { display: flex; flex-direction: column; }
.program-row {
  display: grid;
  grid-template-columns: 90px 1.15fr 1.3fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(30px, 4vh, 46px) clamp(8px, 1.5vw, 24px);
  border-top: 1px solid var(--line);
  transition: background 0.4s;
  position: relative;
}
.program-row:last-child { border-bottom: 1px solid var(--line); }
.program-row:hover { background: #fff; }
.program-row .p-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20,20,22,0.35);
  transition: color 0.4s, -webkit-text-stroke-color 0.4s;
}
.program-row:hover .p-num { color: var(--saffron); -webkit-text-stroke-color: var(--saffron); }
.program-row .p-name h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1.05;
}
.pb-dur { margin-right: 8px; }
.pb-note {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 46ch;
  margin: -18px 0 28px;
  padding-left: 14px;
  border-left: 2px solid var(--saffron);
}
.prog-group { padding: 30px 0 36px; }

.program-row .p-name .p-dur {
  display: inline-block;
  margin-right: 6px;
  margin-top: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid rgba(242,111,21,0.4);
  padding: 6px 12px;
  border-radius: 100px;
}
.program-row .p-desc { color: var(--ink-dim); font-size: 0.93rem; max-width: 46ch; }
.program-row .p-desc .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.program-row .p-desc .tags span {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  padding: 5px 11px;
  border-radius: 100px;
}
.program-row .p-cta { justify-self: end; }

/* ==========================================================================
   FACILITY SHOWCASE
   ========================================================================== */

.facility-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.facility-grid .f-a { grid-column: span 7; }
.facility-grid .f-b { grid-column: span 5; }
.facility-grid .f-c { grid-column: span 5; }
.facility-grid .f-d { grid-column: span 7; }
.facility-grid .media-frame { aspect-ratio: auto; min-height: 380px; height: 100%; }

/* Dark scrim behind the caption so it stays readable on any photo */
.facility-grid .media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.68) 0%, rgba(10, 10, 12, 0.28) 32%, transparent 55%);
}

.facility-caption {
  position: absolute;
  z-index: 3;
  left: 26px;
  top: 24px;
}
.facility-caption .fc-num {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: #ff8a33;
  display: block;
  margin-bottom: 8px;
}
.facility-caption h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(10, 10, 12, 0.55);
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.benefit {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3vw, 44px) clamp(20px, 2.2vw, 34px);
  transition: background 0.4s;
  position: relative;
  background: #fff;
}
.benefit:hover { background: var(--bg-2); }
.benefit .b-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 18px;
}
.benefit h3 {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.benefit p { font-size: 0.85rem; color: var(--muted); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(30px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 22, 0.16);
}
.testimonial-card .t-stars { color: var(--saffron); letter-spacing: 4px; font-size: 0.9rem; }
.testimonial-card blockquote {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-dim);
  flex: 1;
}
.testimonial-card .t-who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-card .t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), #c2570d);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  flex: none;
}
.testimonial-card .t-who .t-name { font-weight: 600; font-size: 0.92rem; }
.testimonial-card .t-who .t-role { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.8rem;
  color: var(--ink-dim);
  background: #fff;
}
.google-badge b { color: var(--ink); }
.google-badge .stars { color: var(--saffron); letter-spacing: 2px; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 26px 4px;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--saffron); }
.faq-q .faq-icon {
  flex: none;
  width: 34px; height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.45s var(--ease-out), background 0.35s, border-color 0.35s, color 0.35s;
}
.faq-q .faq-icon::before {
  content: "+";
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-q { color: var(--saffron); }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out);
}
.faq-a p {
  padding: 0 4px 28px;
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 68ch;
}

/* ==========================================================================
   CTA BAND — kept dark as a cinematic anchor (matches logo charcoal)
   ========================================================================== */

.cta-band {
  position: relative;
  padding: clamp(90px, 15vh, 170px) 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(242,111,21,0.22), transparent 60%),
    #141416;
  color: #f4f1ea;
}
.cta-band .lede { color: rgba(244,241,234,0.72); }
.cta-band .ghost-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 22rem);
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,241,234,0.08);
  pointer-events: none;
  user-select: none;
}
.cta-band h2 { margin-bottom: 20px; }
.cta-band .lede { margin: 0 auto 44px; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(244,241,234,0.3); color: #f4f1ea; }
.cta-band .btn-outline:hover { border-color: #f4f1ea; background: rgba(244,241,234,0.08); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(60px, 9vh, 100px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 60px;
}
.footer h4 {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer .f-brand p { color: var(--ink-dim); font-size: 0.9rem; max-width: 34ch; margin: 18px 0 24px; }
.footer .f-links li { margin-bottom: 12px; }
.footer .f-links a {
  color: var(--ink-dim);
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.35s var(--ease-out);
}
.footer .f-links a:hover { color: var(--saffron); padding-left: 6px; }
.footer address {
  font-style: normal;
  color: var(--ink-dim);
  font-size: 0.9rem;
  line-height: 1.9;
}
.footer address a { color: var(--ink); }
.footer address a:hover { color: var(--saffron); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--muted);
}
.footer-bottom .tricolor { width: 48px; height: 3px; }

.footer-giant {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10.5vw, 10.5rem);
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20,20,22,0.14);
  padding: 40px 0 20px;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

/* ==========================================================================
   FLOATING WHATSAPP + MOBILE BAR
   ========================================================================== */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 36px -6px rgba(37, 211, 102, 0.55);
  transition: transform 0.4s var(--ease-out);
}
.wa-float:hover { transform: scale(1.08) translateY(-3px); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::before,
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPulse 2.4s var(--ease-out) infinite;
}
.wa-float::after { animation-delay: 1.2s; }
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1400;
  background: rgba(250,250,248,0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -10px 40px -18px rgba(20, 20, 22, 0.15);
}
.mobile-cta-bar .btn { flex: 1; padding: 15px 10px; font-size: 0.72rem; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; }
.ci-row {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.ci-row .ci-icon {
  flex: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--saffron);
  background: #fff;
}
.ci-row .ci-icon svg { width: 18px; height: 18px; }
.ci-row .ci-k {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.ci-row .ci-v { font-size: 1rem; line-height: 1.6; }
.ci-row .ci-v a:hover { color: var(--saffron); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 3.5vw, 52px);
  box-shadow: 0 30px 70px -40px rgba(20, 20, 22, 0.18);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 15px 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a877e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(242, 111, 21, 0.16);
}
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 18px; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
  background: #fff;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   GALLERY
   ========================================================================== */

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-masonry .g-1 { grid-column: span 7; }
.gallery-masonry .g-2 { grid-column: span 5; }
.gallery-masonry .g-3 { grid-column: span 4; }
.gallery-masonry .g-4 { grid-column: span 4; }
.gallery-masonry .g-5 { grid-column: span 4; }
.gallery-masonry .g-6 { grid-column: span 5; }
.gallery-masonry .g-7 { grid-column: span 7; }
.gallery-masonry .media-frame { aspect-ratio: auto; min-height: 320px; height: 100%; }

/* ==========================================================================
   RESOURCES
   ========================================================================== */

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 3vw, 40px);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
  height: 100%;
}
.resource-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px -24px rgba(20, 20, 22, 0.16);
}
.resource-card .r-tag {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--saffron);
}
.resource-card h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.4; }
.resource-card p { color: var(--ink-dim); font-size: 0.9rem; flex: 1; }

.timeline { max-width: 800px; }
.tl-item {
  position: relative;
  padding: 0 0 44px 44px;
  border-left: 1px solid var(--line-strong);
  margin-left: 8px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--saffron);
}
.tl-item .tl-step {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--saffron);
  display: block;
  margin-bottom: 8px;
}
.tl-item h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.tl-item p { color: var(--ink-dim); font-size: 0.93rem; max-width: 60ch; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-scale { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-inner { grid-template-columns: 1fr; padding-bottom: 140px; }
  .hero-panel { max-width: 460px; }
  .hero-rings { opacity: 0.3; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }

  .editorial { grid-template-columns: 1fr; }
  .facility-grid .f-a, .facility-grid .f-b,
  .facility-grid .f-c, .facility-grid .f-d { grid-column: span 12; }
  .facility-grid .media-frame { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .gallery-masonry .g-1, .gallery-masonry .g-2, .gallery-masonry .g-3,
  .gallery-masonry .g-4, .gallery-masonry .g-5, .gallery-masonry .g-6,
  .gallery-masonry .g-7 { grid-column: span 6; }
}

@media (max-width: 720px) {
  :root { --nav-h: 76px; }
  body { font-size: 15px; }

  .brand-logo { height: 56px; }
  .nav.scrolled { height: 60px; }
  .nav.scrolled .brand-logo { height: 42px; }
  .footer .brand-logo { height: 96px; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .program-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 4px;
  }
  .program-row .p-num { display: none; }
  .program-row .p-cta { justify-self: stretch; }
  .program-row .p-cta .btn { width: 100%; }

  .hero { min-height: 100svh; }
  .hero-inner { padding: 40px 0 150px; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-scroll { display: none; }
  .hero-panel { padding: 28px 24px; }

  .mobile-cta-bar { display: flex; }
  .wa-float { bottom: 88px; right: 16px; width: 56px; height: 56px; }
  .footer { padding-bottom: 90px; }

  .gallery-masonry .g-1, .gallery-masonry .g-2, .gallery-masonry .g-3,
  .gallery-masonry .g-4, .gallery-masonry .g-5, .gallery-masonry .g-6,
  .gallery-masonry .g-7 { grid-column: span 12; }
  .gallery-masonry .media-frame { min-height: 240px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit { padding: 22px 16px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }

  .form-grid { grid-template-columns: 1fr; }
  .cta-band .cta-actions .btn { width: 100%; max-width: 360px; }
}
