/* ============================================================
   PATIENT X — Shared Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* ---- Variables ---- */
:root {
  --bg:      #120a1e;
  --bg2:     #1a0d2e;
  --primary: #2d1b4e;
  --accent:  #c084fc;
  --glow:    #9333ea;
  --blood:   #c0392b;
  --iris:    #dc2626;
  --text:    #e8d5f5;
  --muted:   #7c5a9e;
  --rings:   #2a1040;
  --border:  rgba(192,132,252,0.15);
  --glass:   rgba(45,27,78,0.55);
  --trans:   0.3s ease;
}

/* ---- Custom Cursor ---- */
* { cursor: none !important; }
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--iris);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  left: -20px; top: -20px;
  box-shadow: 0 0 8px 3px rgba(220,38,38,0.5);
  transition: opacity 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 26px; height: 26px;
  border: 1.5px solid rgba(220,38,38,0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  left: -40px; top: -40px;
  transition: width 0.28s ease, height 0.28s ease, border-color 0.28s ease, opacity 0.2s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--glow); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---- Selection ---- */
::selection { background: var(--glow); color: #fff; }

/* ---- Focus ---- */
*:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--accent); }
a { color: inherit; text-decoration: none; }

/* ---- Noise Overlay ---- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* ---- Pulse Rings Background ---- */
.rings-bg {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  width: 0; height: 0;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(42, 16, 64, 0.7);
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  animation: ringPulse 12s ease-out infinite;
}
.ring:nth-child(1) { animation-delay: 0s; }
.ring:nth-child(2) { animation-delay: 2.4s; }
.ring:nth-child(3) { animation-delay: 4.8s; }
.ring:nth-child(4) { animation-delay: 7.2s; }
.ring:nth-child(5) { animation-delay: 9.6s; }
@keyframes ringPulse {
  0%   { width: 40px;   height: 40px;   opacity: 0.7; }
  100% { width: 1600px; height: 1600px; opacity: 0; }
}

/* ---- Page wrapper ---- */
.page-wrapper { position: relative; z-index: 2; min-height: 100vh; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--trans), backdrop-filter var(--trans), padding var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: rgba(26, 13, 46, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 5vw;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; z-index: 2;
}
.nav-brand img { height: 40px; width: 40px; object-fit: contain; display: block; border-radius: 50%; }
.nav-brand-text {
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 5px;
  color: var(--text); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
  position: relative;
  transition: color var(--trans);
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-links a:hover    { color: var(--accent); }
.nav-links a.active   { color: var(--accent); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 2;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--accent);
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed; top: 0; right: 0;
  width: min(280px, 80vw); height: 100vh;
  background: rgba(18, 10, 30, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 850;
  padding: 88px 36px 40px;
  display: flex; flex-direction: column; gap: 28px;
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
  transition: color var(--trans);
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--accent); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 840;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative; z-index: 2;
  background: var(--bg2);
  border-top: 1px solid rgba(42,16,64,0.9);
  padding: 64px 5vw 36px;
  text-align: center;
}
.footer-psi {
  font-size: 64px; line-height: 1;
  color: var(--glow); opacity: 0.18;
  margin-bottom: 20px;
  display: block;
  animation: psiBreath 4s ease-in-out infinite;
}
@keyframes psiBreath {
  0%,100% { opacity: 0.12; text-shadow: none; }
  50%     { opacity: 0.28; text-shadow: 0 0 40px rgba(147,51,234,0.4); }
}
.footer-name {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 5px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic; font-size: 17px;
  color: var(--muted); opacity: 0.6;
  margin-bottom: 28px;
}
.footer-social {
  display: flex; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all var(--trans);
  border-radius: 2px;
}
.footer-social a:hover {
  border-color: var(--glow);
  color: var(--accent);
  box-shadow: 0 0 18px rgba(147,51,234,0.3);
}
.footer-social a svg {
  display: block;
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 7px rgba(147,51,234,0.18));
  transition: transform var(--trans), filter var(--trans);
}
.footer-social a:hover svg {
  transform: translateY(-1px) scale(1.08);
  filter: drop-shadow(0 0 10px rgba(192,132,252,0.5));
}
.footer-social a::before { display: none; }
.footer-copy {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 3px;
  color: rgba(124,90,158,0.35); text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  padding: 15px 38px;
  border: none; cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  white-space: nowrap;
}
.btn::after {
  content: "";
  width: 13px;
  height: 13px;
  display: none;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-right) center / contain no-repeat;
  mask: var(--icon-arrow-right) center / contain no-repeat;
  transition: transform var(--trans);
}
.btn::before {
  content: "";
  width: 13px;
  height: 13px;
  display: none;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-right) center / contain no-repeat;
  mask: var(--icon-arrow-right) center / contain no-repeat;
  transform: rotate(180deg);
  transition: transform var(--trans);
}
.btn[href*="book"],
.btn[id$="-next"] { padding-right: 32px; }
.btn[href*="book"]::after,
.btn[id$="-next"]::after { display: inline-block; }
.btn[href*="book"]:hover::after,
.btn[id$="-next"]:hover::after { transform: translateX(3px); }
.btn[onclick^="goStep"]::before { display: inline-block; }
.btn[onclick^="goStep"]:hover::before { transform: rotate(180deg) translateX(3px); }
.btn-primary {
  background: transparent;
  border: 2px solid var(--glow);
  color: var(--accent);
  box-shadow: 0 0 22px rgba(147,51,234,0.25), inset 0 0 22px rgba(147,51,234,0.05);
}
.btn-primary:hover {
  background: var(--glow);
  color: #fff;
  box-shadow: 0 0 44px rgba(147,51,234,0.6);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(192,132,252,0.3);
  color: var(--muted);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-blood {
  background: transparent;
  border: 2px solid var(--blood);
  color: #e08080;
  box-shadow: 0 0 18px rgba(192,57,43,0.15);
}
.btn-blood:hover {
  background: var(--blood);
  color: #fff;
  box-shadow: 0 0 40px rgba(192,57,43,0.5);
}
.btn-sm { font-size: 10px; padding: 10px 24px; letter-spacing: 2px; }

/* ============================================================
   GLASS CARDS
   ============================================================ */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  transform: scaleX(0); transition: transform 0.4s ease;
}
.glass-card:hover {
  border-color: rgba(147,51,234,0.4);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 30px rgba(147,51,234,0.1);
}
.glass-card:hover::before { transform: scaleX(1); }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: #0d0618;
  border: 1px solid rgba(192,132,252,0.2);
  color: var(--text);
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--glow);
  box-shadow: 0 0 0 2px rgba(147,51,234,0.15), 0 0 24px rgba(147,51,234,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(124,90,158,0.5); }
.form-textarea { resize: vertical; min-height: 120px; }
.field-error {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 2px;
  color: var(--blood);
  margin-top: 6px; min-height: 16px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.section {
  padding: 110px 5vw;
  position: relative; z-index: 2;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 7px;
  color: var(--glow); text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text); line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-family: 'Crimson Text', serif;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 600px;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--glow), var(--accent));
  margin-bottom: 60px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.d5 { transition-delay: 0.5s; }

/* ============================================================
   INLINE SVG ICONS (reused across pages)
   ============================================================ */
.icon-inline { display: inline-block; vertical-align: middle; }
.site-mark,
.t-icon::before,
.footer-social a::before,
.feature-icon::before,
.info-icon::before,
.social-pill::before,
.map-pin-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: currentColor;
  -webkit-mask: var(--icon-mask) center / contain no-repeat;
  mask: var(--icon-mask) center / contain no-repeat;
}
:root {
  --icon-eye: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5C6.8 5 3.1 9.1 2 12c1.1 2.9 4.8 7 10 7s8.9-4.1 10-7c-1.1-2.9-4.8-7-10-7Zm0 11.2A4.2 4.2 0 1 1 12 7.8a4.2 4.2 0 0 1 0 8.4Zm0-2.1a2.1 2.1 0 1 0 0-4.2 2.1 2.1 0 0 0 0 4.2Z'/%3E%3C/svg%3E");
  --icon-clock: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1.3 5h-2.1v6l5 3 .9-1.7-3.8-2.2V7Z'/%3E%3C/svg%3E");
  --icon-team: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm6.8 8H2.2c.6-4.2 3.2-6.5 6.8-6.5s6.2 2.3 6.8 6.5ZM17 12a3.5 3.5 0 0 1-2.4-6.1A4.9 4.9 0 0 1 14 8.2c0 1.6-.7 3-1.8 3.9 1.3.7 2.4 1.7 3.2 3 2.4.5 4.1 2.2 4.6 4.9h1.8c-.5-4.8-3.1-7.5-4.8-8Z'/%3E%3C/svg%3E");
  --icon-alert: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 1.8 20.5h20.4L12 2Zm1.1 14.5h-2.2v2.1h2.2v-2.1Zm0-7.6h-2.2v6h2.2v-6Z'/%3E%3C/svg%3E");
  --icon-social: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3c-4.8 0-8.5 3.9-8.5 8.6 0 3.7 2.2 6.8 5.3 8.1.4.1.6-.2.6-.5v-1.6c-2.2.5-2.7-1.1-2.7-1.1-.4-.9-.9-1.2-.9-1.2-.7-.5.1-.5.1-.5.8.1 1.2.8 1.2.8.7 1.2 1.8.8 2.3.6.1-.5.3-.8.5-1-1.8-.2-3.6-.9-3.6-3.9 0-.9.3-1.6.8-2.2-.1-.2-.4-1 .1-2.2 0 0 .7-.2 2.2.8.6-.2 1.3-.3 2-.3s1.4.1 2 .3c1.5-1 2.2-.8 2.2-.8.5 1.2.2 2 .1 2.2.5.6.8 1.3.8 2.2 0 3-1.8 3.7-3.6 3.9.3.2.6.7.6 1.5v2.5c0 .3.2.6.7.5a8.6 8.6 0 0 0 5.3-8.1C20.5 6.9 16.8 3 12 3Z'/%3E%3C/svg%3E");
  --icon-pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.8a2.8 2.8 0 1 1 0-5.6 2.8 2.8 0 0 1 0 5.6Z'/%3E%3C/svg%3E");
  --icon-arrow-right: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.5 4.5 21 12l-7.5 7.5-1.4-1.4 5.1-5.1H3v-2h14.2l-5.1-5.1 1.4-1.4Z'/%3E%3C/svg%3E");
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 768px) {
  #navbar { padding: 14px 20px; }
  #navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 80px 20px; }
  .section-title { font-size: clamp(24px, 8vw, 36px); }
  .btn { padding: 13px 28px; font-size: 10px; }
  
  /* Hide custom cursor on mobile */
  #cursor-dot, #cursor-ring { display: none; }
}
@media (min-width: 769px) {
  .nav-drawer { display: none !important; }
  .drawer-overlay { display: none !important; }
}

/* ============================================================
   HOME — intro, hero, teaser (index)
   ============================================================ */
#intro {
  position: fixed; inset: 0;
  background: #0b0617;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s ease;
}
#intro.fade-out { opacity: 0; pointer-events: none; }
#intro-svg {
  width: min(420px, 86vw);
  height: min(420px, 86vw);
  overflow: visible;
}
#arms-group {
  opacity: 0;
  transition: opacity 0.7s ease;
}
#skip-btn {
  position: fixed; bottom: 28px; right: 32px;
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(124,90,158,0.35); background: none; border: none;
  z-index: 9001; transition: color 0.3s;
}
#skip-btn:hover { color: var(--muted); }

#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 130px 5vw 80px;
  position: relative; z-index: 2;
}
#hero-eye-svg {
  width: min(380px, 76vw);
  margin-bottom: 40px;
  overflow: visible;
}
@keyframes hIrisRoam {
  0%   { transform: translate(0px,   0px); }
  14%  { transform: translate(-9px, -4px); }
  30%  { transform: translate(7px,  -7px); }
  46%  { transform: translate(11px,  3px); }
  62%  { transform: translate(2px,   8px); }
  78%  { transform: translate(-7px,  5px); }
  92%  { transform: translate(-10px,-2px); }
  100% { transform: translate(0px,   0px); }
}
@keyframes hGlowBreathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.78; }
}
#hero-iris-g {
  animation: hIrisRoam 10s ease-in-out infinite, hGlowBreathe 3.5s ease-in-out infinite;
}
@keyframes hRingRot { to { transform: rotate(360deg); } }
#hero-red-ring {
  transform-box: fill-box; transform-origin: center;
  animation: hRingRot 28s linear infinite;
}
@keyframes hOuterRingPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.85; }
}
#hero-outer-ring { animation: hOuterRingPulse 2.5s ease-in-out infinite; }
.hero-tagline {
  font-family: 'Crimson Text', serif; font-style: italic;
  font-size: clamp(18px, 2.4vw, 25px);
  color: var(--muted); letter-spacing: 1.5px; margin-bottom: 10px;
}
.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(9px, 1vw, 11px); letter-spacing: 9px; text-transform: uppercase;
  color: rgba(124,90,158,0.38); margin-bottom: 52px;
}
.hero-ctas { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(124,90,158,0.32); pointer-events: none;
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  animation: scrollBounce 2.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { opacity: .32; transform: translateX(-50%) translateY(0); }
  50%     { opacity: .65; transform: translateX(-50%) translateY(8px); }
}

#teaser {
  padding: 0 5vw 110px;
  position: relative; z-index: 2;
}
.teaser-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.teaser-card { text-align: center; }
.t-icon {
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--accent);
  line-height: 1;
  border: 1px solid rgba(192,132,252,0.18);
  background: radial-gradient(circle at 50% 35%, rgba(192,132,252,0.15), rgba(45,27,78,0.18) 62%, rgba(13,6,24,0.7));
  box-shadow: inset 0 0 24px rgba(147,51,234,0.08), 0 0 18px rgba(147,51,234,0.08);
}
.t-icon::before {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(192,132,252,0.35));
}
.teaser-card:nth-child(1) .t-icon::before { --icon-mask: var(--icon-clock); }
.teaser-card:nth-child(2) .t-icon::before { --icon-mask: var(--icon-team); }
.teaser-card:nth-child(3) .t-icon::before { --icon-mask: var(--icon-alert); }
.t-title { font-family:'Cinzel',serif; font-size:12px; letter-spacing:4px; color:var(--accent); text-transform:uppercase; margin-bottom:8px; }
.t-desc { color: var(--muted); font-size: 16px; }

@media (max-width: 768px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  #hero-eye-svg { width: min(300px, 84vw); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.page-hero {
  padding: 180px 5vw 100px;
  text-align: center;
  position: relative; z-index: 2;
  border-bottom: 1px solid rgba(42,16,64,0.6);
}
.page-hero .section-title { font-size: clamp(36px, 6vw, 72px); margin-bottom: 12px; }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text .body-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text); line-height: 1.8;
  margin-bottom: 20px;
}
.story-text .body-copy {
  font-size: 17px;
  color: var(--muted); line-height: 1.9;
}
.story-photo-box {
  aspect-ratio: 4/3;
  background: var(--primary);
  border: 1px dashed rgba(124,90,158,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  position: relative; overflow: hidden;
}
.story-photo-box::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 12px,
    rgba(42,16,64,0.15) 12px, rgba(42,16,64,0.15) 24px
  );
}
.photo-box-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 4px;
  color: rgba(124,90,158,0.5); text-transform: uppercase;
  z-index: 1;
}
.photo-box-eye { z-index: 1; opacity: 0.35; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
}
.feature-item {
  background: rgba(45,27,78,0.3);
  padding: 32px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  border: 1px solid transparent;
  transition: all 0.35s ease;
}
.feature-item:hover {
  background: rgba(45,27,78,0.6);
  border-color: rgba(147,51,234,0.2);
}
.feature-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(192,132,252,0.16);
  background: rgba(13,6,24,0.45);
  box-shadow: inset 0 0 18px rgba(147,51,234,0.08);
  transition: color var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.feature-item:hover .feature-icon {
  color: #f0d8ff;
  border-color: rgba(192,132,252,0.38);
  box-shadow: inset 0 0 22px rgba(147,51,234,0.14), 0 0 20px rgba(147,51,234,0.16);
  transform: translateY(-2px);
}
.feature-icon svg {
  display: block;
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 7px rgba(192,132,252,0.28));
}
.feature-icon::before { display: none; }
.feature-label {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 4px;
}
.feature-desc { color: var(--muted); font-size: 15px; }

.warning-banner {
  background: rgba(139,0,0,0.12);
  border-top: 1px solid rgba(192,57,43,0.3);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  padding: 24px 5vw;
  text-align: center;
  position: relative; z-index: 2;
}
.warning-text {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 2.5px;
  color: rgba(224,128,128,0.7);
  text-transform: uppercase;
  max-width: 900px; margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero { padding: 140px 20px 80px; }
}

/* ============================================================
   BOOK
   ============================================================ */
.booking-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.progress-bar {
  display: flex; align-items: center;
  margin-bottom: 56px;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1;
  flex: 1;
}
.progress-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 18px; left: 50%;
  width: 100%; height: 1px;
  background: rgba(192,132,252,0.15);
  z-index: 0;
}
.step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(192,132,252,0.2);
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 12px;
  color: rgba(124,90,158,0.5);
  transition: all 0.4s ease;
  position: relative; z-index: 1;
  box-shadow: inset 0 0 14px rgba(147,51,234,0.05);
}
.step-label {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 2px;
  color: rgba(124,90,158,0.4); text-transform: uppercase;
  white-space: nowrap; transition: color 0.4s;
}
.progress-step.active .step-circle {
  border-color: var(--glow);
  background: rgba(147,51,234,0.2);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(147,51,234,0.4);
}
.progress-step.active .step-label { color: var(--accent); }
.progress-step.done .step-circle {
  border-color: var(--glow);
  background: var(--glow);
  color: #fff;
  font-size: 0;
}
.progress-step.done .step-circle::before {
  content: "";
  width: 15px;
  height: 15px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.2 16.6-4.1-4.1-1.4 1.4 5.5 5.5L20.7 7.9l-1.4-1.4L9.2 16.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m9.2 16.6-4.1-4.1-1.4 1.4 5.5 5.5L20.7 7.9l-1.4-1.4L9.2 16.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.progress-step.done .step-label { color: var(--glow); }

.step-panel {
  display: none;
  animation: stepSlideIn 0.4s cubic-bezier(0.4,0,0.2,1);
}
.step-panel.active { display: block; }
@keyframes stepSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cal-wrapper {
  background: rgba(45,27,78,0.35);
  border: 1px solid var(--border);
  padding: 28px;
}
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month-label {
  font-family: 'Cinzel', serif;
  font-size: 14px; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
}
.cal-nav-btn {
  background: none;
  border: 1px solid rgba(192,132,252,0.2);
  color: var(--accent);
  width: 34px; height: 34px;
  cursor: pointer;
  font-size: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.cal-nav-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: var(--icon-arrow-right) center / contain no-repeat;
  mask: var(--icon-arrow-right) center / contain no-repeat;
}
#cal-prev::before { transform: rotate(180deg); }
.cal-nav-btn:hover { background: rgba(147,51,234,0.2); border-color: var(--glow); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 1px;
  color: rgba(124,90,158,0.5);
  text-align: center; padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 12px;
  color: var(--text);
  cursor: pointer; border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}
.cal-day:hover:not(.empty) {
  border-color: rgba(147,51,234,0.4);
  background: rgba(147,51,234,0.1);
  color: var(--accent);
}
.cal-day.today { color: var(--accent); font-weight: 700; }
.cal-day.selected {
  background: rgba(147,51,234,0.25);
  border-color: var(--glow);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(147,51,234,0.35);
}
.cal-day.empty { cursor: default; pointer-events: none; }
.cal-day.past  { visibility: hidden; pointer-events: none; }
.selected-date-hint {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 2px;
  color: var(--accent); margin-top: 20px;
  min-height: 20px; text-transform: uppercase;
}

.slots-header {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 20px;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}
.slot-card {
  padding: 18px 12px;
  text-align: center;
  border: 1px solid rgba(192,132,252,0.2);
  background: rgba(45,27,78,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.slot-card:hover {
  border-color: var(--glow);
  background: rgba(147,51,234,0.15);
  box-shadow: 0 0 20px rgba(147,51,234,0.2);
}
.slot-card.selected {
  background: rgba(147,51,234,0.25);
  border-color: var(--glow);
  box-shadow: 0 0 24px rgba(147,51,234,0.4);
}
.slot-time {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 2px;
  color: var(--text);
  display: block; margin-bottom: 4px;
}
.slot-card.selected .slot-time { color: var(--accent); }
.slot-card.booked {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
  border-color: rgba(192,57,43,0.3);
  background: rgba(192,57,43,0.08);
}
.slot-card.booked .slot-time { color: rgba(226,217,243,0.4); text-decoration: line-through; }
.slot-card.booked .slot-status { color: var(--blood); }
.slot-status {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 2px;
  color: var(--glow); text-transform: uppercase;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stepper-wrap { display: flex; align-items: center; gap: 0; width: fit-content; }
.stepper-btn {
  width: 44px; height: 48px;
  background: #0d0618;
  border: 1px solid rgba(192,132,252,0.2);
  color: var(--accent); font-size: 20px;
  cursor: pointer; transition: all var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.stepper-btn:hover { background: rgba(147,51,234,0.2); border-color: var(--glow); }
.stepper-val {
  width: 64px; height: 48px;
  background: #0d0618;
  border-top: 1px solid rgba(192,132,252,0.2);
  border-bottom: 1px solid rgba(192,132,252,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 20px;
  color: var(--text);
}

.confirm-card {
  background: rgba(13,6,24,0.8);
  border: 1px dashed rgba(192,132,252,0.2);
  padding: 36px;
  position: relative;
}
.confirm-card-header {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 5px;
  color: var(--accent); text-transform: uppercase;
  text-align: center; margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(192,132,252,0.15);
}
.confirm-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,16,64,0.5);
}
.confirm-row:last-child { border-bottom: none; }
.confirm-key {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 3px;
  color: rgba(124,90,158,0.6); text-transform: uppercase;
}
.confirm-val {
  font-family: 'Courier New', monospace;
  font-size: 14px; color: var(--text);
  text-align: right; max-width: 60%;
}

#c-req-row { display: none; }
#c-req-row.is-visible { display: flex; }

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 36px; gap: 12px;
}
.step-nav > * + * { margin-left: auto; }
.step-nav--narrow { margin-top: 24px; }

#success-overlay {
  position: fixed; inset: 0;
  background: rgba(13,6,24,0.97);
  z-index: 9500;
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
#success-overlay.show { display: flex; animation: fadeInOverlay 0.5s ease; }
.success-eye-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.success-glow {
  position: absolute;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,0,0.3) 0%, transparent 70%);
  filter: blur(16px);
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.3); }
}
.success-eye-svg { filter: drop-shadow(0 0 10px rgba(139,0,0,0.5)); }
.success-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 3.5vw, 32px);
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--accent); margin: 24px 0 12px;
}
.success-sub {
  color: var(--muted); font-size: 18px;
  max-width: 420px; margin-bottom: 8px;
}
.success-sub--muted {
  font-size: 15px;
  margin-top: 4px;
  opacity: 0.5;
}
.success-email { color: var(--accent); font-style: italic; }
.success-return { margin-top: 36px; }
.success-psi {
  font-size: 64px; color: var(--glow); opacity: 0.1;
  position: absolute; bottom: 36px;
}
.loading-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(192,132,252,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-confirm.loading .btn-text { display: none; }
.btn-confirm.loading .loading-spinner { display: inline-block; }

@media (max-width: 768px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .step-label { display: none; }
  .progress-step:not(:last-child)::after { display: none; }
  .confirm-card { padding: 24px 16px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-info-block { margin-bottom: 36px; }
.info-category {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 5px;
  color: var(--glow); text-transform: uppercase;
  margin-bottom: 20px; display: block;
}
.info-row {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
  color: var(--muted); font-size: 17px;
}
.info-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  color: var(--accent);
  opacity: 0.86;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,132,252,0.14);
  background: rgba(13,6,24,0.45);
}
.info-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 6px rgba(192,132,252,0.25));
}
.info-icon::before { display: none; }
.info-label {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 3px;
  color: rgba(124,90,158,0.5); text-transform: uppercase;
  display: block; margin-bottom: 2px;
}
.info-value { color: var(--text); }
.info-placeholder { color: rgba(124,90,158,0.4); font-style: italic; }
.info-hours-line { color: var(--muted); font-size: 15px; }

.social-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 4px;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(192,132,252,0.15);
  color: var(--muted); font-size: 15px;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all var(--trans);
  background: rgba(45,27,78,0.2);
}
.social-pill:hover {
  border-color: var(--glow);
  color: var(--accent);
  background: rgba(147,51,234,0.1);
  box-shadow: 0 0 16px rgba(147,51,234,0.2);
}
.social-pill svg {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(147,51,234,0.18));
}
.social-pill::before { display: none; }

.map-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: rgba(45,27,78,0.25);
  border: 1px dashed rgba(124,90,158,0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  margin-top: 36px; margin-bottom: 8px;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 30px,
    rgba(42,16,64,0.1) 30px, rgba(42,16,64,0.1) 31px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 30px,
    rgba(42,16,64,0.1) 30px, rgba(42,16,64,0.1) 31px
  );
}
.map-pin-icon {
  font-size: 0;
  z-index: 1;
  opacity: 0.45;
  color: var(--accent);
  line-height: 1;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(192,132,252,0.16);
  background: rgba(13,6,24,0.34);
}
.map-pin-icon::before {
  --icon-mask: var(--icon-pin);
  width: 31px;
  height: 31px;
  filter: drop-shadow(0 0 10px rgba(192,132,252,0.32));
}
.map-label {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 4px;
  color: rgba(124,90,158,0.4); text-transform: uppercase;
  z-index: 1;
}

.contact-form-title {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 6px;
  color: var(--glow); text-transform: uppercase;
  margin-bottom: 32px; display: block;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(45,27,78,0.4);
  border: 1px solid rgba(147,51,234,0.3);
  border-left: 3px solid var(--glow);
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
  margin-top: 20px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }

#cf-spinner {
  display: none;
  animation: spin 0.7s linear infinite;
}
#cf-submit.is-loading #cf-spinner { display: inline-block; }
#cf-submit.is-loading #cf-btn-text { display: none; }

.btn-full { width: 100%; }

.form-label .optional {
  opacity: 0.4;
  font-size: 0.85em;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .page-hero { padding: 140px 20px 80px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(42,16,64,0.8);
  position: relative;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(147,51,234,0.25);
}
.faq-item.open::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--glow), transparent);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 26px 48px 26px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-align: left; gap: 20px;
  font-family: 'Cinzel', serif;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.faq-question:hover { color: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(192,132,252,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0; line-height: 1;
  transition: all 0.4s ease;
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  box-shadow: 0 0 6px rgba(192,132,252,0.2);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq-toggle::after { transform: rotate(90deg); }
.faq-item.open .faq-toggle {
  background: rgba(147,51,234,0.2);
  border-color: var(--glow);
  color: var(--accent);
  transform: translateY(-50%);
}
.faq-item.open .faq-toggle::after { transform: rotate(0deg); opacity: 0; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.45s ease;
  color: var(--muted);
  font-size: 17px; line-height: 1.85;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 28px;
}

.faq-category {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 5px;
  color: rgba(147,51,234,0.4);
  text-transform: uppercase;
  padding: 36px 20px 8px;
  display: block;
}
.faq-category:first-child { padding-top: 0; }

.faq-footer-cta {
  margin-top: 60px;
  text-align: center;
}
.faq-footer-text {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 17px;
}

/* ============================================================
   UTILITIES (replacing inline styles)
   ============================================================ */
.text-accent { color: var(--accent); }

.section-sub--centered {
  margin-left: auto;
  margin-right: auto;
}
.section-sub--hero-tight {
  margin: 0 auto 0;
}

.story-h2 { font-size: clamp(24px, 3vw, 38px); }
.body-copy--gap { margin-top: 16px; }
.story-cta { margin-top: 36px; }

.section--no-top-pad { padding-top: 0; }
.session-overview-title {
  font-size: clamp(22px, 2.5vw, 34px);
  margin-bottom: 40px;
}

.section--booking-top { padding-top: 160px; }
.section-sub--compact { margin-bottom: 40px; }
