  :root {
    --gold: #d4af37;
    --gold-hi: #f3dc8e;
    --gold-soft: rgba(212, 175, 55, 0.35);
    --gold-faint: rgba(212, 175, 55, 0.14);
    --crimson: #e0455a;
    --green: #6fc98a;
    --ink: #0b0b14;
    --ink-2: #100d1d;
    --card-ink: #131020;
    --text: #e8e4da;
    --text-dim: rgba(232, 228, 218, 0.72);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--ink);
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-size: 1.12rem;
    line-height: 1.65;
    overflow-x: hidden;
  }
  h1, h2, h3, .display { font-family: 'Cinzel Decorative', Georgia, serif; font-weight: 700; }
  a { color: var(--gold); }
  img { max-width: 100%; height: auto; display: block; }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
  section { position: relative; padding: 5.5rem 0; }
  .kicker {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }
  .section-title {
    font-size: clamp(1.7rem, 4.2vw, 2.5rem);
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .section-title .flare { color: var(--gold); text-shadow: 0 0 24px var(--gold-soft); }
  .center { text-align: center; }
  .lead { color: var(--text-dim); max-width: 60ch; }
  .center .lead { margin: 0 auto; }

  /* ---------- Nav ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(11, 11, 20, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  }
  .nav-inner {
    max-width: 1080px; margin: 0 auto;
    padding: 0.8rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .brand {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-decoration: none;
    text-shadow: 0 0 16px var(--gold-soft);
    white-space: nowrap;
  }
  .nav-links { display: flex; align-items: center; gap: 1.4rem; }
  .nav-links a {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: var(--text);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s ease, color 0.2s ease;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold); }
  .nav-cta {
    color: var(--ink) !important;
    background: linear-gradient(180deg, #e8c96a, var(--gold));
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    opacity: 1 !important;
    box-shadow: 0 0 16px var(--gold-soft);
  }
  .nav-toggle {
    display: none;
    background: none; border: 1px solid var(--gold-soft);
    color: var(--gold); border-radius: 8px;
    font-size: 1.3rem; line-height: 1;
    padding: 0.35rem 0.6rem; cursor: pointer;
  }
  @media (max-width: 820px) {
    .nav-toggle { display: block; }
    .nav-links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: rgba(11, 11, 20, 0.97);
      border-bottom: 1px solid rgba(212, 175, 55, 0.18);
      padding: 0.5rem 0 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.7rem 1.25rem; width: 100%; text-align: center; }
    .nav-cta { width: auto !important; margin: 0.5rem auto 0; }
  }

  /* ---------- Hero ---------- */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 7rem 1.25rem 4rem;
    position: relative;
    background:
      linear-gradient(180deg, rgba(11,11,20,0.72) 0%, rgba(11,11,20,0.55) 45%, rgba(11,11,20,0.82) 100%),
      url('images/moon-wide.jpg') center 30% / cover no-repeat,
      var(--ink);
  }
  #nebula {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 780px; }
  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 4.6rem);
    letter-spacing: 0.06em;
    color: var(--gold);
    text-shadow: 0 0 40px var(--gold-soft), 0 0 90px rgba(212, 175, 55, 0.18);
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 2.4vw, 1.15rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.92;
    margin-bottom: 1.1rem;
  }
  .hero-line {
    color: var(--text-dim);
    font-size: clamp(1.05rem, 2.6vw, 1.25rem);
    max-width: 52ch;
    margin: 0 auto 2.2rem;
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
  .btn {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border-radius: 999px;
    padding: 0.9rem 2.2rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .btn-gold {
    color: var(--ink);
    background: linear-gradient(180deg, #e8c96a, var(--gold));
    border: none;
    box-shadow: 0 0 22px var(--gold-soft);
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 34px var(--gold-soft); }
  .btn-ghost {
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.55);
  }
  .btn-ghost:hover { border-color: var(--gold); box-shadow: 0 0 16px var(--gold-soft); transform: translateY(-2px); }
  .hero-badges {
    margin-top: 2.6rem;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem 1.8rem;
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-weight: 400;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.85;
  }
  .scroll-hint {
    position: absolute; bottom: 1.6rem; left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.4rem;
    opacity: 0.6;
    animation: bob 2.2s ease-in-out infinite;
    z-index: 2;
    text-decoration: none;
  }
  @keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

  /* ---------- About ---------- */
  .about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
  }
  @media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat {
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(212,175,55,0.06), transparent 60%), var(--card-ink);
    padding: 1.4rem 1.1rem;
    text-align: center;
  }
  .stat .big {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 1.7rem;
    color: var(--gold);
    text-shadow: 0 0 18px var(--gold-soft);
    display: block;
    margin-bottom: 0.3rem;
  }
  .stat .small {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    text-transform: uppercase;
  }
  .about p + p { margin-top: 1rem; }

  /* ---------- Events ---------- */
  #events { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%); }
  .event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.6rem;
  }
  @media (max-width: 820px) { .event-cards { grid-template-columns: 1fr; } }
  .event-card {
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    background:
      radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,0.08), transparent 55%),
      var(--card-ink);
    padding: 2rem 1.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .event-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 14px 34px rgba(0,0,0,0.5), 0 0 22px var(--gold-faint);
  }
  .event-card .icon {
    font-size: 1.8rem;
    color: var(--gold);
    text-shadow: 0 0 16px var(--gold-soft);
    margin-bottom: 0.9rem;
  }
  .event-card h3 {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.7rem;
  }
  .event-card p { color: var(--text-dim); font-size: 1.02rem; }

  /* ---------- Parlor (games) ---------- */
  #parlor { background: var(--ink); }
  .parlor-tabs {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.6rem;
    margin: 2.2rem 0 0.5rem;
  }
  .parlor-tab {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .parlor-tab:hover { border-color: var(--gold); box-shadow: 0 0 14px var(--gold-soft); }
  .parlor-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .parlor-tab.active {
    color: var(--ink);
    background: linear-gradient(180deg, #e8c96a, var(--gold));
    border-color: transparent;
    box-shadow: 0 0 20px var(--gold-soft);
  }
  .parlor-panel { display: none; }
  .parlor-panel.active { display: block; animation: panelin 0.5s ease both; }
  @keyframes panelin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

  /* ---------- Reviews ---------- */
  #reviews { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 50%, var(--ink) 100%); }
  .review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: 2.6rem;
  }
  @media (max-width: 820px) { .review-cards { grid-template-columns: 1fr; } }
  .review-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    background: var(--card-ink);
    padding: 1.8rem 1.5rem;
    text-align: left;
  }
  .review-card .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.8rem; }
  .review-card blockquote { color: var(--text-dim); font-style: italic; font-size: 1.02rem; }
  .review-card cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--gold);
  }
  .review-widget-shell {
    max-width: 760px;
    margin: 2.6rem auto 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    background:
      radial-gradient(120% 90% at 50% 0%, rgba(212,175,55,0.07), transparent 55%),
      var(--card-ink);
    padding: 1.6rem 1.4rem;
    overflow: hidden;
  }
  .review-widget-shell iframe { max-width: 100%; border: 0; }
  #gigsalad-reviews-widget { max-width: 600px; margin: 0 auto; text-align: left; }
  #gigsalad-reviews-widget, #gigsalad-reviews-widget p, #gigsalad-reviews-widget span,
  #gigsalad-reviews-widget div { color: var(--text); }
  #gigsalad-reviews-widget a { color: var(--gold); }
  .widget-placeholder {
    color: var(--text-dim);
    font-style: italic;
    padding: 2.5rem 1rem;
  }

  /* ---------- Contact ---------- */
  .contact-card {
    max-width: 640px;
    margin: 2.4rem auto 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    background:
      radial-gradient(120% 90% at 50% 0%, rgba(212,175,55,0.07), transparent 55%),
      var(--card-ink);
    padding: 2.4rem 2rem;
  }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
  .field { text-align: left; }
  .field label {
    display: block;
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }
  .field input, .field select, .field textarea {
    width: 100%;
    background: rgba(232, 228, 218, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    padding: 0.75rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-faint);
  }
  .field select option { background: var(--card-ink); color: var(--text); }
  .field.full { grid-column: 1 / -1; }
  .contact-card .btn-gold { width: 100%; margin-top: 1.2rem; }

  /* ---------- Footer ---------- */
  footer {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    padding: 2.4rem 1.25rem 2.8rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
  }
  footer .brand { display: inline-block; margin-bottom: 0.6rem; }

  /* ---------- Shared game styles ---------- */
  .game-shell { max-width: 660px; margin: 0 auto; text-align: center; padding-top: 2.2rem; }
  .game-title {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    letter-spacing: 0.08em;
    color: var(--gold);
    text-shadow: 0 0 26px var(--gold-soft);
    margin-bottom: 0.4rem;
  }
  .game-tagline { color: var(--text-dim); margin: 0 auto 2rem; max-width: 46ch; }
  .game-qcount {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.85;
    margin-bottom: 0.9rem;
    min-height: 1.1em;
  }
  .game-question {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    line-height: 1.5;
    min-height: 3em;
    margin-bottom: 1.5rem;
  }
  .game-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
  .chip {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 999px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .chip:hover { border-color: var(--gold); box-shadow: 0 0 14px var(--gold-soft); transform: translateY(-2px); }
  .chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .hidden { display: none !important; }
  .fade-in { animation: fadein 0.6s ease both; }
  @keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
  .guess-name {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: clamp(1.4rem, 4.2vw, 2rem);
    color: var(--gold);
    text-shadow: 0 0 24px var(--gold-soft);
    margin-top: 0.4rem;
  }

  /* Mind Reader cards */
  .mr-cards {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: clamp(10px, 2.2vw, 18px);
    perspective: 900px;
    margin-bottom: 1.75rem;
  }
  .mr-card {
    width: clamp(76px, 13.5vw, 100px);
    height: clamp(110px, 19.6vw, 145px);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.35, 0, 0.25, 1);
  }
  .mr-card.mr-flipped { transform: rotateY(180deg); }
  .mr-face, .mr-back {
    position: absolute; inset: 0;
    border-radius: 9px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 8px 22px rgba(0,0,0,0.65);
    overflow: hidden;
  }
  .mr-face {
    background:
      radial-gradient(120% 90% at 50% 0%, rgba(212,175,55,0.10), transparent 55%),
      radial-gradient(90% 70% at 50% 105%, rgba(90,30,60,0.35), transparent 60%),
      linear-gradient(160deg, #1a1630 0%, var(--card-ink) 45%, #0d0a18 100%);
    border: 1px solid rgba(212,175,55,0.55);
    display: flex; align-items: center; justify-content: center;
  }
  .mr-face::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(115deg,
      transparent 30%, rgba(255,246,214,0.10) 46%,
      rgba(255,246,214,0.16) 50%, rgba(255,246,214,0.10) 54%,
      transparent 70%);
    pointer-events: none;
  }
  .mr-frame {
    position: absolute; inset: 5px;
    border: 1px solid rgba(212,175,55,0.65);
    border-radius: 6px;
    pointer-events: none;
  }
  .mr-frame::before {
    content: "";
    position: absolute; inset: 3px;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 4px;
  }
  .mr-medallion {
    position: absolute; top: 50%; left: 50%;
    width: 58%; aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 50%;
    box-shadow: inset 0 0 14px rgba(212,175,55,0.10), 0 0 10px rgba(212,175,55,0.08);
    pointer-events: none;
  }
  .mr-flourish {
    position: absolute; left: 50%; transform: translateX(-50%);
    font-size: 0.55rem; letter-spacing: 0.45em;
    color: rgba(212,175,55,0.75);
    text-shadow: 0 0 6px var(--gold-soft);
    pointer-events: none;
  }
  .mr-flourish.mr-top { top: 13%; }
  .mr-flourish.mr-bottom { bottom: 13%; }
  .mr-pip {
    position: absolute; font-size: clamp(0.72rem, 1.7vw, 0.95rem);
    font-weight: 700; line-height: 1.05; text-align: center;
    font-family: Georgia, serif; z-index: 2;
  }
  .mr-pip.mr-tl { top: 9px; left: 10px; }
  .mr-pip.mr-br { bottom: 9px; right: 10px; transform: rotate(180deg); }
  .mr-center {
    position: relative;
    font-size: clamp(2rem, 4.8vw, 2.8rem);
    font-family: Georgia, serif;
    font-weight: 700;
    z-index: 2; line-height: 1;
  }
  .mr-rank {
    display: block;
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.42em;
    letter-spacing: 0.14em;
    margin-top: 0.18em;
  }
  .mr-gold-suit .mr-pip, .mr-gold-suit .mr-center {
    background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 45%, #9c7b1e 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.45));
  }
  .mr-red-suit .mr-pip, .mr-red-suit .mr-center {
    background: linear-gradient(180deg, #f2798a 0%, var(--crimson) 45%, #8e1f2e 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--crimson);
    filter: drop-shadow(0 0 6px rgba(224,69,90,0.45));
  }
  .mr-card:not(.mr-flipped):hover { transform: translateY(-5px); }
  .mr-card:not(.mr-flipped):hover .mr-face {
    box-shadow: 0 12px 28px rgba(0,0,0,0.7), 0 0 18px var(--gold-soft);
  }
  .mr-back {
    transform: rotateY(180deg);
    background:
      radial-gradient(circle at 50% 50%, rgba(212,175,55,0.20), transparent 62%),
      repeating-linear-gradient(45deg, #16122a 0 5px, #0d0a1c 5px 10px),
      #0d0a1c;
    border: 1px solid rgba(212,175,55,0.5);
    display: flex; align-items: center; justify-content: center;
  }
  .mr-back::before {
    content: "";
    position: absolute; inset: 6px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 5px;
  }
  .mr-back::after {
    content: "\2726";
    color: var(--gold);
    font-size: 1.7rem;
    text-shadow: 0 0 16px var(--gold-soft);
  }
  .mr-reading {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    color: var(--gold);
    min-height: 2em;
    margin-top: 0.5rem;
    letter-spacing: 0.06em;
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.55; text-shadow: 0 0 6px var(--gold-soft); }
    50% { opacity: 1; text-shadow: 0 0 22px var(--gold-soft); }
  }

  /* Oracle eye */
  .or-eye {
    width: 110px; height: 110px;
    margin: 0 auto 1.8rem;
    border-radius: 50%;
    border: 1px solid var(--gold-soft);
    position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 30px rgba(212,175,55,0.12), 0 0 26px rgba(212,175,55,0.15);
  }
  .or-eye::before {
    content: "";
    position: absolute; inset: 10px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50%;
  }
  .or-pupil {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--gold-hi), var(--gold) 45%, #6b5416 100%);
    box-shadow: 0 0 18px var(--gold-soft);
  }
  .or-thinking .or-pupil { animation: scan 1.2s ease-in-out infinite; }
  @keyframes scan {
    0%, 100% { transform: translateX(-14px); }
    50% { transform: translateX(14px); }
  }

  /* Trivia */
  .tr-meta {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 460px; margin: 0 auto 1rem;
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.78rem; letter-spacing: 0.18em;
    color: var(--gold); opacity: 0.85; min-height: 1.1em;
  }
  .tr-options {
    display: flex; flex-direction: column; gap: 0.6rem;
    max-width: 460px; margin: 0 auto 1rem;
  }
  .tr-opt {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.08rem;
    text-align: left;
    color: var(--text);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }
  .tr-opt:hover:not(:disabled) {
    border-color: var(--gold);
    box-shadow: 0 0 14px var(--gold-soft);
    transform: translateY(-2px);
  }
  .tr-opt:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
  .tr-opt:disabled { cursor: default; opacity: 0.75; }
  .tr-opt.tr-correct { border-color: var(--green); box-shadow: 0 0 16px rgba(111, 201, 138, 0.35); opacity: 1; }
  .tr-opt.tr-wrong { border-color: var(--crimson); box-shadow: 0 0 16px rgba(224, 69, 90, 0.3); opacity: 1; }
  .tr-fact {
    font-size: 1rem; line-height: 1.55;
    opacity: 0; max-width: 52ch;
    margin: 0 auto 1.1rem; min-height: 2.4em;
    transition: opacity 0.4s ease;
    color: var(--text-dim);
  }
  .tr-fact.tr-show { opacity: 1; }
  .tr-verdict {
    font-family: 'Cinzel Decorative', Georgia, serif;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.25rem;
  }
  .tr-verdict.tr-good { color: var(--green); }
  .tr-verdict.tr-bad { color: var(--crimson); }
  .tr-rank {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: clamp(1.4rem, 4vw, 1.9rem);
    color: var(--gold);
    text-shadow: 0 0 22px var(--gold-soft);
    margin: 0.5rem 0 0.6rem;
  }

  /* ---------- Imagery ---------- */
  .brand-logo {
    height: 34px; width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px var(--gold-soft));
  }
  .brand { display: inline-flex; align-items: center; }
  .about-photo {
    margin: 0;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 24px var(--gold-faint);
    transform: rotate(1.2deg);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2.6rem;
  }
  @media (max-width: 820px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
  .poster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    margin-top: 2.6rem;
  }
  @media (max-width: 980px) { .poster-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .poster-grid { grid-template-columns: 1fr; } }
  .poster-card {
    margin: 0;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-ink);
    box-shadow: 0 10px 28px rgba(0,0,0,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .poster-card img { width: 100%; height: 100%; object-fit: cover; }
  .poster-card:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(0,0,0,0.65), 0 0 24px var(--gold-faint);
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .scroll-hint { animation: none; }
    .mr-card { transition: none; }
    .mr-card:not(.mr-flipped):hover { transform: none; }
    .mr-reading { animation: none; opacity: 1; }
    .or-thinking .or-pupil { animation: none; }
    .fade-in, .parlor-panel.active { animation: none; }
    .btn:hover, .chip:hover, .tr-opt:hover:not(:disabled), .event-card:hover { transform: none; }
  }

  /* ================================================================
     ADDITIONS — video, split sections, reviews, FAQ, CTA, footer
     ================================================================ */

  /* ---------- Skip link ---------- */
  .skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: #14100a; padding: 0.7rem 1.1rem;
    z-index: 200; border-radius: 0 0 8px 0; font-size: 0.9rem;
  }
  .skip-link:focus { left: 0; }

  /* ---------- Trust strip ---------- */
  .trust-strip {
    border-top: 1px solid var(--gold-faint);
    border-bottom: 1px solid var(--gold-faint);
    background: rgba(212,175,55,0.035);
    padding: 1rem 0;
  }
  .trust-strip .wrap {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.6rem 2.2rem; align-items: center;
  }
  .trust-strip span {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-dim);
  }
  .trust-strip b { color: var(--gold); font-weight: 400; }

  /* ---------- Generic split (image + text) ---------- */
  .split {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem; align-items: center;
  }
  .split.flip .split-media { order: 2; }
  .split-media img {
    width: 100%; border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.28);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  }
  .split-body .lead + .lead { margin-top: 1rem; }
  @media (max-width: 860px) {
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split.flip .split-media { order: 0; }
  }

  /* ---------- Video ---------- */
  .video-wrap {
    display: grid; grid-template-columns: 300px 1fr;
    gap: 2.6rem; align-items: center; margin-top: 2.4rem;
    text-align: left;
  }
  .video-frame {
    position: relative; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(212,175,55,0.4);
    box-shadow: 0 26px 70px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.08);
    background: #000;
  }
  .video-frame video { width: 100%; height: auto; display: block; }
  .video-note {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.9rem;
  }
  @media (max-width: 780px) {
    .video-wrap { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .video-frame { max-width: 300px; }
  }

  /* ---------- Reviews (hardcoded, no JS dependency) ---------- */
  .review-card blockquote::before { content: '\201C'; color: var(--gold); }
  .review-card blockquote::after { content: '\201D'; color: var(--gold); }
  .review-source {
    margin-top: 2rem; font-size: 0.95rem; color: var(--text-dim);
  }
  .review-source a { text-decoration: none; border-bottom: 1px solid var(--gold-soft); }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 800px; margin: 2.4rem auto 0; text-align: left; }
  .faq-list details {
    border: 1px solid rgba(212,175,55,0.24);
    border-radius: 12px; background: var(--card-ink);
    margin-bottom: 0.9rem; overflow: hidden;
  }
  .faq-list summary {
    cursor: pointer; list-style: none;
    padding: 1.1rem 1.3rem;
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.92rem; letter-spacing: 0.05em; color: var(--text);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; line-height: 1; }
  .faq-list details[open] summary::after { content: '\2013'; }
  .faq-list details p { padding: 0 1.3rem 1.3rem; color: var(--text-dim); margin: 0; }

  /* ---------- Pricing note ---------- */
  .price-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem; margin-top: 2.2rem; text-align: left;
  }
  .price-card {
    border: 1px solid rgba(212,175,55,0.26); border-radius: 14px;
    background: var(--card-ink); padding: 1.5rem 1.4rem;
  }
  .price-card h3 {
    font-size: 0.98rem; letter-spacing: 0.06em; color: var(--text); margin-bottom: 0.5rem;
  }
  .price-card .amount {
    font-family: 'Cinzel Decorative', Georgia, serif;
    color: var(--gold); font-size: 1.5rem; display: block; margin-bottom: 0.5rem;
  }
  .price-card p { color: var(--text-dim); font-size: 0.98rem; }

  /* ---------- CTA bar ---------- */
  .cta-bar {
    border-top: 1px solid var(--gold-faint);
    border-bottom: 1px solid var(--gold-faint);
    background: radial-gradient(120% 140% at 50% 0%, rgba(212,175,55,0.09), transparent 60%);
    padding: 3.4rem 0; text-align: center;
  }
  .cta-bar h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin-bottom: 1rem; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.4rem; }

  /* ---------- Poster lobby ---------- */
  .poster-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

  /* ---------- Footer ---------- */
  footer .foot-grid {
    max-width: 1080px; margin: 0 auto; padding: 0 1.25rem;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; text-align: left; margin-bottom: 2.2rem;
  }
  footer .foot-grid h4 {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.8rem; font-weight: 400;
  }
  footer .foot-grid a { display: block; color: var(--text-dim); text-decoration: none; font-size: 0.98rem; margin-bottom: 0.4rem; }
  footer .foot-grid a:hover { color: var(--gold); }
  .foot-phone {
    font-family: 'Cinzel Decorative', Georgia, serif;
    font-size: 1.05rem; color: var(--gold) !important; letter-spacing: 0.06em;
  }
  .foot-sig { max-width: 150px; margin: 1.4rem auto 0; opacity: 0.55; }

  /* ---------- Sub-page hero (shorter than homepage) ---------- */
  .hero.hero-sub-page {
    min-height: 0;
    padding: 9rem 1.25rem 4.5rem;
    background:
      radial-gradient(120% 90% at 50% 0%, rgba(212,175,55,0.10), transparent 60%),
      var(--ink);
    border-bottom: 1px solid var(--gold-faint);
  }
  .hero.hero-sub-page h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
  .hero.hero-sub-page .hero-line { margin-left: auto; margin-right: auto; }
  .video-body { align-self: center; }
  .video-body .lead { max-width: 46ch; }

  /* ---------- Nav density fix (7 items must fit one line) ---------- */
  @media (min-width: 861px) {
    .nav-links { gap: 1.05rem; flex-wrap: nowrap; }
    .nav-links a { font-size: 0.75rem; letter-spacing: 0.09em; white-space: nowrap; }
    .nav-links .nav-cta { padding: 0.45rem 0.9rem; }
    .brand { font-size: 0.95rem; }
    .nav-inner { gap: 1.2rem; }
  }
  @media (min-width: 1120px) {
    .nav-links { gap: 1.35rem; }
    .nav-links a { font-size: 0.79rem; letter-spacing: 0.12em; }
  }

  /* ---------- Hero with portrait (two-column) ---------- */
  .hero.hero-split { display: block; }
  .hero-split .hero-grid {
    position: relative; z-index: 2;
    max-width: 1140px; margin: 0 auto; padding: 0 1.25rem;
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem; align-items: center; text-align: left;
  }
  .hero-split .hero-content { max-width: none; text-align: left; }
  .hero-split .hero-ctas { justify-content: flex-start; }
  .hero-split .hero-badges { justify-content: flex-start; }
  .hero-split .hero-line { margin-left: 0; }
  .hero-portrait { position: relative; }
  .hero-portrait img {
    width: 100%; border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(212,175,55,0.09);
  }
  @media (max-width: 900px) {
    .hero-split .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; }
    .hero-split .hero-content { text-align: center; }
    .hero-split .hero-ctas, .hero-split .hero-badges { justify-content: center; }
    .hero-split .hero-line { margin-left: auto; margin-right: auto; }
    .hero-portrait { max-width: 340px; margin: 0 auto; order: -1; }
  }

  /* ---------- Portrait gallery ---------- */
  .portrait-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem; margin-top: 2.6rem;
  }
  .portrait-grid figure { margin: 0; }
  .portrait-grid img {
    width: 100%; height: 380px; object-fit: cover; object-position: center 22%;
    border-radius: 14px; border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
  }
  .portrait-grid img.wide { object-position: center center; }

  /* ---------- Hero portrait sizing fix ---------- */
  @media (min-width: 901px) {
    .hero-split .hero-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
    .hero-split .hero-sub { white-space: nowrap; }
  }
  .hero-portrait img {
    max-height: 60vh;
    width: 100%;
    object-fit: cover;
    object-position: center 18%;
  }
  @media (max-width: 900px) {
    .hero-portrait img { max-height: 42vh; }
  }

  /* ================================================================
     IMAGE ASPECT FIX — no forced heights, no object-fit cropping.
     Every photo renders at its true aspect ratio.
     ================================================================ */
  .hero-portrait img {
    max-height: none;
    object-fit: fill;          /* irrelevant once height is auto */
    height: auto;
    width: 100%;
  }
  .hero-portrait { max-width: 360px; margin-left: auto; }
  @media (max-width: 900px) {
    .hero-portrait { max-width: 300px; margin: 0 auto; }
    .hero-portrait img { max-height: none; }
  }

  /* Two portraits (near-identical 3:4 ratios) side by side, moon shot full width */
  .portrait-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
  .portrait-grid img { height: auto; object-fit: fill; }
  @media (max-width: 620px) { .portrait-grid { grid-template-columns: 1fr; } }
  .portrait-wide { max-width: 900px; margin: 1.4rem auto 0; }
  .portrait-wide img {
    width: 100%; height: auto;
    border-radius: 14px; border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 18px 44px rgba(0,0,0,0.5);
  }

  /* Posters and split media at natural aspect too */
  .poster-card { aspect-ratio: auto !important; height: auto !important; }
  .poster-card img { height: auto !important; object-fit: fill !important; }
  .split-media img { height: auto; object-fit: fill; }
  .about-photo img { height: auto; object-fit: fill; }
