/* ── Design Tokens ─────────────────────────────── */
:root {
  --bg:           #08070f;
  --bg-section:   #0c0b16;
  --bg-card:      rgba(255, 255, 255, 0.03);
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-dim:     rgba(201, 168, 76, 0.18);
  --gold-glow:    rgba(201, 168, 76, 0.12);
  --crimson:      #6b1d2a;
  --crimson-glow: rgba(107, 29, 42, 0.3);
  --ivory:        #f5f0e8;
  --text-soft:    rgba(245, 240, 232, 0.62);
  --text-dim:     rgba(245, 240, 232, 0.3);
  --border:       rgba(201, 168, 76, 0.12);
  --border-hover: rgba(201, 168, 76, 0.35);
  --radius-sm:    8px;
  --radius-lg:    18px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.0, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ivory);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Ambient Background ────────────────────────── */
.ambient {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(155, 114, 207, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(107, 29, 42, 0.05) 0%, transparent 45%);
  animation: ambientDrift 25s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes ambientDrift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(1.5%, 2%) rotate(1deg); }
}

/* ── Typography ────────────────────────────────── */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.08;
  color: var(--ivory);
}

.display-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ivory);
}

.body-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-soft);
}

.gold-text { color: var(--gold); }
.gold-light-text { color: var(--gold-light); }

/* ── Divider ───────────────────────────────────── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.divider-center { margin: 0 auto; }

/* ── Buttons ───────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #08070f;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-soft);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  color: var(--ivory);
  border-color: var(--border-hover);
}

/* ── Navigation ────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  background: rgba(8, 7, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ivory); }

.nav-cta {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 10px 22px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  color: var(--bg) !important;
  background: var(--gold);
  border-color: var(--gold);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── Page Container ────────────────────────────── */
main {
  position: relative;
  z-index: 1;
}

/* ── Section Base ──────────────────────────────── */
section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

section.full-bleed {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ── Split Hero ────────────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.split-hero-image {
  position: relative;
  overflow: hidden;
}

.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.split-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 7, 15, 0.15) 0%,
    rgba(8, 7, 15, 0.5) 100%
  );
}

.split-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 64px;
}

.split-hero-eyebrow {
  margin-bottom: 28px;
}

.split-hero-headline {
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: 1.06;
  margin-bottom: 0;
}

.split-hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 44px;
  max-width: 440px;
}

@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
  }
  .split-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8, 7, 15, 0.1) 0%,
      rgba(8, 7, 15, 0.7) 100%
    );
  }
  .split-hero-content {
    padding: 56px 28px 72px;
  }
  .split-hero-headline { font-size: clamp(36px, 8vw, 52px); }
  .hero-ctas { justify-content: flex-start !important; }
}

/* ── Hero ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 100px;
  position: relative;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-divider {
  margin: 0 auto 36px;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 56px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Quote Bar ─────────────────────────────────── */
.quote-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
  text-align: center;
  background: rgba(201, 168, 76, 0.02);
}

.quote-bar blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.55;
  color: var(--ivory);
  max-width: 800px;
  margin: 0 auto 20px;
}

.quote-attribution {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── The Work ──────────────────────────────────── */
.work-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.work-left .eyebrow { margin-bottom: 24px; }

.work-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}

.work-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.work-body {
  margin-bottom: 20px;
}

.work-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.work-pillar {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.work-pillar:hover { border-color: var(--gold-dim); }

.pillar-number {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ivory);
}

.pillar-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── The Room (Offer) ──────────────────────────── */
.room-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 48px;
}

.room-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.room-left .eyebrow { margin-bottom: 24px; }

.room-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 16px;
  color: var(--ivory);
}

.room-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.room-price {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 36px;
}

.room-right p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 20px;
}

.room-right p strong {
  color: var(--ivory);
  font-weight: 500;
}

.room-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 32px 0;
}

/* ── Entry Points (Quiz, Book, Podcast, Substack) */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.entry-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.entry-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.entry-card-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.entry-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ivory);
  line-height: 1.2;
}

.entry-card-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.entry-card-link {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.entry-card:hover .entry-card-link::after {
  transform: translateX(4px);
}

/* Quiz card — featured */
.entry-card.featured {
  grid-column: span 1;
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.03);
}

/* ── About ─────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(20%) contrast(1.05);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(201, 168, 76, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-image-frame {
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-right .eyebrow { margin-bottom: 24px; }

.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
}

.about-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.about-body {
  margin-bottom: 18px;
}

.about-credentials {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.credential-dot {
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
}

.credential-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ── Testimonials ──────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory);
  margin-bottom: 24px;
}

.testimonial-quote::before {
  content: '"';
  color: var(--gold);
  font-size: 36px;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 6px;
}

.testimonial-author {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── Section Headers (centered) ─────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow { margin-bottom: 20px; }

.section-header .divider { margin: 24px auto; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Footer ────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 48px 48px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--gold); }

.footer-tagline {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 220px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ivory); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-social a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 168, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ── Page-specific: The Room ───────────────────── */
.page-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 48px 100px;
}

.page-hero .eyebrow { margin-bottom: 28px; }

.page-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 24px;
}

.page-hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
}

/* ── The Room Detail ───────────────────────────── */
.room-detail {
  max-width: 780px;
  margin: 0 auto;
}

.room-detail-section {
  margin-bottom: 64px;
}

.room-detail-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.room-detail-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.room-detail p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.room-detail p strong {
  color: var(--ivory);
  font-weight: 500;
}

.room-detail-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 48px 0;
}

.room-investment {
  text-align: center;
  padding: 64px 48px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.02);
  margin-top: 80px;
}

.room-investment-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.room-investment-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 36px;
}

.room-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.7;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ── About Page ────────────────────────────────── */
.about-full {
  max-width: 820px;
  margin: 0 auto;
}

.about-full p {
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.about-full p strong {
  color: var(--ivory);
  font-weight: 500;
}

.about-full p em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── Media Page ────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.media-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.media-card-type {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.media-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ivory);
}

.media-card-pub {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── Quiz Popup ────────────────────────────────── */
#quiz-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 1000;
  width: 90%;
  max-width: 520px;
  background: #0e0c1c;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(201, 168, 76, 0.06);
}

#quiz-popup-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.3);
  font-size: 14px;
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.2s;
  line-height: 1;
}
#quiz-popup-close:hover { color: var(--ivory); }

.popup-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.popup-divider {
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 28px;
}

.popup-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ivory);
  margin-bottom: 18px;
}

.popup-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.popup-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 380px;
  margin: 0 auto 32px;
}

.popup-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #08070f;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}
.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.3);
}

.popup-dismiss {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-dim);
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.popup-dismiss:hover { color: var(--text-soft); }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .work-section { grid-template-columns: 1fr; gap: 60px; }
  .room-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-section { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 360px; }
  .entry-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 80px 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 24px 80px; }
  .quote-bar { padding: 48px 24px; }
  .room-section { padding: 80px 24px; }
  .entry-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .page-hero { padding: 140px 24px 80px; }
  .room-investment { padding: 48px 24px; }
}
