/* ============================================================
   THE FRAUD GAMES 2026 — "Guilloché Classicism" design system
   Navy #1E2341 · Antique gold #9B8241 · Ivory #F4F1E9
   Display: Gloock · Body: Manrope
   ============================================================ */

:root {
  --navy: #1e2341;
  --navy-deep: #161a31;
  --gold: #9b8241;
  --gold-bright: #c2a85f;
  --ivory: #f4f1e9;
  --ivory-soft: #faf8f1;
  --ink: #1b1f38;
  --muted: #5c6079;
  --line: #e3ddca;
  --white: #ffffff;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px -24px rgba(20, 24, 50, 0.45);
  --shadow-soft: 0 8px 28px -18px rgba(20, 24, 50, 0.35);
  --maxw: 1140px;
  --gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Gloock', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.2px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

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

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

.eyebrow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 14px;
}

/* ---- Guilloché rosette / divider accents ---- */
.rule {
  height: 1px;
  background: var(--gold-line);
  border: 0;
  margin: 0;
}
.rosette {
  width: 46px; height: 46px; margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(155,130,65,0.0) 39%),
    conic-gradient(from 0deg, var(--gold), transparent 12%, var(--gold) 25%, transparent 37%, var(--gold) 50%, transparent 62%, var(--gold) 75%, transparent 87%, var(--gold));
  -webkit-mask: radial-gradient(circle at center, transparent 30%, #000 31%, #000 70%, transparent 71%);
          mask: radial-gradient(circle at center, transparent 30%, #000 31%, #000 70%, transparent 71%);
  opacity: 0.85;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 15px 32px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  letter-spacing: 0.02em;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: var(--shadow-soft); }
.btn-gold:hover { background: var(--gold-bright); color: #fff; }
.btn-outline { background: transparent; color: var(--ivory); border-color: rgba(244,241,233,0.45); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #fff; }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-bright); outline-offset: 2px;
}

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(30,35,65,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(155,130,65,0.35);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.nav-brand { display: flex; align-items: center; gap: 16px; }
.nav-brand img {
  height: 64px; width: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28));
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}
.nav-brand:hover img { transform: translateY(-1px) scale(1.02); filter: drop-shadow(0 9px 18px rgba(0,0,0,0.34)); }
.nav-brand .brand-text { color: var(--ivory); font-family: 'Gloock', serif; font-size: 1.08rem; line-height: 1; position: relative; padding-left: 16px; }
.nav-brand .brand-text::before { content: ''; position: absolute; left: 0; top: 2px; bottom: 2px; width: 1px; background: linear-gradient(180deg, transparent, rgba(155,130,65,0.6), transparent); }
.nav-brand .brand-text small { display: block; font-family: 'Manrope', sans-serif; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bright); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ivory); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links .btn { padding: 10px 22px; }
@media (max-width: 760px) { .nav-links a:not(.btn) { display: none; } }

/* ---- Hero ---- */
.hero {
  position: relative; color: var(--ivory); text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(155,130,65,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 92px 0 104px; overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(155,130,65,0.18);
  pointer-events: none; z-index: 0;
}
.hero::before { width: 720px; height: 720px; top: -360px; left: 50%; transform: translateX(-50%); }
.hero::after { width: 1040px; height: 1040px; bottom: -620px; left: 50%; transform: translateX(-50%); border-style: dashed; }
.hero .container { position: relative; z-index: 2; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Centred hero: the Olympic torch rises up the middle and the title stands in
   front of the flame. A soft navy scrim sits between the two so the copy stays
   legible over the colour. */
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }
.hero-eyebrow { margin: 0 0 16px; color: var(--gold); font-size: 0.82rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700; }
.hero h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); line-height: 1.02; margin: 0 0 18px; color: var(--ivory); text-shadow: 0 2px 34px rgba(10,12,28,0.55); }
.hero h1 span { color: var(--gold-bright); }
.hero-blurb { font-size: 1.02rem; line-height: 1.75; color: rgba(244,241,233,0.86); margin: 0 auto 32px; max-width: 560px; }

/* The torch, centred and rising behind the words. */
.hero-torch {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  height: clamp(460px, 94vh, 880px); width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,0.5));
}
/* Soft navy glow that darkens the centre so the title reads cleanly. */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(58% 62% at 50% 46%,
    rgba(18,22,46,0.86) 0%, rgba(18,22,46,0.58) 44%, rgba(18,22,46,0) 76%);
}

.hero .subtitle { font-family: 'Gloock', serif; font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--gold-bright); font-style: italic; margin: 0 0 22px; }
.hero .event-line {
  display: inline-block; margin: 0 0 34px;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem); font-weight: 600;
  color: var(--ivory); letter-spacing: 0.01em;
  padding: 11px 22px; border-radius: 999px;
  background: rgba(244,241,233,0.06);
  border: 1px solid rgba(155,130,65,0.45);
}
.hero .event-line strong { color: var(--gold-bright); font-weight: 700; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Mobile: torch shrinks but stays centred behind the copy. */
@media (max-width: 760px) {
  .hero-torch { height: clamp(380px, 104vw, 560px); opacity: 0.88; }
  .hero-scrim { background: radial-gradient(70% 60% at 50% 44%,
    rgba(18,22,46,0.9) 0%, rgba(18,22,46,0.62) 48%, rgba(18,22,46,0) 80%); }
}

/* ---- Sections ---- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 0 0 16px; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.alt { background: var(--ivory-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- About / audience ---- */
.lead { font-size: 1.18rem; color: var(--ink); max-width: 820px; margin: 0 auto 40px; text-align: center; }
.audience-lead {
  max-width: 760px; margin: 14px auto 26px; text-align: center;
  font-size: clamp(1.12rem, 2.1vw, 1.4rem); line-height: 1.6; color: var(--navy);
}
.audience-tags {
  list-style: none; margin: 0 auto; padding: 0; max-width: 820px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.audience-tags li {
  padding: 9px 18px; border: 1px solid rgba(155,130,65,0.45); border-radius: 999px;
  background: var(--ivory-soft); color: var(--navy);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
}
.audience { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 1040px; margin: 0 auto; }
@media (min-width: 560px) { .audience { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .audience { grid-template-columns: repeat(3, 1fr); } }
.aud-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.aud-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.aud-card .icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 14px; }
.aud-card h3 { font-size: 1.18rem; margin: 0 0 8px; color: var(--navy); }
.aud-card p { margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.6; }

/* ---- Hybrid / venue ---- */
.hybrid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 860px) { .hybrid-grid { grid-template-columns: 1fr; } }
.venue-card {
  border-radius: var(--radius); padding: 38px 34px; position: relative; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.venue-card.inperson { background: var(--white); }
.venue-card.online {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--ivory); border-color: rgba(155,130,65,0.4);
}
.venue-card .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.venue-card.inperson .tag { background: var(--ivory); color: var(--gold); border: 1px solid var(--gold); }
.venue-card.online .tag { background: rgba(155,130,65,0.2); color: var(--gold-bright); border: 1px solid rgba(155,130,65,0.5); }
.venue-card h3 { font-size: 1.7rem; margin: 0 0 14px; }
.venue-card.inperson h3 { color: var(--navy); }
.venue-card.online h3 { color: var(--ivory); }
.venue-card p { margin: 0 0 18px; line-height: 1.7; }
.venue-card.inperson p { color: var(--muted); }
.venue-card.online p { color: rgba(244,241,233,0.85); }
.feature-list { list-style: none; padding: 0; margin: 0 0 8px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: 0.98rem; }
.feature-list svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }
.venue-card.online .feature-list svg { color: var(--gold-bright); }

/* ---- CTA band ---- */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--ivory); text-align: center; }
.cta-band h2 { color: var(--ivory); font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 14px; }
.cta-band p { color: rgba(244,241,233,0.85); max-width: 620px; margin: 0 auto 32px; font-size: 1.08rem; }

/* ---- Pricing teaser ("κράχτης") ---- */
.eb-flag {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 auto 18px; padding: 8px 18px; border-radius: 999px;
  background: rgba(155,130,65,0.16); border: 1px solid rgba(155,130,65,0.55);
  color: var(--gold-bright); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.eb-flag svg { width: 17px; height: 17px; }
.pricing-cta .pricing-foot { color: rgba(244,241,233,0.7); font-size: 0.95rem; max-width: 640px; margin: 26px auto 30px; }
.price-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px; max-width: 720px; margin: 8px auto 0;
}
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: rgba(244,241,233,0.05); border: 1px solid rgba(155,130,65,0.34);
  border-radius: var(--radius); padding: 24px 26px; text-align: left;
}
.pc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.pc-head h3 { margin: 0; color: var(--ivory); font-size: 1.35rem; }
.pc-tag { color: rgba(244,241,233,0.62); font-size: 0.78rem; letter-spacing: 0.04em; }
.pc-rows { display: flex; flex-direction: column; gap: 10px; }
.pc-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(244,241,233,0.1); }
.pc-row:last-child { border-bottom: 0; padding-bottom: 0; }
.pc-amt { font-family: 'Gloock', serif; font-size: 1.7rem; color: var(--gold-bright); line-height: 1; }
.pc-label { color: rgba(244,241,233,0.82); font-size: 0.95rem; text-align: right; }
.pc-save { margin: 16px 0 0; font-size: 0.84rem; font-weight: 700; color: var(--gold-bright); letter-spacing: 0.02em; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: rgba(244,241,233,0.7); padding: 44px 0; font-size: 0.92rem; }
.site-footer .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-footer a { color: var(--gold-bright); }
.site-footer .foot-brand { font-family: 'Gloock', serif; color: var(--ivory); font-size: 1.1rem; }

/* ============================================================
   Forms / registration
   ============================================================ */
.page-head { background: linear-gradient(180deg, var(--navy), var(--navy-deep)); color: var(--ivory); padding: 56px 0 64px; text-align: center; }
.page-head h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: var(--ivory); margin: 0 0 10px; }
.page-head p { color: rgba(244,241,233,0.85); margin: 0; }

.reg-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; margin: 0 auto 0; }
@media (max-width: 940px) { .reg-layout { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 28px; margin-bottom: 24px;
}
.card h2 { font-size: 1.35rem; color: var(--navy); margin: 0 0 4px; }
.card .hint { color: var(--muted); font-size: 0.92rem; margin: 0 0 22px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; color: var(--navy); }
.field .req { color: var(--gold); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; font: inherit; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--ivory-soft); color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(155,130,65,0.15);
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }

/* segmented radio (attendance / membership) */
.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label {
  display: block; cursor: pointer; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px; background: var(--ivory-soft); transition: all 0.2s var(--ease); margin: 0;
}
.segmented label .opt-title { font-weight: 700; color: var(--navy); display: block; }
.segmented label .opt-sub { font-size: 0.85rem; color: var(--muted); }
.segmented input:checked + label { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(155,130,65,0.15); }
.segmented input:focus-visible + label { outline: 3px solid var(--gold-bright); outline-offset: 2px; }

/* attendee rows */
.attendee {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 16px;
  background: var(--ivory-soft); position: relative;
}
.attendee .att-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.attendee .att-head h3 { font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin: 0; }
.btn-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 0.85rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; }
.btn-remove:hover { color: #a11; background: #f7e7e7; }
.btn-add { background: transparent; border: 1.5px dashed var(--gold); color: var(--gold); border-radius: var(--radius-sm); padding: 12px; width: 100%; font: inherit; font-weight: 700; cursor: pointer; transition: all 0.2s var(--ease); }
.btn-add:hover { background: rgba(155,130,65,0.08); color: var(--gold-bright); }

/* checkboxes */
.check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--gold); flex: 0 0 auto; }
.check label { font-size: 0.95rem; color: var(--ink); line-height: 1.5; }

.collapse { display: none; }
.collapse.open { display: block; }

/* summary / sticky aside */
.summary { position: sticky; top: 92px; }
.summary .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.96rem; }
.summary .row:last-of-type { border-bottom: none; }
.summary .row .muted { color: var(--muted); }
.summary .total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 16px; border-top: 2px solid var(--navy); }
.summary .total .amt { font-family: 'Gloock', serif; font-size: 2rem; color: var(--navy); }
.summary .period-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: rgba(155,130,65,0.15); color: var(--gold); margin-bottom: 16px; }

/* pay buttons */
.pay-options { display: grid; gap: 12px; margin-top: 18px; }
.pay-options .btn { width: 100%; }

/* messages */
.msg { padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.95rem; display: none; }
.msg.show { display: block; }
.msg.error { background: #fbeaea; color: #8a1f1f; border: 1px solid #e9c4c4; }
.msg.info { background: #eef3ea; color: #3a5a2a; border: 1px solid #cfe0c4; }

/* stripe element host */
#payment-element { margin: 16px 0; padding: 4px; }
.checkout-modal-backdrop {
  position: fixed; inset: 0; background: rgba(22,26,49,0.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.checkout-modal-backdrop.open { display: flex; }
.checkout-modal { background: #fff; border-radius: var(--radius); max-width: 480px; width: 100%; padding: 30px 28px; box-shadow: var(--shadow); max-height: 90vh; overflow: auto; }
.checkout-modal h2 { color: var(--navy); margin: 0 0 6px; }
.bank-details { background: var(--ivory-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; margin: 16px 0; }
.bank-details .brow { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.bank-details .brow:last-child { border-bottom: none; }
.bank-details .brow .k { color: var(--muted); }
.bank-details .brow .v { font-weight: 700; color: var(--navy); text-align: right; word-break: break-word; }
.bank-details .brow.ref { background: rgba(155,130,65,0.12); border: 1px solid rgba(155,130,65,0.45); border-radius: 8px; padding: 10px 12px; margin: 4px 0; }
.bank-details .brow.ref .v { color: var(--gold); font-size: 1.15rem; letter-spacing: 0.5px; }
.ref-note { background: rgba(155,130,65,0.08); border-left: 3px solid var(--gold); border-radius: 6px; padding: 12px 14px; margin: 0 0 18px; font-size: 0.9rem; line-height: 1.55; color: var(--navy); }
.ref-note strong { color: var(--gold); }

/* thank-you */
.thanks { text-align: center; max-width: 620px; margin: 0 auto; }
.thanks .check-circle { width: 76px; height: 76px; margin: 0 auto 24px; color: var(--gold); }
.thanks h1 { color: var(--navy); font-size: 2.4rem; margin: 0 0 14px; }
.thanks p { color: var(--muted); font-size: 1.1rem; }
.thanks .ref { font-family: 'Gloock', serif; font-size: 1.4rem; color: var(--navy); background: var(--ivory-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 20px; display: inline-block; margin: 18px 0; }

/* legal page */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { color: var(--navy); margin-top: 32px; font-size: 1.3rem; }
.legal p, .legal li { color: var(--ink); line-height: 1.7; }
.legal ul { padding-left: 22px; margin: 0 0 8px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold-deep, #7c6730); font-weight: 600; }
.legal-meta { color: var(--muted); font-size: 0.95rem; padding-bottom: 8px; border-bottom: 1px solid var(--line); }

/* ============================================================
   Early-bird sale banner (register page)
   ============================================================ */
.eb-banner {
  display: flex; align-items: center; gap: 20px;
  margin: -36px auto 22px; position: relative; z-index: 2;
  background: linear-gradient(120deg, #ffffff 0%, var(--ivory-soft) 100%);
  border: 1px solid var(--gold); border-left: 5px solid var(--gold);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px 24px; overflow: hidden;
}
.eb-banner[hidden] { display: none; }
/* slow gold shimmer sweeping across the banner */
.eb-banner::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(194,168,95,0.16), transparent);
  transform: skewX(-18deg); animation: fg-sweep 6.5s ease-in-out infinite; pointer-events: none;
}
.eb-icon {
  flex: 0 0 auto; width: 50px; height: 50px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(155,130,65,0.12); color: var(--gold);
}
.eb-icon svg { width: 28px; height: 28px; animation: fg-flicker 2.6s var(--ease) infinite; transform-origin: center bottom; }
.eb-text { flex: 1 1 auto; min-width: 0; }
.eb-kicker { font-family: 'Manrope', sans-serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.66rem; font-weight: 800; color: var(--gold); margin: 0 0 5px; }
.eb-head { font-family: 'Gloock', serif; font-size: 1.22rem; color: var(--navy); margin: 0 0 5px; line-height: 1.22; }
.eb-sub { margin: 0; color: var(--muted); font-size: 0.92rem; }
.eb-countdown { flex: 0 0 auto; text-align: center; background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: var(--ivory); border-radius: var(--radius-sm); padding: 12px 18px; line-height: 1.05; box-shadow: var(--shadow-soft); border: 1px solid rgba(155,130,65,0.4); }
.eb-countdown b { display: block; font-family: 'Gloock', serif; font-size: 1.7rem; color: var(--gold-bright); }
.eb-countdown small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(244,241,233,0.85); }
@media (max-width: 680px) {
  .eb-banner { flex-wrap: wrap; gap: 14px; margin-top: -26px; padding: 18px; }
  .eb-countdown { order: 3; width: 100%; }
}

/* savings row in the order summary */
.summary .save-row .amt-save { color: var(--gold); font-weight: 800; }

/* ============================================================
   Subtle motion — reveal on scroll, hero float, accents
   (all suppressed under prefers-reduced-motion via the global
    rule near the top of this file)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* gentle stagger within card groups */
.audience .aud-card.reveal:nth-child(2) { transition-delay: 0.06s; }
.audience .aud-card.reveal:nth-child(3) { transition-delay: 0.12s; }
.audience .aud-card.reveal:nth-child(4) { transition-delay: 0.18s; }
.audience .aud-card.reveal:nth-child(5) { transition-delay: 0.24s; }
.audience .aud-card.reveal:nth-child(6) { transition-delay: 0.30s; }
.hybrid-grid .venue-card.reveal:nth-child(2) { transition-delay: 0.1s; }

/* hero emblem breathing float + slowly rotating guilloché accents */
@keyframes fg-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fg-spin { to { transform: rotate(360deg); } }
@keyframes fg-flicker { 0%, 100% { opacity: 1; transform: translateY(0) scale(1); } 50% { opacity: 0.72; transform: translateY(-1px) scale(1.05); } }
@keyframes fg-sweep { 0% { left: -60%; } 60%, 100% { left: 130%; } }
.hero-logo { animation: fg-float 6.5s var(--ease) infinite; }
.rosette { animation: fg-spin 28s linear infinite; }

/* ===== 3D venue preview ===== */
.venue-cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 16px; }
/* Lives on the dark "online" card, so it needs light text — not the default navy ghost. */
.btn-preview { display: inline-flex; align-items: center; gap: 9px; color: var(--ivory); background: rgba(244,241,233,0.06); border-color: rgba(155,130,65,0.7); }
.btn-preview:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-preview svg { width: 18px; height: 18px; }

.venue-modal-backdrop {
  position: fixed; inset: 0; background: rgba(15, 18, 38, 0.82); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; z-index: 120; padding: 24px;
  animation: vp-fade 0.28s var(--ease);
}
.venue-modal-backdrop[hidden] { display: none; }
@keyframes vp-fade { from { opacity: 0; } to { opacity: 1; } }

.venue-modal {
  background: var(--navy); color: var(--ivory); border: 1px solid rgba(155,130,65,0.4);
  border-radius: var(--radius); width: 100%; max-width: 960px; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
  overflow: hidden; display: flex; flex-direction: column;
}
.venue-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px 24px 16px; }
.venue-modal-kicker { margin: 0 0 4px; color: var(--gold-bright); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.venue-modal-head h2 { margin: 0; color: var(--ivory); font-size: 1.5rem; }
.venue-close {
  flex: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: rgba(244,241,233,0.08); border: 1px solid rgba(155,130,65,0.4); color: var(--ivory);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.venue-close:hover { background: rgba(244,241,233,0.16); border-color: var(--gold-bright); }
.venue-close svg { width: 20px; height: 20px; }

.venue-stage {
  position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--navy-deep, #161a31);
  overflow: hidden; border-top: 1px solid rgba(155,130,65,0.25); border-bottom: 1px solid rgba(155,130,65,0.25);
}
.venue-canvas { display: block; width: 100%; height: 100%; cursor: grab; touch-action: none; }
.venue-canvas:active { cursor: grabbing; }

.venue-loader {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 20px;
  color: var(--ivory-dim, rgba(244,241,233,0.75)); font-size: 0.95rem; background: var(--navy-deep, #161a31);
}
.venue-loader[hidden] { display: none; }
.venue-spin { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(155,130,65,0.25); border-top-color: var(--gold-bright); animation: fg-spin 1s linear infinite; }
.venue-hint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); z-index: 3; margin: 0;
  background: rgba(15,18,38,0.66); border: 1px solid rgba(155,130,65,0.35); color: var(--ivory);
  padding: 7px 14px; border-radius: 999px; font-size: 0.8rem; letter-spacing: 0.01em; pointer-events: none;
  backdrop-filter: blur(3px);
}
.venue-hint[hidden] { display: none; }
.venue-modal-foot { margin: 0; padding: 14px 24px 18px; font-size: 0.85rem; color: var(--ivory-dim, rgba(244,241,233,0.72)); }

.venue-audio-btn {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  background: rgba(15,18,38,0.6); border: 1px solid rgba(155,130,65,0.45); color: var(--ivory);
  backdrop-filter: blur(3px); transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.venue-audio-btn:hover { background: rgba(15,18,38,0.85); border-color: var(--gold-bright); }
.venue-audio-btn[hidden] { display: none; }
.venue-audio-btn svg { width: 20px; height: 20px; }
.venue-audio-btn .ico-off { display: none; }
.venue-audio-btn.is-muted { color: var(--ivory-dim, rgba(244,241,233,0.7)); }
.venue-audio-btn.is-muted .ico-on { display: none; }
.venue-audio-btn.is-muted .ico-off { display: inline; }

@media (max-width: 680px) {
  .venue-modal-backdrop { padding: 0; }
  .venue-modal { max-width: 100%; height: 100%; border-radius: 0; border: none; }
  .venue-stage { aspect-ratio: auto; flex: 1; }
}
