/* ---------- Design tokens ---------- */
:root {
  --bg: #0b0b0d;
  --bg-alt: #141417;
  --bg-card: #1b1b20;
  --border: #2a2a30;
  --text: #f5f3ef;
  --text-muted: #a8a5a0;
  --accent: #6381c9;
  --accent-dark: #435f9e;
  --gold: #cdd9f7;
  --radius: 10px;
  --container: 1160px;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-brutal: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  box-shadow: 0 0 12px rgba(99, 129, 201, 0.7);
  z-index: 300;
  transition: width 0.1s ease-out;
}

/* ---------- Film grain (always on, very subtle) ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Cinematic intro: curtain wipe + impact flash ---------- */
.intro-curtain {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  pointer-events: none;
  animation: curtain-out 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: 0.55s;
}
.intro-mark {
  width: clamp(72px, 12vw, 120px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(99, 129, 201, 0.5));
  animation: intro-mark-pulse 0.55s ease-out forwards;
}
@keyframes intro-mark-pulse {
  0% { opacity: 0; transform: scale(0.85); }
  60% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes curtain-out {
  0% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.intro-flash {
  position: fixed;
  inset: 0;
  z-index: 390;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(99, 129, 201, 0.5) 35%, transparent 72%);
  animation: intro-flash-pulse 1s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes intro-flash-pulse {
  0% { opacity: 0; }
  6% { opacity: 1; }
  22% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-curtain, .intro-flash, .intro-mark { animation: none !important; opacity: 0 !important; visibility: hidden !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h1, h2 { font-family: var(--font-brutal); letter-spacing: -0.01em; }
h1 { font-size: clamp(48px, 9vw, 96px); }
h2 { font-size: clamp(30px, 5vw, 48px); }
h3 { font-size: 22px; letter-spacing: 0.3px; }

p { margin: 0 0 16px; color: var(--text-muted); }

.text-accent { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.section-lede {
  max-width: 620px;
  font-size: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline { border-color: var(--text); color: var(--text); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost { color: var(--text-muted); font-weight: 600; }
.btn-ghost:hover { color: var(--text); }

.btn-lg { padding: 16px 30px; font-size: 16px; }

/* magnetic pull toward cursor, set via JS custom properties */
.btn-magnetic {
  --mx: 0px;
  --my: 0px;
  transform: translate(var(--mx), var(--my));
  transition: transform 0.15s ease-out, background 0.15s ease, border-color 0.15s ease;
}

/* expanding impact ring on hover/focus, boxing-glove-punch style */
.btn-impact { position: relative; overflow: visible; }
.btn-impact::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
}
.btn-impact:hover::after,
.btn-impact:focus-visible::after {
  animation: impact-ring 0.5s ease-out;
}
@keyframes impact-ring {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* quick punch feedback on click, applied/removed via JS */
.btn.is-punched { animation: btn-punch 0.22s ease-out; }
@keyframes btn-punch {
  0% { transform: scale(1); }
  35% { transform: scale(0.9) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}

/* continuous attention pulse, used sparingly on the primary CTA */
.btn-pulse { animation: btn-pulse-glow 2.4s ease-in-out infinite; }
@keyframes btn-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99, 129, 201, 0.55); }
  50% { box-shadow: 0 0 0 8px rgba(99, 129, 201, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 11, 13, 0.97);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.site-header.is-scrolled .header-inner { height: 64px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  transition: height 0.25s ease;
}

/* animated underline sweep on nav links */
.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark { display: block; width: 38px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0b0b0d 0%, #141417 100%);
  z-index: -1;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.15) contrast(1.05);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.82) 60%, rgba(11, 11, 13, 0.97) 100%),
    linear-gradient(100deg, rgba(11, 11, 13, 0.95) 0%, rgba(11, 11, 13, 0.55) 45%, rgba(11, 11, 13, 0.35) 100%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.glow-orb-a {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(99, 129, 201, 0.55), transparent 70%);
  animation: orb-drift-a 14s ease-in-out infinite;
}
.glow-orb-b {
  width: 420px;
  height: 420px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(205, 217, 247, 0.3), transparent 70%);
  animation: orb-drift-b 18s ease-in-out infinite;
}
@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.15); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}
.ember-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero-lede { font-size: 19px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Hero title: brutal stagger-in words ---------- */
.hero-title {
  font-family: var(--font-brutal);
  font-size: clamp(40px, 9vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
  max-width: 100%;
}
.title-row { display: block; padding-bottom: 0.05em; }
.hero-title .word { display: inline-block; will-change: transform, opacity; }

/* only hide words for the GSAP-driven stagger when JS confirmed running;
   no-JS visitors get the full headline immediately, no stuck-hidden state */
html.js-anim .hero-title .word {
  opacity: 0;
  transform: translateY(70px) rotate(2deg);
}
@media (prefers-reduced-motion: reduce) {
  html.js-anim .hero-title .word { opacity: 1; transform: none; }
}

/* animated shine-gradient accent text */
.text-shine {
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-shift 4s linear infinite;
  filter: drop-shadow(0 0 24px rgba(99, 129, 201, 0.4));
}
@keyframes shine-shift {
  to { background-position: 200% center; }
}

/* punch-in entrance for hero content */
.punch-in {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  animation: punch-in 0.7s cubic-bezier(0.2, 0.9, 0.25, 1.2) forwards;
}
.punch-in-delay-1 { animation-delay: 0.08s; }
.punch-in-delay-2 { animation-delay: 0.16s; }
.punch-in-delay-3 { animation-delay: 0.24s; }
@keyframes punch-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* bouncing scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  animation: scroll-cue-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-cue-bounce {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ---------- Marquee ticker ---------- */
.marquee {
  overflow: hidden;
  background: var(--accent);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.marquee-dot { font-size: 10px !important; opacity: 0.7; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Round framing (cinematic ghost numerals) ---------- */
.round-section { position: relative; overflow: hidden; }
.round-numeral {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-family: var(--font-brutal);
  font-size: clamp(220px, 32vw, 480px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 243, 239, 0.06);
  z-index: 0;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.round-tag {
  display: inline-block;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 12px;
  margin-right: 10px;
  font-size: 12px;
}
.round-section > .container { position: relative; z-index: 1; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
/* oversized frame gives the parallax translate room without exposing edges */
.about-photo-frame {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  height: 130%;
  will-change: transform;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  perspective: 1000px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}
/* oversized frame gives the parallax translate room without exposing edges;
   the hover zoom lives on the img itself so the two transforms never collide */
.gallery-item-frame {
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  height: 130%;
  will-change: transform;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(0.35) contrast(1.05);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.05);
}
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  perspective: 1000px;
}
.pillar {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.pillar:hover { border-color: var(--accent); }
.pillar-icon {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ---------- Cards / Programs ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  perspective: 1000px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.15s ease-out;
}
.card:hover { border-color: var(--accent); }

/* cursor-tracking spotlight, position set via JS custom properties */
[data-tilt] {
  --mx: 50%;
  --my: 50%;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease-out;
  will-change: transform;
}
[data-tilt]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 180px at var(--mx) var(--my), rgba(99, 129, 201, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
[data-tilt]:hover::before { opacity: 1; }
.card-price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent);
  margin: 4px 0;
}
.card-price span:not(.count) { font-family: var(--font-body); font-size: 15px; color: var(--text-muted); }
.card-meta {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ---------- Pricing CTA ---------- */
.pricing-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #10141f, #141417);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.pricing-cta h2 { margin-bottom: 12px; }
.pricing-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hours ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.hours-note {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  border: 1px dashed var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
}
.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 28px;
}
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list span { color: var(--text-muted); font-weight: 500; }
.hours-list a { color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  margin-top: 40px;
}
.contact-item { margin-bottom: 28px; }
.contact-item h3 { margin-bottom: 6px; font-size: 18px; }
.contact-item a { color: var(--accent); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 10px;
}
.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form button { margin-top: 18px; align-self: flex-start; }

.map-embed {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  filter: grayscale(0.3) contrast(1.1);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-alt);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-brand .brand-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 1px; }
.footer-brand p { margin: 4px 0 0; font-size: 13px; }
.footer-social {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-muted);
}
.tbd { color: #55524d; font-style: italic; }
.footer-copy { width: 100%; text-align: center; font-size: 12px; color: #55524d; margin: 20px 0 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* GSAP drives opacity/transform directly when available; the CSS
   transition above is only for the no-JS/no-GSAP fallback path. */
.gsap-reveal .reveal { transition: none; }

.pillars .reveal:nth-child(2) { transition-delay: 0.1s; }
.pillars .reveal:nth-child(3) { transition-delay: 0.2s; }
.card-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.card-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.card-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.card-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.card-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .punch-in { opacity: 1; transform: none; animation: none; }
  .glow-orb, .marquee-track, .text-shine, .scroll-cue span,
  .btn-pulse, .btn-impact::after { animation: none !important; }
  .scroll-progress { transition: none; }
  [data-tilt] { transform: none !important; }
  .btn.is-punched { animation: none !important; }
  .ember-canvas { display: none; }
}

/* ---------- Responsive ---------- */
@media (min-width: 860px) {
  .header-call { display: inline-flex; }
}

@media (max-width: 900px) {
  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .pillars,
  .card-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .pillars,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .pricing-cta { padding: 32px; text-align: center; justify-content: center; }
  .pricing-cta-actions { justify-content: center; }
  .round-numeral { font-size: 160px; opacity: 0.7; }
}
