/* ═══════════════════════════════════════════════
   The Saintist — Astro Vastu Audit
   Three themes: dawn (light) · midnight (dark) · royale (wine)
   All colours flow from the variables below.
   ═══════════════════════════════════════════════ */

:root,
:root[data-theme="midnight"] {
  --bg: #0b0e1a;
  --bg-soft: #10142a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --line: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold-bright: #f0d47a;
  --gold-dim: rgba(212, 175, 55, 0.6);
  --gold-glow: rgba(212, 175, 55, 0.25);
  --text: #e2d9c3;
  --text-soft: #c4bbab;
  --muted: #a59d90;
  --grad-a: #d4af37;
  --grad-b: #f0d47a;
  --grad-c: #d4af37;
  --nav-bg: rgba(11, 14, 26, 0.85);
  --input-bg: rgba(255, 255, 255, 0.04);
  --input-border: rgba(255, 255, 255, 0.1);
  --footer-bg: rgba(8, 10, 20, 0.85);
  --shadow: rgba(0, 0, 0, 0.45);
  --emblem-bg: #f3efe4;
  --btn-gold-text: #14101f;
  --font-display: "Marcellus", serif;
  --font-serif: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
}

:root[data-theme="dawn"] {
  --bg: #f7f2e6;
  --bg-soft: #efe7d3;
  --card-bg: rgba(255, 255, 255, 0.62);
  --card-border: rgba(139, 105, 32, 0.16);
  --line: rgba(139, 105, 32, 0.28);
  --gold: #a8842c;
  --gold-bright: #8a6a16;
  --gold-dim: rgba(139, 105, 32, 0.75);
  --gold-glow: rgba(168, 132, 44, 0.22);
  --text: #241b35;
  --text-soft: #4f455f;
  --muted: #665f74;
  --grad-a: #8a6a16;
  --grad-b: #b8912e;
  --grad-c: #8a6a16;
  --nav-bg: rgba(247, 242, 230, 0.88);
  --input-bg: rgba(255, 255, 255, 0.7);
  --input-border: rgba(139, 105, 32, 0.25);
  --footer-bg: #efe7d3;
  --shadow: rgba(80, 60, 20, 0.14);
  --emblem-bg: #ffffff;
  --btn-gold-text: #241a08;
}

:root[data-theme="royale"] {
  --bg: #1c0b13;
  --bg-soft: #260f1a;
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-border: rgba(255, 255, 255, 0.07);
  --line: rgba(212, 175, 55, 0.22);
  --gold: #d9b458;
  --gold-bright: #f3d98d;
  --gold-dim: rgba(217, 180, 88, 0.65);
  --gold-glow: rgba(217, 180, 88, 0.28);
  --text: #eee0c9;
  --text-soft: #d1b9af;
  --muted: #b09995;
  --grad-a: #d9b458;
  --grad-b: #f3d98d;
  --grad-c: #d9b458;
  --nav-bg: rgba(28, 11, 19, 0.87);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.12);
  --footer-bg: rgba(20, 7, 13, 0.9);
  --shadow: rgba(0, 0, 0, 0.5);
  --emblem-bg: #f6f0e2;
  --btn-gold-text: #22100a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

::selection { background: var(--gold-glow); }

/* ── Scroll progress ── */
#progressBar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--grad-a), var(--grad-b));
  z-index: 200;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ── Starfield canvas ── */
#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

main, .footer, .nav { position: relative; z-index: 1; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--gold-bright); }

h1 em, h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  background: linear-gradient(120deg, var(--grad-a) 10%, var(--grad-b) 45%, var(--grad-c) 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.1rem;
}

.center { text-align: center; }

p, li { color: var(--text-soft); }
p strong, li strong { color: var(--text); font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(120deg, #b8952e, #d4af37 45%, #e6c65c);
  color: var(--btn-gold-text);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover {
  box-shadow: 0 0 42px var(--gold-glow), 0 6px 18px var(--shadow);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emblem-bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 14px var(--gold-glow);
}
.brand-logo img { width: 84%; height: 84%; object-fit: contain; }
.brand-text span { color: var(--gold); }

/* Brand alignment tweaks */
.brand { white-space: nowrap; }
.brand-text { display: inline-flex; flex-direction: row; align-items: center; gap: 0.18rem; line-height: 1; }
.brand-word { color: var(--text); font-size: 0.98rem; font-weight: 400; }
.brand-name { color: var(--gold); font-size: 1.02rem; font-weight: 600; margin-left: 0.12rem; }
.brand-logo { width: 48px; height: 48px; }
.brand-logo img { width: 86%; height: 86%; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }

.nav-cta {
  border: 1px solid var(--line);
  padding: 0.55rem 1.3rem;
  border-radius: 3px;
  color: var(--gold-bright) !important;
}
.nav-cta:hover { background: var(--gold-glow); border-color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1.1rem; }

/* Theme switch */
.theme-switch {
  display: flex;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card-bg);
}
.theme-switch button {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(120, 100, 40, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
}
.theme-switch button[data-set-theme="dawn"] { background: linear-gradient(135deg, #f7f2e6 55%, #b8912e 55%); }
.theme-switch button[data-set-theme="midnight"] { background: linear-gradient(135deg, #0b0e1a 55%, #d4af37 55%); }
.theme-switch button[data-set-theme="royale"] { background: linear-gradient(135deg, #2a0f1c 55%, #d9b458 55%); }
.theme-switch button:hover { transform: scale(1.18); }
.theme-switch button.active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px var(--gold);
  transform: scale(1.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.zodiac-wheel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -54%);
  width: min(92vw, 720px);
  height: min(92vw, 720px);
  opacity: 0.9;
  pointer-events: none;
  color: var(--gold);
  will-change: transform;
}
.zodiac-wheel svg { width: 100%; height: 100%; }
#wheelGlow stop { stop-color: var(--gold); }

.wheel-glyphs text { font-family: "Segoe UI Symbol", "Noto Sans Symbols", serif; }

.wheel-rotor { transform-origin: 300px 300px; animation: spin 120s linear infinite; }
.wheel-rotor-reverse { transform-origin: 300px 300px; animation: spinRev 90s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }

.hero-content { position: relative; max-width: 780px; will-change: transform; }

.hero-sub {
  max-width: 560px;
  margin: 1.6rem auto 2.4rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-soft);
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 2.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat-num, .stat-plus {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-bright);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.stat-divider { width: 1px; height: 44px; background: var(--line); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-hint-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── Guidance marquee ── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--card-bg);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold-dim); font-style: normal; font-size: 0.8rem; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ── Panch Tatwa elements ── */
.elements { margin: 3.4rem auto 0; text-align: center; }
.elements-title {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.elements-title em { font-style: normal; color: var(--gold-bright); }
.elements-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.element {
  width: 118px;
  padding: 1.3rem 0.6rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 60px;
  background: var(--card-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.element:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 0 26px var(--gold-glow);
}
.element-glyph { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-bright); }
.element-name { font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; color: var(--text); }
.element-en { font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }

/* ── Sections ── */
.section { padding: 7rem 2rem; position: relative; }

.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner.narrow { max-width: 800px; }

.section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--gold-glow) 50%, transparent);
  opacity: 0.16;
  pointer-events: none;
}

/* ── About: emblem ── */
.emblem {
  position: relative;
  width: min(76vw, 320px);
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-circle {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: var(--emblem-bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px var(--shadow), 0 0 40px var(--gold-glow);
}
.emblem-circle img { width: 76%; height: 76%; object-fit: contain; }
.emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--gold-dim);
  opacity: 0.55;
}
.emblem-ring-outer {
  inset: 0;
  animation: emblemSpin 60s linear infinite;
}
.emblem-ring-inner {
  inset: 4.5%;
  border-style: solid;
  border-color: var(--line);
  animation: ringBreathe 5s ease-in-out infinite;
}
@keyframes emblemSpin { to { transform: rotate(360deg); } }
@keyframes ringBreathe {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

.portrait-caption {
  text-align: center;
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.portrait-caption em { font-family: var(--font-serif); color: var(--gold-bright); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4.5rem;
  align-items: center;
}

.about-copy p { margin-bottom: 1.1rem; }

.credentials { list-style: none; margin-top: 1.6rem; }
.credentials li {
  display: flex;
  gap: 0.7rem;
  padding: 0.5rem 0;
  color: var(--text);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--card-border);
}
.credentials li span { color: var(--gold); }

/* ── Services ── */
.pillar { margin-top: 4.5rem; }

.pillar-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.pillar-icon {
  font-size: 2rem;
  color: var(--gold);
  width: 64px; height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card-bg);
}
.pillar-head p { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.card:hover {
  border-color: var(--line);
  box-shadow: 0 14px 40px var(--shadow), 0 0 30px var(--gold-glow) inset;
}

.card-art {
  height: 108px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--card-border);
  background: radial-gradient(ellipse at 50% 130%, var(--gold-glow), transparent 70%);
}
.card-art svg { width: 82%; height: 84%; }

.card-body { padding: 1.5rem 1.6rem 1.8rem; }
.card-body p { font-size: 0.92rem; }

/* ── Process ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.4rem;
}
.step {
  text-align: center;
  padding: 2.4rem 1.6rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  background: linear-gradient(180deg, var(--grad-b), var(--grad-a));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.8rem;
}
.step p { font-size: 0.92rem; }

/* ── Testimonials ── */
.slider { max-width: 760px; margin: 3rem auto 0; overflow: hidden; }

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 2.5rem 2rem;
}
.slide-stars { color: var(--gold); letter-spacing: 0.3em; margin-bottom: 1.4rem; }
.slide p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.slide p em { color: var(--gold-bright); }
.slide footer {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.slide footer span { color: var(--muted); }

.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1rem;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.slider-btn:hover { border-color: var(--gold); background: var(--gold-glow); }

.slider-dots { display: flex; gap: 8px; }
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--muted);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slider-dots button.active {
  background: var(--gold);
  opacity: 1;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ── Pricing ── */
.pricing-sub {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.4rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2.6rem 2.1rem 2.4rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}
.price-card:hover {
  border-color: var(--line);
  box-shadow: 0 18px 50px var(--shadow);
}
.price-card.featured {
  border-color: var(--gold-dim);
  box-shadow: 0 18px 60px var(--shadow), 0 0 40px var(--gold-glow);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #b8952e, #d4af37 45%, #e6c65c);
  color: var(--btn-gold-text);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }

.price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
  line-height: 1.1;
}
.price-from {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.price-request { font-size: 1.7rem; padding-top: 1.05rem; }

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-card li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--card-border);
}
.price-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 0.75rem;
}
.price-card .btn { text-align: center; }

.pricing-note {
  text-align: center;
  max-width: 620px;
  margin: 2.6rem auto 0;
  font-size: 0.88rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

/* ── FAQ ── */
.faq-list { margin-top: 3rem; }

.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--text);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-marker { color: var(--gold-dim); transition: transform 0.4s ease; flex-shrink: 0; }
.faq-item[open] .faq-marker { transform: rotate(135deg); color: var(--gold-bright); }
.faq-item p { padding: 0 0.4rem 1.5rem; max-width: 92%; }

/* ── Booking ── */
.booking-sub {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.assurance {
  display: flex;
  justify-content: center;
  gap: 1rem 2.4rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.assurance span {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.booking-embed {
  margin-top: 3rem;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(212,175,55,0.14);
  box-shadow: 0 40px 110px rgba(20, 16, 10, 0.16);
  backdrop-filter: blur(22px);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.booking-panel {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: transparent;
}

.booking-form-panel {
  border-right: 1px solid var(--card-border);
}

.booking-side-panel {
  background: transparent;
}

.panel-header {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.panel-header .eyebrow {
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.panel-header h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.7vw, 1.8rem);
  line-height: 1.1;
}

.panel-copy {
  max-width: 38rem;
  color: var(--muted);
  line-height: 1.75;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form h3 { margin: 0; }
.booking-form label { display: flex; flex-direction: column; gap: 0.45rem; }
.booking-form label > span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-form label > span em { text-transform: none; letter-spacing: normal; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.booking-form select { appearance: auto; }
.booking-form select option { background: var(--bg-soft); color: var(--text); }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--muted); opacity: 0.72; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.booking-form textarea { resize: vertical; min-height: 120px; }
.booking-form .btn { border: none; cursor: pointer; margin-top: 0.4rem; width: fit-content; }
.booking-form-note { font-size: 0.78rem; text-align: center; color: var(--muted); }

.booking-side-panel {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.sched-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.22);
  box-shadow: 0 40px 100px rgba(20, 16, 10, 0.18);
  overflow: hidden;
}

.sched-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212,175,55,0.95), rgba(255,255,255,0.75));
}

.panel-header + .sched-card {
  margin-top: 0.4rem;
}

.sched-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem 1.2rem 1rem;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(212,175,55,0.14);
}

.sched-steps .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  min-height: 104px;
  text-align: center;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.sched-steps .step:hover {
  transform: translateY(-2px);
}

.sched-steps .step span {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sched-steps .step.active {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), rgba(255, 255, 255, 0.95));
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.sched-steps .step.completed {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.15);
  color: var(--text);
}

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.6rem 0.55rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(212,175,55,0.12);
}

.cal-toolbar .btn {
  min-width: 52px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.16);
  background: rgba(255,255,255,0.9);
}

.cal-toolbar .btn:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.sched-body {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(320px, 1fr);
  gap: 1.4rem;
  padding: 1.1rem 1.2rem 0;
  align-items: start;
}

.sched-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.9rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(212,175,55,0.14);
}

.cal-day {
  min-height: 70px;
  padding: 0.75rem 0.5rem;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.cal-day.off {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255,255,255,0.65);
}

.cal-day.selected {
  background: linear-gradient(180deg, rgba(212,175,55,0.22), rgba(255,255,255,0.96));
  border-color: rgba(212,175,55,0.28);
  box-shadow: 0 20px 30px rgba(212,175,55,0.12);
}

.cal-day:hover:not(.off):not(.selected) {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.98);
}

.day-dow {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.day-num {
  font-size: 1rem;
  font-weight: 700;
}

.times-pane {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-radius: 24px;
  border: 1px solid rgba(212,175,55,0.14);
  box-shadow: 0 18px 45px rgba(212,175,55,0.08);
  min-height: 320px;
}

.times-pane h4 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.times-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sched-time {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.16);
  background: rgba(255,255,255,0.96);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.sched-time:hover:not(.disabled):not(.selected) {
  transform: translateY(-1px);
  border-color: rgba(212,175,55,0.22);
  background: rgba(255,255,255,1);
}

.sched-time.selected {
  background: var(--gold);
  color: var(--btn-gold-text);
  border-color: var(--gold);
  box-shadow: 0 18px 32px rgba(212,175,55,0.16);
}

.sched-time.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sched-empty {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 950px) {
  .sched-body {
    grid-template-columns: 1fr;
  }
  .sched-right {
    order: 1;
  }
  .sched-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .times-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sched-steps {
    grid-template-columns: 1fr;
  }
  .cal-toolbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sched-body {
    grid-template-columns: 1fr;
  }
  .sched-left,
  .sched-right {
    width: 100%;
  }
  .cal-grid {
    min-width: 560px;
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }
  .cal-grid::-webkit-scrollbar {
    height: 8px;
  }
  .cal-grid::-webkit-scrollbar-thumb {
    background: rgba(212,175,55,0.28);
    border-radius: 999px;
  }
  .times-list,
  .sched-details {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .cal-day {
    min-height: 52px;
    padding: 0.55rem;
  }
  .sched-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .sched-footer .btn {
    width: 100%;
  }
  .sched-details textarea {
    min-height: 160px;
  }
}

@media (max-width: 520px) {
  .booking-embed {
    border-radius: 16px;
  }
  .sched-body {
    grid-template-columns: 1fr;
  }
  .sched-left,
  .sched-right {
    width: 100%;
  }
  .cal-grid {
    min-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.4rem;
  }
  .cal-toolbar {
    gap: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .cal-toolbar .btn {
    width: 100%;
    min-width: auto;
  }
  .times-list,
  .sched-details {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .sched-footer {
    flex-direction: column;
  }
  .sched-footer .btn {
    width: 100%;
  }
  .sched-details textarea {
    min-height: 150px;
  }
}

.cal-month {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.sched-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-pane {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 28px;
  padding: 1.45rem;
  border: 1px solid rgba(212,175,55,0.18);
  min-height: 260px;
  box-shadow: 0 18px 55px rgba(212,175,55,0.08);
}

.review-pane h4 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  color: var(--text);
}

.review-summary {
  display: grid;
  gap: 0.8rem;
}

.review-summary .review-item {
  display: grid;
  gap: 0.25rem;
}

.review-summary .review-item strong {
  font-size: 0.95rem;
  color: var(--text);
}

.review-summary .review-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.sched-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sched-details label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text);
}

.sched-details label span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.sched-details input,
.sched-details select,
.sched-details textarea {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.94);
  padding: 1rem 1.1rem;
  color: var(--text);
  box-shadow: inset 0 1px 6px rgba(0,0,0,0.04);
}

.sched-details select {
  appearance: none;
}

.sched-details textarea {
  min-height: 180px;
  resize: vertical;
  grid-column: 1 / -1;
}

.sched-details label:nth-last-child(2) {
  grid-column: span 1;
}

.sched-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem 1.4rem;
  border-top: 1px solid rgba(212,175,55,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  position: sticky;
  bottom: 0;
  z-index: 1;
}

.sched-footer .btn {
  min-width: 160px;
}

.booking-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 50% 0%, var(--gold-glow), transparent 60%);
}
.booking-placeholder-mark {
  display: inline-block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: pulseMark 3s ease-in-out infinite;
}
@keyframes pulseMark {
  0%, 100% { text-shadow: 0 0 6px var(--gold-glow); }
  50% { text-shadow: 0 0 18px var(--gold-glow), 0 0 30px var(--gold-glow); }
}
.booking-placeholder h3 { margin-bottom: 0.8rem; }
.booking-placeholder p { max-width: 440px; margin: 0 auto; }

.booking-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  margin: 1rem 1.2rem 0;
  border-radius: 18px;
  background: rgba(34, 68, 128, 0.08);
  border: 1px solid rgba(34, 68, 128, 0.18);
  color: #15315b;
  box-shadow: 0 10px 28px rgba(12, 31, 78, 0.08);
}

.booking-alert::before {
  content: '✓';
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(34, 68, 128, 0.1);
}

.admin-panel {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.12);
}

.admin-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.admin-bookings {
  display: grid;
  gap: 1rem;
}

.admin-booking {
  padding: 1.25rem 1.3rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(212,175,55,0.14);
  box-shadow: 0 18px 40px rgba(212,175,55,0.08);
}

.admin-booking h4 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.admin-booking p {
  margin: 0.35rem 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.admin-booking a {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

/* ── Simple scheduler UI (fallback when Calendly not configured) ── */
.scheduler { padding: 1.25rem 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.sched-intro { font-size: 0.95rem; color: var(--text-soft); }
.sched-controls { display:flex; gap:0.8rem; align-items:center; flex-wrap:wrap; }
.sched-date { background: var(--input-bg); border:1px solid var(--input-border); padding:0.6rem 0.8rem; border-radius:6px; color:var(--text); }
.sched-timezone { font-size:0.84rem; color:var(--muted); }
.sched-slots { display:flex; gap:0.5rem; flex-wrap:wrap; }
.sched-slot { background:transparent; border:1px solid var(--input-border); color:var(--text); padding:0.48rem 0.7rem; border-radius:8px; cursor:pointer; font-size:0.92rem; }
.sched-slot:hover { border-color:var(--gold); box-shadow:0 4px 14px var(--gold-glow); }
.sched-slot.selected { background:var(--gold); color:var(--btn-gold-text); border-color:var(--gold); }
.sched-note { font-size:0.82rem; color:var(--muted); }

/* Calendly-like week view */
.sched-toolbar { display:flex; align-items:center; gap:0.6rem; justify-content:space-between; }
.sched-week { display:flex; gap:0.45rem; align-items:center; }
.sched-day { display:flex; flex-direction:column; align-items:center; padding:0.6rem 0.55rem; border-radius:8px; cursor:pointer; min-width:72px; text-align:center; border:1px solid transparent; }
.sched-day .dow { font-size:0.78rem; color:var(--muted); }
.sched-day .dnum { font-size:1.02rem; color:var(--text); font-weight:600; }
.sched-day.active { background:var(--bg-soft); border-color:var(--input-border); box-shadow:0 6px 18px var(--shadow); }
.sched-nav { display:flex; gap:0.5rem; align-items:center; }
.sched-grid { display:grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap:0.6rem; padding-top:0.6rem; }
.sched-time { padding:0.56rem; border-radius:8px; border:1px solid var(--input-border); background:var(--input-bg); color:var(--text); cursor:pointer; text-align:center; }
.sched-time:hover { border-color:var(--gold); box-shadow:0 8px 20px var(--gold-glow); }
.sched-time.disabled { opacity:0.45; cursor:not-allowed; }
.sched-time.selected { background:var(--gold); color:var(--btn-gold-text); border-color:var(--gold); }
.sched-empty { color:var(--muted); padding:1rem; text-align:center; }

/* ── Scheduler Modal ── */
.sched-modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:1200; }
.sched-modal[aria-hidden="false"] { display:flex; }
.sched-overlay { position:absolute; inset:0; background:rgba(10,12,18,0.44); backdrop-filter:blur(6px); }
.sched-dialog { position:relative; width:min(1180px, 98%); max-height:92vh; overflow:hidden; border-radius:20px; background:linear-gradient(180deg,var(--footer-bg), var(--bg)); box-shadow:0 40px 120px rgba(0,0,0,0.45); border:1px solid rgba(255,255,255,0.04); display:flex; flex-direction:column; }
.sched-header { display:flex; justify-content:space-between; align-items:flex-start; padding:1.1rem 1.25rem; border-bottom:1px solid var(--card-border); }
.sched-header h3 { margin:0; font-size:1.6rem; line-height:1.05; }
.sched-close { background:var(--bg); border:1px solid var(--card-border); border-radius:28px; padding:0.45rem 0.6rem; font-size:0.98rem; cursor:pointer; color:var(--muted); }

.booking-fallback {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--card-border);
}
.booking-fallback p { margin-bottom: 1.1rem; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.booking-fallback-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.booking-fallback-actions .btn { padding: 0.7rem 1.5rem; font-size: 0.78rem; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.28rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-addr { font-size: 0.92rem; padding-top: 0.28rem; }

.footer-bar {
  border-top: 1px solid var(--card-border);
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bar p { font-size: 0.8rem; }
.footer-om { color: var(--gold-dim); font-size: 0.9rem !important; }


/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wheel-rotor, .wheel-rotor-reverse, .emblem-ring, .scroll-hint-dot,
  .marquee-track, .booking-placeholder-mark, h1 em, h2 em { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .price-cards { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card.featured { order: -1; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-form-panel { border-right: none; border-bottom: 1px solid var(--card-border); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}

@media (max-width: 720px) {
  .booking-embed {
    border-radius: 16px;
  }

  .booking-panel {
    padding: 1.6rem;
  }

  .panel-copy {
    max-width: 100%;
  }

  .sched-body {
    grid-template-columns: 1fr;
  }

  .sched-left,
  .sched-right {
    width: 100%;
  }

  .cal-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .cal-day {
    min-height: 52px;
    padding: 0.55rem;
  }

  .sched-details {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .sched-footer {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}


@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .section { padding: 5rem 1.4rem; }
  .hero { padding: 6.5rem 1.4rem 5rem; }
  .hero-stats { gap: 1.6rem; margin-top: 3.6rem; }
  .stat-divider { display: none; }
  .stat-num, .stat-plus { font-size: 1.7rem; }
  .slide p { font-size: 1.15rem; }
  .footer-bar { justify-content: center; text-align: center; }
  .brand-logo { width: 38px; height: 38px; }
}
