/* =============================================
   ISAI ROOM — BRAND STYLESHEET (v2 + Animations)
   ============================================= */

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.loader-wordmark {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}
.loader-bar {
  width: 180px;
  height: 1px;
  background: rgba(198,169,128,0.2);
  border-radius: 1px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderFill {
  0%   { width: 0; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ============================================
   LOGO / NAV WORDMARK
   ============================================ */

/* ============================================
   ENTRANCE ANIMATIONS
   ============================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   MARQUEE STRIP (replaces old .strip-inner)
   ============================================ */

:root {
  --teal:       #164551;
  --teal-dark:  #0D2E38;
  --teal-mid:   #1E5E6E;
  --gold:       #C6A980;
  --gold-lite:  #DEC9A5;
  --gold-dark:  #A8895F;
  --cream:      #FDFAF4;
  --cream-mid:  #F2EDE3;
  --dark:       #1A1A1A;
  --mid:        #4A4A4A;
  --light:      #888888;
  --white:      #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1140px;
  --gutter: 2rem;
  --radius: 2px;
  --transition: 0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.label.light { color: var(--gold-lite); }
.label.centered { text-align: center; }

.centered { text-align: center; }
.light { color: var(--white); }
.light-sub { color: rgba(255,255,255,0.75); text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 6rem var(--gutter);
}
.section.bg-teal  { background: var(--teal); color: var(--white); }
.section.bg-cream { background: var(--cream-mid); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-gold {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-ghost:hover { background: var(--teal); color: var(--white); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { border-color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--teal-dark); }

.btn.full-width { width: 100%; text-align: center; }

/* ---- LINK ARROW ---- */
.link-arrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition);
  margin-top: 0.5rem;
}
.link-arrow:hover { color: var(--gold-dark); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(22, 69, 81, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198, 169, 128, 0.2);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a.active { border-bottom: 1px solid var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--teal-dark) !important;
  border-radius: var(--radius) !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(30, 94, 110, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(198, 169, 128, 0.08) 0%, transparent 50%),
    var(--teal-dark);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem var(--gutter);
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-dot { color: var(--gold); }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================
   STRIP + MARQUEE
   ============================================ */
.strip {
  background: var(--teal);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.marquee-content span { padding: 0 1.4rem; }
.strip-divider { color: var(--gold) !important; opacity: 0.7; padding: 0 0.3rem !important; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.marquee-track:hover .marquee-content { animation-play-state: paused; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) var(--gutter) 5rem;
  background: var(--teal-dark);
}
.page-hero h1 { color: var(--white); }
.page-hero-sub {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-top: 0.75rem;
}

/* ============================================
   PHILOSOPHY (HOME)
   ============================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-text h2 { margin-bottom: 1.25rem; }
.philosophy-text p { margin-bottom: 1rem; }

.philosophy-card {
  background: var(--teal);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
}
.philosophy-card-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.philosophy-card-attr {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
}

.philosophy-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.philosophy-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(22, 69, 81, 0.15);
  border-radius: var(--radius);
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}

/* ============================================
   EXPECT CARDS (HOME)
   ============================================ */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.expect-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(22, 69, 81, 0.12);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.expect-card:hover { border-color: var(--gold); }
.expect-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.expect-card h3 { color: var(--teal); margin-bottom: 0.75rem; }
.expect-card p { font-size: 0.9rem; }

/* ============================================
   EVENT CTA (HOME + ABOUT)
   ============================================ */
.event-cta { background: var(--teal); }
.event-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.event-cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.event-cta-inner p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.event-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOUNDING TEASER (HOME)
   ============================================ */
.founding { background: var(--cream-mid); }
.founding-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.founding-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.founding-inner h2 { margin-bottom: 1rem; }
.founding-inner p { margin-bottom: 1.5rem; }

/* ============================================
   ABOUT — PROSE GRID
   ============================================ */
.prose-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 4rem;
  align-items: start;
}
.prose-sidebar { position: sticky; top: 6rem; }
.sidebar-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.75rem;
}
.prose-body h2 { margin-bottom: 1.5rem; }
.prose-body p { font-size: 1rem; margin-bottom: 1.25rem; }

.pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--teal);
  margin: 2rem 0;
  background: var(--cream-mid);
}

/* ============================================
   PRINCIPLES GRID (ABOUT)
   ============================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.principle {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
}
.principle-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1rem;
}
.principle h3 { color: var(--white); margin-bottom: 0.75rem; }
.principle p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

/* ============================================
   FORMAT GRID (ABOUT)
   ============================================ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.format-item { text-align: center; padding: 1.5rem 1rem; }
.format-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}
.format-item p { font-size: 0.88rem; }

/* ============================================
   EVENTS PAGE
   ============================================ */
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

.event-detail-row {
  display: flex;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(22, 69, 81, 0.1);
  align-items: baseline;
}
.detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  min-width: 100px;
  flex-shrink: 0;
}
.detail-value { font-size: 0.95rem; color: var(--dark); }
.detail-value em { font-style: italic; color: var(--light); }

.ticket-card {
  background: var(--teal);
  padding: 2.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
}
.ticket-edition {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ticket-price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ticket-price span { font-size: 1.2rem; font-family: var(--font-sans); color: rgba(255,255,255,0.5); }
.ticket-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.75rem;
}
.ticket-includes { margin-bottom: 1.75rem; }
.ticket-includes li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticket-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 0.75rem;
}

.founding-teaser-card {
  background: var(--cream-mid);
  padding: 1.75rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}
.founding-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.founding-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--teal);
  margin: 0.75rem 0 1.25rem;
}
.founding-teaser-card p { font-size: 0.88rem; margin-bottom: 0; }

/* Night grid */
.night-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.night-item { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); }
.night-time {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.night-item p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

/* FAQ */
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(22, 69, 81, 0.12); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 1.5rem;
}
.faq-a p { font-size: 0.92rem; }
.faq-a a { color: var(--teal); border-bottom: 1px solid var(--gold); }

/* ============================================
   MEDIA PAGE
   ============================================ */
.video-wrapper {
  max-width: 860px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 169, 128, 0.2);
}
.video-placeholder-inner { text-align: center; color: var(--white); padding: 2rem; }
.video-play-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; opacity: 0.8; }
.video-placeholder-inner p { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.video-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5) !important; }
.video-sub a { color: var(--gold); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.g1 { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.g2 { background: linear-gradient(135deg, #1a3a45 0%, #0f2a35 100%); }
.g3 { background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal) 100%); }
.g4 { background: linear-gradient(135deg, #2a4f5e 0%, var(--teal-dark) 100%); }
.g5 { background: linear-gradient(135deg, #163540 0%, #0a2030 100%); }
.g6 { background: linear-gradient(135deg, var(--teal) 0%, #1c4d5c 100%); }

.gallery-item::before {
  content: '◎';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(198, 169, 128, 0.15);
  transition: all var(--transition);
}
.gallery-item:hover::before { color: rgba(198, 169, 128, 0.35); transform: translate(-50%, -50%) scale(1.2); }

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(13, 46, 56, 0.85) 0%, transparent 100%);
  transform: translateY(4px);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.gallery-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--light);
  margin-top: 1.5rem;
}

/* Audio card */
.audio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.audio-text h2 { margin-bottom: 1.25rem; }
.audio-text p { margin-bottom: 1rem; }

.audio-card {
  background: var(--teal);
  padding: 2.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.audio-waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-bottom: 1.5rem;
}
.audio-waveform span {
  flex: 1;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 2px;
  animation: wave 1.8s ease-in-out infinite;
}
.audio-waveform span:nth-child(1) { height: 40%; animation-delay: 0s; }
.audio-waveform span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.audio-waveform span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.audio-waveform span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.audio-waveform span:nth-child(5) { height: 80%; animation-delay: 0.4s; }
.audio-waveform span:nth-child(6) { height: 50%; animation-delay: 0.5s; }
.audio-waveform span:nth-child(7) { height: 90%; animation-delay: 0.6s; }
.audio-waveform span:nth-child(8) { height: 65%; animation-delay: 0.7s; }
.audio-waveform span:nth-child(9) { height: 45%; animation-delay: 0.8s; }
.audio-waveform span:nth-child(10) { height: 75%; animation-delay: 0.9s; }
.audio-waveform span:nth-child(11) { height: 55%; animation-delay: 1.0s; }
.audio-waveform span:nth-child(12) { height: 85%; animation-delay: 1.1s; }
.audio-waveform span:nth-child(13) { height: 40%; animation-delay: 1.2s; }
.audio-waveform span:nth-child(14) { height: 70%; animation-delay: 1.3s; }
.audio-waveform span:nth-child(15) { height: 95%; animation-delay: 1.4s; }

@keyframes wave {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.audio-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.audio-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.audio-lock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Social big links */
.social-links-big {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.social-big-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 3rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.social-big-link:hover { border-color: var(--gold); background: rgba(198,169,128,0.1); }
.social-big-icon { font-size: 1.5rem; color: var(--gold); }
.social-big-handle { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: none; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.form-text h2 { margin-bottom: 1.25rem; }
.form-text p { margin-bottom: 1rem; }
.form-promise { margin-top: 1.5rem; }
.form-promise p {
  font-size: 0.82rem;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.dark-form { background: rgba(255,255,255,0.06); padding: 2rem; border-radius: var(--radius); }
.dark-form h3 { color: var(--white); margin-bottom: 0.5rem; }
.dark-form p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.dark-form .form-group label { color: rgba(255,255,255,0.6); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(22, 69, 81, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.dark-form .form-group input,
.dark-form .form-group select,
.dark-form .form-group textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.dark-form .form-group input::placeholder,
.dark-form .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-fine {
  font-size: 0.72rem;
  color: var(--light);
  margin-top: 0.5rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Form success */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream-mid);
  border-radius: var(--radius);
  border: 1px solid rgba(198, 169, 128, 0.3);
}
.dark-success {
  background: rgba(255,255,255,0.06);
  border-color: rgba(198,169,128,0.3);
}
.dark-success h3 { color: var(--white); }
.dark-success p { color: rgba(255,255,255,0.65); }
.success-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.form-success h3 { color: var(--teal); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }

/* Founding circle full */
.founding-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.founding-full-text h2 { margin-bottom: 1rem; }
.founding-full-text .light-sub { text-align: left; margin: 0 0 2rem; }

.founding-benefits { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.founding-benefit { display: flex; gap: 1rem; align-items: start; }
.benefit-icon { color: var(--gold); font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0; }
.founding-benefit strong { color: var(--white); display: block; margin-bottom: 0.2rem; font-size: 0.92rem; }
.founding-benefit p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; }

.founding-price-block { display: flex; align-items: baseline; gap: 0.5rem; }
.founding-price-big {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}
.founding-price-period { color: rgba(255,255,255,0.5); font-size: 1rem; }

/* General contact */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-two-col h2 { margin-bottom: 1rem; }
.email-link {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--teal);
  border-bottom: 1px solid var(--gold);
  margin-bottom: 2rem;
}
.contact-types { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-type strong { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); margin-bottom: 0.2rem; }
.contact-type p { font-size: 0.88rem; color: var(--teal); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--teal-dark);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-social-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-social { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-social a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { gap: 1.5rem; }
  .event-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .night-grid { grid-template-columns: repeat(2, 1fr); }
  .audio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founding-full-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-two-col { grid-template-columns: 1fr; gap: 3rem; }
  .prose-grid { grid-template-columns: 1fr; gap: 2rem; }
  .prose-sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }
  .section { padding: 4rem var(--gutter); }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--teal-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 1rem; display: block; }
  .nav-toggle { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }
  .expect-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .night-grid { grid-template-columns: 1fr; }
  .philosophy-stat-row { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .social-links-big { flex-direction: column; align-items: center; }
  .social-big-link { width: 100%; max-width: 300px; }
  .event-cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .philosophy-stat-row { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; gap: 0.25rem; text-align: center; }
  .strip-divider { display: none; }
}

/* ============================================
   HERO — PARTICLE CANVAS
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-bg {
  z-index: 0;
}

/* ============================================
   HERO — PARALLAX BG
   ============================================ */
.hero {
  overflow: hidden;
}
.hero-bg {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* ============================================
   SCROLL REVEAL — UPGRADED
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.stat-num { transition: color 0.4s; }
.stat-num.counting { color: var(--gold); }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(198,169,128,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-ring.hovering {
  width: 48px;
  height: 48px;
  border-color: var(--gold);
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   BUTTON RIPPLE
   ============================================ */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================
   SECTION TRANSITION LINES
   ============================================ */
.section-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  transition: width 0.8s cubic-bezier(0.22,1,0.36,1);
  opacity: 0.4;
}
.section-line.visible { width: 60px; }

/* ============================================
   GALLERY HOVER — ENHANCED
   ============================================ */
.gallery-item {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* ============================================
   EXPECT CARDS — STAGGER ON SCROLL
   ============================================ */
.expect-card {
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}
.expect-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(22,69,81,0.12);
}

/* ============================================
   PRINCIPLE CARDS HOVER
   ============================================ */
.principle {
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.principle:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

/* ============================================
   TICKET CARD — GLOW PULSE
   ============================================ */
.ticket-card {
  animation: ticketGlow 4s ease-in-out infinite;
}
@keyframes ticketGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,169,128,0); }
  50%       { box-shadow: 0 0 24px 4px rgba(198,169,128,0.12); }
}

/* ============================================
   AUDIO WAVEFORM — ENHANCED
   ============================================ */
.audio-waveform span {
  transition: height 0.3s ease;
}
.audio-card:hover .audio-waveform span {
  animation-duration: 0.8s;
  opacity: 0.85;
}

/* ============================================
   FOOTER LOGO GLOW
   ============================================ */
.footer-logo {
  position: relative;
  display: inline-block;
}
.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.footer-logo:hover::after { width: 100%; }

/* ============================================
   PAGE HERO — ANIMATED LABEL
   ============================================ */
.page-hero .label {
  animation: fadeUp 0.6s ease both;
}
.page-hero h1 {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.15s;
}
.page-hero .page-hero-sub {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.3s;
}

/* ============================================
   GOLD SHIMMER ON HEADINGS
   ============================================ */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-dot {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-lite), var(--gold), var(--gold-lite), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ============================================
   NAV LOGO RESPONSIVE
   ============================================ */
.nav-logo {
  display: flex;
  align-items: center;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 768px) {
  .loader-wordmark { font-size: 1.5rem; }
}
