/* Maidens of Mischief — production styles for V2 (Gilded Hours) and V3 (Midnight Carnival)
   Ported from design handoff. Adds responsive treatment; preserves design tokens & motion. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Cinzel:wght@400;500;600;700&family=Cinzel+Decorative:wght@400;700;900&display=swap');

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

html, body {
  background: #06060a;
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

button { font: inherit; cursor: pointer; }

/* ─────────────────────────────────────────────────────────────────────── */
/* Artboard / page root — now responsive (was fixed 1440×2600)              */
/* ─────────────────────────────────────────────────────────────────────── */
.page-root {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fcecc7;
}

/* Custom cursor only on devices with a real pointer */
@media (hover: hover) and (pointer: fine) {
  .page-root,
  .page-root * { cursor: none; }
  .page-root a,
  .page-root button { cursor: none; }
}

/* ---- Image placeholder (until real photos arrive) ---- */
.img-placeholder {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(212,168,74,.35), transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(120,40,170,.4), transparent 65%),
    radial-gradient(ellipse at 50% 90%, rgba(20,5,35,.9), transparent 70%),
    linear-gradient(160deg, #1a0a25 0%, #2a0f3c 50%, #0b0410 100%);
}
.img-placeholder::after {
  content: 'Photo placeholder';
  position: absolute; left: 12px; bottom: 12px;
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(243,225,163,.55);
  padding: 4px 8px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  border: .5px solid rgba(243,225,163,.18);
  border-radius: 99px;
  pointer-events: none;
  z-index: 5;
}

/* ---- Custom cursor dot (only when pointer device) ----
   Positioned via transform (no layout thrash). Margin centers it. */
.cursor-dot {
  position: fixed;
  left: 0; top: 0;
  width: 12px; height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3e1a3, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  mix-blend-mode: screen;
}
.cursor-spark {
  position: fixed;
  left: 0; top: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform, opacity;
}

/* ---- Glitter canvas — fills page ---- */
.glitter-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* ---- Chandelier flicker ---- */
@keyframes flicker {
  0%, 100% { opacity: 1; filter: brightness(1.05); }
  41% { opacity: .94; filter: brightness(.92); }
  43% { opacity: 1; filter: brightness(1.15); }
  45% { opacity: .97; }
  62% { opacity: .92; filter: brightness(.88); }
  64% { opacity: 1; filter: brightness(1.1); }
}
.flame { animation: flicker 4.5s infinite ease-in-out; transform-origin: center bottom; }
.flame.f2 { animation-duration: 5.3s; animation-delay: -1.2s; }
.flame.f3 { animation-duration: 6.1s; animation-delay: -2.8s; }
.flame.f4 { animation-duration: 4.8s; animation-delay: -3.7s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .flame { animation: none; }
  .glitter-canvas { display: none; }
  .cursor-dot { display: none; }
}

/* ---- Shared utilities ---- */
.eyebrow {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: 12px;
}

/* ─────────────────────────────────────────────────────────────────────── */
/* MASK UNVEIL — curtain that parts on hover                                 */
/* ─────────────────────────────────────────────────────────────────────── */
.mask-unveil {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.mask-unveil .veil {
  position: absolute; top: 0; bottom: 0;
  width: 51%;
  z-index: 3;
  pointer-events: none;
  transition: transform 1.1s cubic-bezier(.7, 0, .25, 1), filter 1.1s ease;
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(120,40,170,.22), transparent 70%),
    linear-gradient(180deg, #1a0a25 0%, #0a0410 45%, #1a0a25 100%);
}
/* Velvet ribbing texture */
.mask-unveil .veil::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,.0) 0px,
      rgba(0,0,0,.0) 11px,
      rgba(0,0,0,.32) 12px,
      rgba(0,0,0,.0) 13px,
      rgba(0,0,0,.0) 22px,
      rgba(255,255,255,.04) 23px,
      rgba(0,0,0,.0) 24px),
    radial-gradient(ellipse 200% 100% at 50% 0%, rgba(212,168,74,.06), transparent 60%);
  pointer-events: none;
}
/* Tasseled hem at top */
.mask-unveil .veil::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 28px;
  background:
    linear-gradient(180deg, rgba(212,168,74,.35) 0%, rgba(212,168,74,.08) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 8px, rgba(0,0,0,.4) 8px, rgba(0,0,0,.4) 9px);
  border-bottom: 1px solid rgba(212,168,74,.35);
  box-shadow: 0 6px 14px rgba(0,0,0,.45);
}
.mask-unveil .veil-l {
  left: 0;
  box-shadow: inset -8px 0 22px rgba(0,0,0,.6), inset -1px 0 0 rgba(212,168,74,.18);
}
.mask-unveil .veil-r {
  right: 0;
  box-shadow: inset 8px 0 22px rgba(0,0,0,.6), inset 1px 0 0 rgba(212,168,74,.18);
}
.mask-unveil:hover .veil-l { transform: translateX(-101%); }
.mask-unveil:hover .veil-r { transform: translateX(101%); }

/* Golden seam where the two halves meet */
.mask-unveil .veil-seam {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; transform: translateX(-50%);
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(243,225,163,.4) 8%,
    #e9c46a 50%,
    rgba(243,225,163,.4) 92%,
    transparent 100%);
  box-shadow: 0 0 24px rgba(233,196,106,.7), 0 0 6px rgba(255,240,180,.9);
  z-index: 5;
  pointer-events: none;
  transition: opacity .6s ease;
}
.mask-unveil:hover .veil-seam { opacity: 0; }

/* Hint label, fades + lifts on hover */
.mask-unveil .veil-hint {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: .36em; text-transform: uppercase;
  color: #f3e1a3;
  background: rgba(11,4,16,.55);
  padding: 12px 22px;
  border: 1px solid rgba(243,225,163,.5);
  border-radius: 2px;
  pointer-events: none;
  z-index: 6;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(212,168,74,.6);
  transition: opacity .55s ease, transform .8s cubic-bezier(.6,0,.3,1);
  box-shadow: 0 8px 28px rgba(0,0,0,.5), 0 0 20px rgba(212,168,74,.18);
}
.mask-unveil .veil-hint::before,
.mask-unveil .veil-hint::after {
  content: '✦';
  color: #e9c46a;
  margin: 0 12px;
  font-size: 9px; letter-spacing: 0;
  display: inline-block; vertical-align: middle;
}
.mask-unveil:hover .veil-hint {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-12px);
}

/* Image lifts slightly forward on hover (post-curtain) */
.mask-unveil > :not(.veil):not(.veil-seam):not(.veil-hint) {
  transition: transform 1.2s cubic-bezier(.5,0,.2,1), filter 1.2s ease;
}
.mask-unveil:hover > :not(.veil):not(.veil-seam):not(.veil-hint) {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* On touch, no hover — keep curtains parted by default */
@media (hover: none) {
  .mask-unveil .veil-l { transform: translateX(-101%); }
  .mask-unveil .veil-r { transform: translateX(101%); }
  .mask-unveil .veil-seam,
  .mask-unveil .veil-hint { opacity: 0; }
}

/* ─────────────────────────────────────────────────────────────────────── */
/* FOOTER (small ornate finisher)                                            */
/* ─────────────────────────────────────────────────────────────────────── */
.page-foot {
  text-align: center;
  padding: 30px 64px 36px;
  border-top: 1px solid var(--rule, rgba(212,168,74,.2));
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: .42em; text-transform: uppercase;
  color: rgba(252,236,199,.5);
}
.page-foot .ornate { color: var(--gold, #d4a84a); font-size: 14px; margin: 0 16px; }


/* ═══════════════════════════════════════════════════════════════════════ */
/* VARIATION 2 — GILDED HOURS (black + champagne, refined elegance)          */
/* ═══════════════════════════════════════════════════════════════════════ */
.v2 {
  --bg: #0a0a0d;
  --bg-2: #111114;
  --panel: #15151a;
  --champagne: #d6b97a;
  --gold-edge: #f4dca8;
  --copper: #b08035;
  --ink: #f5f0e6;
  --muted: #877f70;
  --rule: rgba(214,185,122,.16);
  background:
    radial-gradient(ellipse 800px 600px at 75% 18%, rgba(214,185,122,.1), transparent 60%),
    radial-gradient(ellipse 700px 500px at 20% 60%, rgba(60,20,80,.18), transparent 70%),
    linear-gradient(180deg, #0a0a0d 0%, #0d0a14 50%, #06060a 100%);
  color: var(--ink);
}
.v2 .nav {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 80px;
  z-index: 20;
  border-bottom: 1px solid var(--rule);
}
.v2 .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; font-style: italic;
  letter-spacing: .08em;
  color: var(--gold-edge);
}
.v2 .logo b {
  font-style: normal; letter-spacing: .26em; font-weight: 400;
  font-size: 13px; display: block; color: var(--champagne);
  margin-top: 2px; opacity: .7;
}
.v2 .nav-links {
  display: flex; gap: 44px; list-style: none;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--ink);
}
.v2 .nav-links a { color: inherit; text-decoration: none; opacity: .8; }
.v2 .nav-links a.active { color: var(--gold-edge); opacity: 1; }
.v2 .btn {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .32em; text-transform: uppercase;
  border: 1px solid var(--champagne);
  color: var(--gold-edge);
  padding: 14px 24px;
  background: transparent;
}
.v2 .btn-primary {
  background: linear-gradient(180deg, #f4dca8, #b08035);
  color: #0a0a0d;
  border-color: transparent;
}

/* V2 hero — asymmetric */
.v2 .hero {
  position: relative;
  min-height: 1000px;
  padding: 160px 80px 60px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.v2 .hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 40px;
}
.v2 .hero-meta::before { content: ''; width: 40px; height: 1px; background: var(--champagne); }
.v2 .hero h1 {
  font-size: clamp(56px, 7vw, 104px);
  line-height: .92;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 0 0 36px;
  color: var(--ink);
}
.v2 .hero h1 em {
  font-style: italic;
  background: linear-gradient(180deg, #f4dca8 0%, #d6b97a 50%, #b08035 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(214,185,122,.2);
}
.v2 .hero p {
  font-size: 19px; line-height: 1.65;
  color: rgba(245,240,230,.72);
  max-width: 480px; margin-bottom: 44px;
  font-weight: 300;
}
.v2 .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.v2 .hero-art {
  position: relative; height: 640px;
  border-radius: 2px;
  overflow: hidden;
  background: #0a0410;
}
.v2 .hero-art::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(214,185,122,.35);
  pointer-events: none;
  z-index: 4;
}
.v2 .hero-art img { width: 100%; height: 100%; object-fit: cover; }
.v2 .hero-art .corner-chandelier {
  position: absolute; top: -20px; right: 30px; z-index: 6; opacity: .7;
  pointer-events: none;
}

/* V2 about */
.v2 .about {
  position: relative;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
  align-items: end;
}
.v2 .about-art { height: 580px; position: relative; }
.v2 .about-text { padding-bottom: 40px; }
.v2 .about .eyebrow {
  color: var(--champagne); margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.v2 .about .eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--champagne); }
.v2 .about h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: .95; font-weight: 400; margin: 0 0 32px;
}
.v2 .about h2 em {
  font-style: italic;
  background: linear-gradient(180deg, #f4dca8 0%, #d6b97a 60%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.v2 .about p { font-size: 17px; line-height: 1.75; color: rgba(245,240,230,.72); font-weight: 300; margin-bottom: 16px; }
.v2 .pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: 50px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.v2 .pillar { background: var(--bg); padding: 26px 22px; }
.v2 .pillar-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 34px; color: var(--gold-edge); line-height: 1;
}
.v2 .pillar-title {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--champagne); margin: 14px 0 8px;
}
.v2 .pillar p { font-size: 14px; line-height: 1.55; color: rgba(245,240,230,.65); margin: 0; }

/* V2 events */
.v2 .events { position: relative; padding: 130px 80px 140px; }
.v2 .events-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}
.v2 .events-header .eyebrow {
  color: var(--champagne); display: inline-flex; align-items: center;
  gap: 12px; margin-bottom: 18px;
}
.v2 .events-header .eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--champagne); }
.v2 .events-header h2 { font-size: clamp(48px, 5.5vw, 80px); line-height: .95; font-weight: 400; }
.v2 .events-header h2 em {
  font-style: italic;
  background: linear-gradient(180deg, #f4dca8, #d6b97a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.v2 .events-header p { font-size: 17px; line-height: 1.7; color: rgba(245,240,230,.72); font-weight: 300; }
.v2 .event-row {
  display: grid;
  grid-template-columns: 130px 1.2fr 1.6fr 200px 60px;
  gap: 40px;
  align-items: center;
  padding: 28px 8px;
  border-top: 1px solid var(--rule);
  transition: background .25s;
}
.v2 .event-row:last-child { border-bottom: 1px solid var(--rule); }
.v2 .event-row:hover { background: rgba(214,185,122,.04); }
.v2 .event-row .date {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--gold-edge);
}
.v2 .event-row .date b {
  font-size: 42px; line-height: 1; font-weight: 400; font-style: normal;
  display: block;
}
.v2 .event-row .date span {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--champagne); display: block; margin-top: 4px;
}
.v2 .event-row .name {
  font-size: 28px; line-height: 1.15; color: var(--ink);
  font-style: italic; font-weight: 500;
}
.v2 .event-row .name .cat {
  display: block; font-family: 'Cinzel', serif;
  font-style: normal; font-weight: 400;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 8px;
}
.v2 .event-row .desc { font-size: 15px; line-height: 1.55; color: rgba(245,240,230,.62); font-weight: 300; }
.v2 .event-row .loc {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(245,240,230,.65);
  text-align: right;
}
.v2 .event-row .loc b { display: block; color: var(--gold-edge); font-weight: 500; margin-bottom: 6px; }
.v2 .event-row .arrow {
  width: 40px; height: 40px; border: 1px solid var(--rule);
  border-radius: 99px; display: grid; place-items: center;
  color: var(--gold-edge); transition: all .25s;
}
.v2 .event-row:hover .arrow {
  background: var(--champagne); color: #0a0a0d; border-color: var(--champagne);
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* VARIATION 3 — MIDNIGHT CARNIVAL (baroque, theatrical, curtain-framed)     */
/* ═══════════════════════════════════════════════════════════════════════ */
.v3 {
  --bg: #0b0410;
  --curtain: #3b1452;
  --curtain-deep: #220833;
  --gold: #e9c46a;
  --gold-soft: #fbe9c2;
  --copper: #d39e3c;
  --ink: #fbe9c2;
  --muted: #b39ec6;
  --rule: rgba(233,196,106,.22);
  background:
    radial-gradient(ellipse 1100px 700px at 50% 0%, rgba(120,40,170,.4), transparent 70%),
    radial-gradient(ellipse 800px 500px at 10% 40%, rgba(60,20,100,.4), transparent 65%),
    radial-gradient(ellipse 800px 500px at 90% 40%, rgba(60,20,100,.4), transparent 65%),
    linear-gradient(180deg, #0b0410 0%, #160728 50%, #06020c 100%);
  color: var(--ink);
}
.v3 .nav {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 64px; z-index: 20;
}
.v3 .logo-mark { display: flex; align-items: center; gap: 14px; }
.v3 .logo-mark .sigil {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900; font-size: 18px; color: var(--gold);
  background: radial-gradient(circle, rgba(233,196,106,.18), transparent 70%);
}
.v3 .logo-mark b {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 21px; font-weight: 500;
  color: var(--gold-soft); letter-spacing: .03em;
}
.v3 .logo-mark span {
  display: block; font-family: 'Cinzel', serif;
  font-size: 8px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); opacity: .7; margin-top: 2px;
}
.v3 .nav-links {
  display: flex; gap: 36px; list-style: none;
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: .32em; text-transform: uppercase; color: var(--ink);
}
.v3 .nav-links a { color: inherit; text-decoration: none; opacity: .85; }
.v3 .nav-links a.active { color: var(--gold); opacity: 1; }
.v3 .btn {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .32em; text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: rgba(233,196,106,.08);
}
.v3 .btn-primary {
  background: linear-gradient(180deg, #f1d680, #c69334);
  color: #220833;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(233,196,106,.35);
}

/* curtain side panels */
.v3 .curtain {
  position: absolute; top: 0; bottom: 0; width: 240px;
  pointer-events: none; z-index: 2;
}
.v3 .curtain.left { left: 0; background: linear-gradient(90deg, var(--curtain-deep) 0%, transparent 100%); opacity: .55; }
.v3 .curtain.right { right: 0; background: linear-gradient(-90deg, var(--curtain-deep) 0%, transparent 100%); opacity: .55; }

/* V3 chandeliers in hero */
.v3 .hero-chandelier {
  position: absolute; top: -20px; z-index: 8; opacity: .9;
  pointer-events: none;
}
.v3 .hero-chandelier.left { left: 180px; }
.v3 .hero-chandelier.right { right: 180px; }

/* V3 hero — stage curtain frame */
.v3 .hero {
  position: relative;
  min-height: 1020px;
  padding: 120px 64px 60px;
  display: grid;
  place-items: center;
}
.v3 .hero-stage {
  position: relative;
  width: 100%; max-width: 1240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}
.v3 .hero-left { position: relative; z-index: 4; }
.v3 .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 30px;
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold);
}
.v3 .hero-eyebrow .seal {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center; color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.v3 .hero h1 {
  font-size: clamp(56px, 6.4vw, 92px);
  line-height: .92; font-weight: 400;
  letter-spacing: -.015em;
  margin: 0 0 28px;
  color: var(--ink);
}
.v3 .hero h1 em {
  font-style: italic;
  background: linear-gradient(180deg, #fbe9c2 0%, #e9c46a 50%, #8e6422 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.v3 .hero h1 .deco-amp {
  font-family: 'Cinzel Decorative', serif;
  font-style: italic; color: var(--copper);
  -webkit-text-fill-color: var(--copper);
}
.v3 .hero p {
  font-size: 18px; line-height: 1.65;
  color: rgba(251,233,194,.78); font-weight: 300;
  max-width: 460px; margin-bottom: 40px;
}
.v3 .hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.v3 .hero-right { position: relative; height: 580px; z-index: 3; }
.v3 .hero-right .frame {
  height: 100%; border-radius: 4px;
  position: relative; overflow: hidden;
  background: #0a0410;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(233,196,106,.2);
}
.v3 .hero-right .frame img { width: 100%; height: 100%; object-fit: cover; }
.v3 .hero-right .corner { position: absolute; z-index: 5; }
.v3 .hero-right .corner.tl { top: 8px; left: 8px; }
.v3 .hero-right .corner.tr { top: 8px; right: 8px; }
.v3 .hero-right .corner.bl { bottom: 8px; left: 8px; }
.v3 .hero-right .corner.br { bottom: 8px; right: 8px; }

/* V3 about */
.v3 .about { position: relative; padding: 110px 64px; }
.v3 .about-frame {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
  background: linear-gradient(180deg, rgba(34,8,51,.6), rgba(11,4,16,.6));
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 64px;
  position: relative;
}
.v3 .about-frame::before,
.v3 .about-frame::after {
  content: ''; position: absolute; width: 36px; height: 36px;
  border: 1px solid var(--gold);
}
.v3 .about-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.v3 .about-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.v3 .about h2 {
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1; font-weight: 400; margin: 18px 0 28px;
}
.v3 .about h2 em {
  font-style: italic;
  background: linear-gradient(180deg, #fbe9c2, #e9c46a 60%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.v3 .about .eyebrow { color: var(--gold); }
.v3 .about p { font-size: 17px; line-height: 1.7; color: rgba(251,233,194,.78); font-weight: 300; margin-bottom: 16px; }
.v3 .about-stats {
  display: flex; gap: 36px; margin-top: 28px;
  padding-top: 22px; border-top: 1px solid rgba(233,196,106,.2);
  font-family: 'Cinzel', serif;
}
.v3 .about-stats .num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 36px; color: var(--gold); line-height: 1;
}
.v3 .about-stats .label {
  font-size: 10px; letter-spacing: .3em; margin-top: 6px;
  color: var(--gold); text-transform: uppercase;
}
.v3 .about-img-stack { position: relative; height: 460px; }
.v3 .about-img-stack .stack-top {
  position: absolute; top: 0; right: 0;
  width: 60%; height: 75%; border-radius: 4px;
  z-index: 2;
}
.v3 .about-img-stack .stack-bottom {
  position: absolute; bottom: 0; left: 0;
  width: 52%; height: 60%; border-radius: 4px;
  z-index: 1;
}

/* V3 events */
.v3 .events { position: relative; padding: 110px 64px 140px; }
.v3 .events-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.v3 .events-header h2 {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1; font-weight: 400; margin: 12px 0 18px;
}
.v3 .events-header h2 em {
  font-style: italic;
  background: linear-gradient(180deg, #fbe9c2, #e9c46a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.v3 .events-header .eyebrow { color: var(--gold); }
.v3 .events-header p { font-size: 17px; line-height: 1.6; color: rgba(251,233,194,.72); font-weight: 300; margin-top: 18px; }
.v3 .program {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  grid-template-rows: 440px 280px;
}
.v3 .program > .e-feature { grid-row: 1 / 3; }
.v3 .program > .e-feature .event-cover { height: 100%; }
.v3 .program > .e-mid {
  grid-column: 2 / 4; grid-row: 1;
  display: contents;  /* Let grid handle the two cards directly */
}
.v3 .e-card {
  position: relative;
  background: linear-gradient(180deg, rgba(34,8,51,.85), rgba(11,4,16,.95));
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .3s;
}
.v3 .e-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.v3 .e-card .event-cover { flex: 1; position: relative; min-height: 160px; }
.v3 .e-card .event-body { padding: 22px 24px 24px; }
.v3 .e-card .e-cat {
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
}
.v3 .e-card .e-title {
  font-size: 26px; line-height: 1.1; margin: 10px 0 12px;
  font-style: italic; font-weight: 500; color: var(--gold-soft);
}
.v3 .e-card .e-desc { font-size: 14px; color: rgba(251,233,194,.6); font-weight: 300; line-height: 1.5; }
.v3 .e-card .date-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(11,4,16,.85);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 8px 12px; text-align: center;
  font-family: 'Cinzel', serif;
  color: var(--gold-soft);
  backdrop-filter: blur(6px);
  z-index: 4;
}
.v3 .e-card .date-tag b { display: block; font-size: 22px; line-height: 1; font-weight: 700; }
.v3 .e-card .date-tag span { display: block; font-size: 9px; letter-spacing: .26em; margin-top: 3px; }

.v3 .e-feature { display: flex; flex-direction: column; }
.v3 .e-feature .event-body {
  background: linear-gradient(0deg, rgba(11,4,16,.95) 30%, transparent);
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 32px 36px;
}
.v3 .e-feature .e-title { font-size: 38px; }
.v3 .e-feature .e-desc { font-size: 15px; max-width: 440px; }


/* ═══════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE — break the 1440 desktop comp gracefully                       */
/* ═══════════════════════════════════════════════════════════════════════ */

/* Tablet ≤ 1100 */
@media (max-width: 1100px) {
  .v2 .nav, .v3 .nav { padding: 24px 40px; }
  .v2 .hero, .v3 .hero { padding: 140px 40px 60px; }
  .v2 .about, .v2 .events { padding: 80px 40px; }
  .v3 .about, .v3 .events { padding: 80px 40px; }
  .v3 .about-frame { padding: 48px; gap: 48px; }
  .v3 .hero-chandelier { display: none; }
  .v2 .nav-links, .v3 .nav-links { display: none; }
  .v2 .hero-art { height: 460px; }
  .v3 .hero-right { height: 460px; }
  .v2 .about { gap: 60px; }
  .v3 .program { grid-template-columns: 1fr 1fr; grid-template-rows: 380px auto auto; }
  .v3 .program > .e-feature { grid-row: 1 / 2; grid-column: 1 / 3; }
  .v3 .program > .e-mid { display: contents; }
  .v2 .event-row {
    grid-template-columns: 100px 1fr 60px;
    gap: 20px;
  }
  .v2 .event-row .desc, .v2 .event-row .loc { display: none; }
}

/* Mobile ≤ 720 */
@media (max-width: 720px) {
  .page-root, body { overflow-x: hidden; }
  .v2 .nav, .v3 .nav { padding: 18px 22px; }
  .v2 .logo { font-size: 22px; }
  .v2 .logo b { font-size: 10px; }
  .v3 .logo-mark .sigil { width: 38px; height: 38px; font-size: 16px; }
  .v3 .logo-mark b { font-size: 17px; }
  .v3 .logo-mark span { font-size: 7px; letter-spacing: .35em; }

  .v2 .hero, .v3 .hero {
    grid-template-columns: 1fr;
    padding: 110px 22px 40px;
    min-height: auto;
    gap: 36px;
  }
  .v3 .hero-stage { grid-template-columns: 1fr; padding: 0; gap: 40px; }

  .v2 .hero-art, .v3 .hero-right { height: 380px; }
  .v2 .hero p, .v3 .hero p { font-size: 17px; }

  .v2 .about, .v2 .events { padding: 60px 22px; gap: 48px; }
  .v2 .about { grid-template-columns: 1fr; }
  .v2 .about-art { height: 380px; }
  .v2 .about-text { padding-bottom: 0; }
  .v2 .pillars { grid-template-columns: 1fr; }
  .v2 .events-header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 40px; }

  .v2 .event-row {
    grid-template-columns: 80px 1fr;
    gap: 14px; padding: 20px 4px;
  }
  .v2 .event-row .arrow { display: none; }
  .v2 .event-row .date b { font-size: 32px; }
  .v2 .event-row .name { font-size: 22px; }

  .v3 .about { padding: 60px 22px; }
  .v3 .about-frame { padding: 32px 24px; grid-template-columns: 1fr; gap: 36px; }
  .v3 .about-img-stack { height: 360px; }
  .v3 .events { padding: 60px 22px 90px; }
  .v3 .program { grid-template-columns: 1fr; grid-template-rows: auto; gap: 18px; }
  .v3 .program > .e-feature { grid-column: 1; grid-row: auto; }
  .v3 .program .e-feature .event-cover { min-height: 360px; }

  .v3 .curtain { width: 80px; }
}

/* Very small phones */
@media (max-width: 380px) {
  .v2 .hero-meta, .v3 .hero-eyebrow { font-size: 9px; letter-spacing: .3em; }
  .v2 .hero-ctas .btn, .v3 .hero-ctas .btn { padding: 12px 18px; font-size: 9px; }
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* LANDING — comparison index linking to V2 and V3                            */
/* ═══════════════════════════════════════════════════════════════════════ */
.landing {
  --gold: #e9c46a;
  --gold-soft: #fbe9c2;
  --rule: rgba(233,196,106,.22);
  min-height: 100vh;
  background:
    radial-gradient(ellipse 1200px 700px at 50% 0%, rgba(120,40,170,.32), transparent 65%),
    radial-gradient(ellipse 800px 500px at 10% 80%, rgba(60,20,100,.3), transparent 70%),
    linear-gradient(180deg, #0a0410 0%, #160728 60%, #04020a 100%);
  color: #fbe9c2;
  padding: 80px 32px 100px;
  display: flex; flex-direction: column; align-items: center;
}
.landing-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.landing-eyebrow {
  font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.landing h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .95; font-weight: 400;
  letter-spacing: -.015em;
  margin-bottom: 18px;
}
.landing h1 em {
  font-style: italic;
  background: linear-gradient(180deg, #fbe9c2, #e9c46a 60%, #8e6422);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.landing-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; line-height: 1.7;
  color: rgba(251,233,194,.78);
  font-weight: 300;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
}
.compare-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 36px;
  background: linear-gradient(180deg, rgba(34,8,51,.55), rgba(11,4,16,.85));
  text-decoration: none;
  color: inherit;
  transition: all .35s;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 460px;
}
.compare-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(233,196,106,.16);
}
.compare-card .preview {
  flex: 1;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--rule);
}
.compare-card.v2-preview .preview {
  background:
    radial-gradient(ellipse 600px 400px at 75% 18%, rgba(214,185,122,.18), transparent 60%),
    radial-gradient(ellipse 500px 350px at 20% 60%, rgba(60,20,80,.25), transparent 70%),
    linear-gradient(180deg, #0a0a0d 0%, #0d0a14 60%, #06060a 100%);
}
.compare-card.v3-preview .preview {
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(120,40,170,.5), transparent 70%),
    radial-gradient(ellipse 500px 350px at 90% 60%, rgba(60,20,100,.45), transparent 65%),
    linear-gradient(180deg, #0b0410 0%, #160728 50%, #06020c 100%);
}
.compare-card .preview-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
}
.compare-card .preview-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px; line-height: 1;
  background: linear-gradient(180deg, #fbe9c2, #e9c46a 60%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.compare-card .preview-corner {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(233,196,106,.7);
  padding: 5px 9px;
  border: 1px solid rgba(233,196,106,.3);
  border-radius: 99px;
  background: rgba(0,0,0,.4);
}
.compare-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 500;
  font-size: 30px; color: var(--gold-soft);
}
.compare-card .roman {
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold);
}
.compare-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; line-height: 1.65;
  color: rgba(251,233,194,.72);
  font-weight: 300;
}
.compare-card .view-cta {
  margin-top: auto;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.compare-card .view-cta::after {
  content: '→'; font-family: 'Cormorant Garamond', serif;
  font-style: normal; letter-spacing: 0;
}

.landing-footer {
  margin-top: 80px;
  font-family: 'Cinzel', serif; font-size: 10px;
  letter-spacing: .42em; text-transform: uppercase;
  color: rgba(251,233,194,.5);
  text-align: center;
}
.landing-footer .ornate { color: var(--gold); margin: 0 14px; }

@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { min-height: 380px; padding: 26px; }
  .landing { padding: 50px 18px 70px; }
}
