@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #050505;
  --panel: rgba(10, 10, 12, 0.72);
  --panel-strong: rgba(5, 6, 8, 0.84);
  --gold: #d7b06a;
  --gold-soft: #9e7742;
  --gold-line: rgba(214, 176, 105, 0.35);
  --text: #f1e6d1;
  --muted: rgba(241, 230, 209, 0.78);
  --burgundy: rgba(101, 22, 29, 0.35);
  --teal: rgba(9, 75, 81, 0.28);
  --shadow: 0 20px 60px rgba(0,0,0,.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(203,153,76,0.14), transparent 24%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  min-height: 100vh;
}

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

.page-shell {
  width: min(96vw, 1780px);
  margin: 16px auto 24px;
  padding: 12px;
  border: 1px solid rgba(212, 170, 96, 0.22);
  border-radius: 28px;
  background: rgba(3,3,4,0.78);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 16px 18px;
}

.brand-title, .nav-link, .eyebrow, .section-title, .footer-pill strong {
  font-family: 'Cinzel', Georgia, serif;
}

.brand-title {
  font-size: clamp(28px, 2.25vw, 42px);
  letter-spacing: 0.07em;
  color: #f0ddbf;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 34px);
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 221, 191, 0.9);
  opacity: .94;
}

.age-pill {
  border: 1px solid rgba(215,176,106,0.35);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--text);
  background: rgba(8,8,8,0.48);
  backdrop-filter: blur(12px);
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: clamp(700px, 58vw, 980px);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.07), rgba(0,0,0,0.32)),
    url('../img/bg-portal.png') center/cover no-repeat;
  border: 1px solid rgba(212,170,96,0.16);
}

.hero-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,186,84,0.09), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.82fr 1.15fr;
  align-items: stretch;
}

.hero-link {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  transition: transform .35s ease, filter .35s ease;
}
.hero-link:hover { transform: translateY(-4px); filter: brightness(1.05); }
.hero-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.38));
}
.hero-link.center img { object-position: center center; }

.social-wrap,
.worlds-wrap,
.footer-grid {
  margin-top: 18px;
}

.social-wrap {
  border: 1px solid rgba(212,170,96,0.18);
  border-radius: 26px;
  padding: 22px 18px 16px;
  background: linear-gradient(180deg, rgba(9,10,12,.7), rgba(4,5,7,.92));
}

.social-wrap img {
  width: 100%;
  height: auto;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Cinzel', serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 15px;
  color: #e9cf9b;
}
.section-label::before,
.section-label::after {
  content: '';
  width: min(12vw, 120px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 181, 97, 0.7), transparent);
}

.worlds-wrap {
  border: 1px solid rgba(212,170,96,0.18);
  border-radius: 26px;
  padding: 20px 18px 18px;
  background: linear-gradient(180deg, rgba(10,10,12,.64), rgba(4,5,7,.9));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.world-card {
  position: relative;
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(2,2,3,0.78)),
    linear-gradient(135deg, rgba(116,21,30,0.25), rgba(6,13,15,0.25));
  border: 1px solid rgba(212,170,96,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}
.world-card.center-card {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(2,2,3,0.8)),
    url('../img/bg-portal.png') center/cover no-repeat;
}
.world-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 40%);
  pointer-events: none;
}

.world-card .card-copy {
  position: relative;
  z-index: 2;
  width: min(60%, 340px);
}
.center-card .card-copy { width: min(68%, 420px); }

.logo-chip {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c9aa74;
  margin-bottom: 8px;
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 2.4vw, 44px);
  line-height: 0.96;
  letter-spacing: .04em;
  margin: 0 0 10px;
  color: #f2e5cf;
}
.card-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(241,230,209,0.82);
  max-width: 28ch;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 22px;
  border-radius: 999px;
  background: rgba(18,18,20,0.45);
  color: #f3e1bb;
  border: 1px solid rgba(215,176,106,0.36);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,.22);
  font-family: 'Cinzel', serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 14px;
}
.cta-btn span { font-size: 18px; }

.card-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.card-art img {
  position: absolute;
  right: -8%;
  bottom: -6%;
  width: min(62%, 400px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.34));
}
.card-art.kailey img { right: -8%; width: min(64%, 410px); }
.center-card .card-art img { width: min(44%, 260px); right: 2%; bottom: 4%; opacity: .9; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr auto;
  gap: 16px;
}

.footer-pill,
.news-pill,
.footer-mark {
  min-height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(212,170,96,0.18);
  background: rgba(7,8,10,0.72);
  backdrop-filter: blur(12px);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-pill .icon,
.footer-mark .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(215,176,106,0.42);
  display: grid;
  place-items: center;
  font-family: 'Cinzel', serif;
  color: #dcbc82;
  flex: 0 0 auto;
}
.footer-pill strong,
.news-pill strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  letter-spacing: .08em;
  color: #efd7a5;
}
.footer-pill span,
.news-pill span { color: rgba(241,230,209,.72); font-size: 14px; }

.news-pill {
  justify-content: space-between;
  gap: 18px;
}
.news-copy { min-width: 0; }
.news-form {
  display: flex;
  align-items: center;
  min-width: 280px;
  padding: 6px;
  background: rgba(18,18,19,0.68);
  border-radius: 999px;
  border: 1px solid rgba(212,170,96,0.15);
}
.news-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f1e6d1;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
}
.news-form button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(215,176,106,0.42);
  background: rgba(0,0,0,.4);
  color: #eed39d;
  cursor: pointer;
}

.footer-mark {
  justify-content: center;
  padding: 18px;
}
.footer-mark .icon {
  width: 56px;
  height: 56px;
  font-size: 28px;
}

.story-shell {
  width: min(94vw, 1380px);
  margin: 26px auto;
  padding: 20px;
  border: 1px solid rgba(212,170,96,0.18);
  border-radius: 30px;
  background: rgba(5,5,6,0.88);
  box-shadow: var(--shadow);
}
.story-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.56)),
    url('../img/bg-portal.png') center/cover fixed no-repeat;
}
.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  color: #e4ca95;
}
.story-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.story-panel,
.story-copy {
  border-radius: 26px;
  border: 1px solid rgba(212,170,96,0.16);
  background: rgba(8,8,10,0.72);
  overflow: hidden;
}
.story-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.story-panel img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}
.story-copy {
  padding: 36px;
  background: linear-gradient(180deg, rgba(8,8,10,.78), rgba(8,8,10,.94));
}
.story-copy h1 {
  margin: 0 0 12px;
  font-family: 'Cinzel', serif;
  letter-spacing: .04em;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.02;
}
.story-copy p {
  color: rgba(241,230,209,.84);
  font-size: 18px;
  line-height: 1.8;
  max-width: 38ch;
}
.notice-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(215,176,106,.16);
}

@media (max-width: 1280px) {
  .hero-stage { min-height: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-pill { grid-column: span 2; }
  .footer-mark { display:none; }
}

@media (max-width: 980px) {
  .page-shell { width: min(97vw, 1780px); padding: 10px; }
  .topbar { flex-direction: column; }
  .hero-stage { min-height: auto; }
  .hero-grid { position: relative; grid-template-columns: 1fr; }
  .hero-link { min-height: 360px; }
  .hero-link.center { min-height: 420px; }
  .card-grid, .story-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-pill { grid-column: span 1; flex-direction: column; align-items: stretch; }
  .news-form { min-width: 0; }
  .world-card .card-copy, .center-card .card-copy { width: 70%; }
}

@media (max-width: 640px) {
  .brand-title { text-align: center; }
  .nav { gap: 10px 16px; }
  .nav-link { font-size: 12px; }
  .hero-link { min-height: 280px; }
  .hero-link.center { min-height: 320px; }
  .world-card { min-height: 280px; padding: 18px; }
  .world-card .card-copy, .center-card .card-copy { width: 100%; }
  .card-art img { opacity: .25; right: -18%; width: 74%; }
  .story-copy { padding: 24px; }
}

/* =========================================================
   V8 — ONE PAGE / NO HEADER
   ========================================================= */
.landing-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(110,24,29,.16), transparent 30%),
    radial-gradient(circle at 83% 15%, rgba(0,84,89,.13), transparent 30%),
    #030405;
}

.onepage-shell {
  width: min(97vw, 1840px);
  height: calc(100vh - 14px);
  margin: 7px auto;
  padding: 10px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 112px 190px;
  gap: 10px;
  overflow: hidden;
  border-radius: 26px;
}

.compact-hero,
.compact-social,
.compact-worlds {
  margin: 0;
}

.compact-hero {
  min-height: 0;
  height: 100%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.12)),
    url('../img/bg-portal.png') center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(232,190,111,.08);
}

.compact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(75,8,15,.18), transparent 25%, transparent 75%, rgba(0,55,61,.16)),
    radial-gradient(circle at 50% 52%, rgba(229,174,88,.07), transparent 27%);
}

.floating-brand {
  position: absolute;
  z-index: 7;
  top: 14px;
  left: 20px;
  font-family: 'Cinzel', Georgia, serif;
  font-size: clamp(16px, 1.25vw, 24px);
  letter-spacing: .15em;
  color: rgba(244,222,181,.9);
  text-shadow: 0 2px 18px rgba(0,0,0,.8);
}

.floating-age {
  position: absolute;
  z-index: 7;
  top: 12px;
  right: 16px;
  padding: 7px 10px;
  border-radius: 12px;
  border: 1px solid rgba(215,176,106,.42);
  background: rgba(7,8,9,.42);
  backdrop-filter: blur(10px);
  color: #ead6ae;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 14px;
}

.compact-hero .hero-grid {
  grid-template-columns: 1.08fr .76fr 1.08fr;
}

.compact-hero .hero-link {
  padding-top: 8px;
}

.compact-hero .hero-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.02);
  transition: transform .38s ease, filter .38s ease;
}

.compact-hero .hero-link.center img {
  transform: scale(.95);
  object-position: center center;
}

.compact-hero .hero-link:hover img {
  transform: scale(1.045);
  filter: drop-shadow(0 12px 34px rgba(0,0,0,.42)) brightness(1.06);
}

.compact-hero .hero-link.center:hover img {
  transform: scale(.98);
}

.compact-social {
  height: 112px;
  padding: 5px 10px 9px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11,11,13,.76), rgba(4,5,7,.92));
  overflow: hidden;
}

.mini-section-title {
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: .23em;
  color: #e6c78b;
  font-size: 12px;
  white-space: nowrap;
}

.mini-section-title::before,
.mini-section-title::after {
  content: '';
  width: min(16vw, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,181,91,.64), transparent);
}
.mini-section-title span { font-size: 8px; color: #ffd783; }

.social-grid {
  height: calc(100% - 25px);
  display: grid;
  grid-template-columns: 1fr 1.16fr 1fr;
  gap: 8px;
}

.social-card {
  min-width: 0;
  height: 100%;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(235,190,102,.38);
  background: rgba(16,13,15,.74);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 24px rgba(255,255,255,.015),
    0 8px 22px rgba(0,0,0,.22);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.social-card:hover { transform: translateY(-2px); filter: brightness(1.08); }
.social-x { background: linear-gradient(135deg, rgba(72,9,17,.78), rgba(27,5,9,.72)); }
.social-of { background: linear-gradient(135deg, rgba(0,79,93,.86), rgba(0,34,51,.76)); border-color: rgba(70,203,230,.56); }
.social-ig { background: linear-gradient(135deg, rgba(82,8,53,.76), rgba(33,5,33,.74)); }

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(231,190,104,.62);
  background: rgba(0,0,0,.22);
  color: #fff;
}
.x-mark { font-size: 32px; font-family: Arial, sans-serif; }
.of-mark { border: 0; background: transparent; width: 62px; }
.of-mark img { width: 58px; height: 40px; object-fit: contain; filter: brightness(0) invert(1); }

.ig-mark {
  position: relative;
  background: radial-gradient(circle at 68% 24%, #ffd45c 0 7%, #ff6046 22%, #cc28a9 51%, #6136d9 79%, #183dbd 100%);
  border: 0;
}
.ig-mark::before {
  content: '';
  position: absolute;
  inset: 11px;
  border: 3px solid white;
  border-radius: 11px;
}
.ig-mark::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border: 3px solid white;
  border-radius: 50%;
  left: 18px;
  top: 18px;
}
.ig-mark span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  right: 12px;
  top: 11px;
}

.social-copy { min-width: 0; line-height: 1.04; }
.social-copy small,
.social-copy strong,
.social-copy span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-copy small { color: #edd4a1; font-size: 8px; letter-spacing: .22em; margin-bottom: 2px; }
.social-copy strong { font-family: 'Cinzel', Georgia, serif; color: #f5e6cb; font-size: clamp(15px, 1.25vw, 22px); letter-spacing: .05em; }
.social-copy span { color: rgba(244,232,211,.82); font-size: 10px; margin-top: 4px; }
.social-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230,186,99,.62);
  color: #f2d799;
  font-size: 20px;
}

.compact-worlds {
  height: 190px;
  padding: 5px 10px 9px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(10,10,12,.70), rgba(4,5,7,.94));
}

.compact-worlds .card-grid {
  height: calc(100% - 25px);
  gap: 8px;
}

.compact-worlds .world-card {
  height: 100%;
  min-height: 0;
  border-radius: 17px;
  padding: 12px 14px;
  overflow: hidden;
}
.compact-worlds .world-card .card-copy { width: 62%; }
.compact-worlds .center-card .card-copy { width: 65%; }
.compact-worlds .logo-chip { width: 34px; height: 34px; margin: 0 0 5px; }
.compact-worlds .eyebrow { font-size: 8px; letter-spacing: .18em; margin-bottom: 4px; }
.compact-worlds .card-title { font-size: clamp(20px, 1.85vw, 31px); line-height: .94; margin: 0 0 4px; }
.compact-worlds .card-text { font-size: 11px; line-height: 1.3; max-width: 28ch; }
.compact-worlds .cta-btn {
  margin-top: 7px;
  padding: 8px 13px;
  font-size: 9px;
  letter-spacing: .13em;
  gap: 8px;
  border-radius: 999px;
}
.compact-worlds .cta-btn span { font-size: 13px; }
.compact-worlds .card-art img {
  right: -7%;
  bottom: -28%;
  width: min(55%, 310px);
}
.compact-worlds .card-art.kailey img { width: min(58%, 320px); bottom: -30%; }
.compact-worlds .center-card .card-art img { width: min(38%, 210px); right: 2%; bottom: -8%; opacity: .92; }

@media (max-width: 1080px), (max-height: 720px) {
  .landing-page { overflow: auto; }
  .onepage-shell {
    height: auto;
    min-height: 100vh;
    grid-template-rows: auto auto auto;
    overflow: visible;
  }
  .compact-hero { height: min(72vw, 690px); }
  .compact-social { height: auto; }
  .social-grid { height: auto; grid-template-columns: 1fr; }
  .social-card { min-height: 84px; }
  .compact-worlds { height: auto; }
  .compact-worlds .card-grid { height: auto; grid-template-columns: 1fr; }
  .compact-worlds .world-card { min-height: 190px; }
}

@media (max-width: 680px) {
  .onepage-shell { width: 100%; margin: 0; border-radius: 0; padding: 6px; }
  .compact-hero { height: auto; min-height: 0; background-position: center top; }
  .compact-hero .hero-grid {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .compact-hero .hero-link { min-height: 62vh; }
  .compact-hero .hero-link.center { min-height: 50vh; order: -1; }
  .floating-brand { font-size: 14px; top: 10px; left: 12px; }
  .floating-age { top: 8px; right: 10px; }
  .social-copy strong { font-size: 17px; }
}

/* =========================================================
   V9 — RESPONSIVE LOCKED PROPORTIONS
   Goals:
   - Desktop/tablet keep the 3-column composition instead of stacking.
   - Buttons keep a stable visual size while the viewport changes.
   - Mobile hero: NW full-width, Alishya + Kailey equal side-by-side.
   - Mobile Explore: Our Story full-width, Alishya + Kailey equal side-by-side.
   ========================================================= */

/* Stable controls: do not balloon/shrink with viewport width */
.social-copy strong { font-size: 18px; }
.social-copy span { font-size: 10px; }
.social-copy small { font-size: 8px; }
.social-card {
  min-height: 76px;
  padding: 8px 14px;
}
.social-icon { width: 46px; height: 46px; }
.of-mark { width: 58px; }
.of-mark img { width: 56px; height: 38px; }
.social-arrow { width: 34px; height: 34px; }
.compact-worlds .cta-btn {
  min-height: 34px;
  padding: 8px 13px;
  font-size: 9px;
  white-space: nowrap;
}

/* Desktop / tablet landscape: NEVER collapse into one-column just because
   the browser window becomes narrower. Scroll vertically if height is short. */
@media (min-width: 761px) {
  .landing-page { overflow-x: hidden; }

  .onepage-shell {
    width: min(97vw, 1840px);
    min-width: 740px;
  }

  .compact-hero .hero-grid {
    position: absolute;
    inset: 0;
    grid-template-columns: 1.08fr .76fr 1.08fr;
  }

  .compact-social { height: 112px; }
  .social-grid {
    height: calc(100% - 25px);
    grid-template-columns: 1fr 1.16fr 1fr;
    gap: 8px;
  }

  .compact-worlds { height: 190px; }
  .compact-worlds .card-grid {
    height: calc(100% - 25px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .compact-worlds .world-card { min-height: 0; }
}

/* Short desktop windows: preserve the exact horizontal layout and simply
   make the page scroll vertically. */
@media (min-width: 761px) and (max-height: 760px) {
  .landing-page { overflow-y: auto; }
  .onepage-shell {
    height: auto;
    min-height: 0;
    grid-template-rows: 520px 112px 190px;
    overflow: visible;
  }
  .compact-hero { height: 520px; min-height: 520px; }
}

/* Medium desktop/tablet widths: same composition, slightly tighter copy only. */
@media (min-width: 761px) and (max-width: 1120px) {
  .onepage-shell { padding: 8px; gap: 8px; }
  .floating-brand { font-size: 15px; left: 14px; }
  .compact-worlds .world-card { padding: 10px 11px; }
  .compact-worlds .card-title { font-size: 20px; }
  .compact-worlds .eyebrow { font-size: 7px; }
  .compact-worlds .card-text { font-size: 10px; }
  .compact-worlds .logo-chip { width: 30px; height: 30px; }
  .compact-worlds .world-card .card-copy { width: 66%; }
  .compact-worlds .center-card .card-copy { width: 68%; }
  .social-card { padding-inline: 10px; gap: 8px; }
  .social-copy strong { font-size: 16px; }
  .social-icon { width: 42px; height: 42px; }
  .of-mark { width: 52px; }
  .of-mark img { width: 50px; height: 35px; }
}

/* Phone portrait: deliberate mobile composition, not automatic stacking. */
@media (max-width: 760px) {
  .landing-page {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .onepage-shell {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 7px;
    gap: 8px;
    border-radius: 0;
    grid-template-rows: auto auto auto;
    overflow: visible;
  }

  /* HERO: NW first, then two equal portrait panels side-by-side */
  .compact-hero {
    height: auto;
    min-height: 0;
    border-radius: 18px;
    background-position: center top;
    overflow: hidden;
  }

  .compact-hero .hero-grid {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "center center"
      "left right";
    gap: 0;
  }

  .compact-hero .hero-link.center {
    grid-area: center;
    order: 0;
    min-height: 315px;
    height: 315px;
    border-bottom: 1px solid rgba(215,176,106,.15);
  }
  .compact-hero .hero-link.left {
    grid-area: left;
    min-height: 270px;
    height: 270px;
    border-right: 1px solid rgba(215,176,106,.13);
  }
  .compact-hero .hero-link.right {
    grid-area: right;
    min-height: 270px;
    height: 270px;
  }

  .compact-hero .hero-link { padding-top: 0; }
  .compact-hero .hero-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
  }
  .compact-hero .hero-link.center img {
    object-position: center center;
    transform: scale(.92);
  }
  .compact-hero .hero-link:hover img,
  .compact-hero .hero-link.center:hover img { transform: none; }

  .floating-brand {
    top: 10px;
    left: 12px;
    font-size: 12px;
    letter-spacing: .13em;
  }
  .floating-age {
    top: 8px;
    right: 9px;
    font-size: 12px;
    padding: 6px 8px;
  }

  /* Social buttons: consistent fixed height on every phone width. */
  .compact-social {
    height: auto;
    padding: 5px 7px 8px;
    border-radius: 18px;
  }
  .social-grid {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .social-card {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    border-radius: 16px;
    padding: 7px 12px;
    gap: 10px;
  }
  .social-icon { width: 42px; height: 42px; }
  .x-mark { font-size: 28px; }
  .of-mark { width: 50px; }
  .of-mark img { width: 48px; height: 32px; }
  .social-copy strong { font-size: 16px; }
  .social-copy span { font-size: 9px; margin-top: 3px; }
  .social-copy small { font-size: 7px; }
  .social-arrow { width: 32px; height: 32px; font-size: 18px; }

  /* EXPLORE: story full width + Alishya/Kailey equal side-by-side */
  .compact-worlds {
    height: auto;
    padding: 5px 7px 8px;
    border-radius: 18px;
  }
  .compact-worlds .card-grid {
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 7px;
  }
  .compact-worlds .center-card {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 160px;
  }
  .compact-worlds .world-alishya,
  .compact-worlds .world-kailey {
    min-height: 205px;
  }
  .compact-worlds .world-card {
    height: auto;
    padding: 10px;
    border-radius: 15px;
  }
  .compact-worlds .world-card .card-copy,
  .compact-worlds .center-card .card-copy {
    width: 100%;
    max-width: none;
  }
  .compact-worlds .logo-chip { width: 29px; height: 29px; margin-bottom: 5px; }
  .compact-worlds .eyebrow { font-size: 6.5px; letter-spacing: .14em; }
  .compact-worlds .card-title { font-size: 17px; line-height: .96; }
  .compact-worlds .card-text { font-size: 9px; max-width: 21ch; }
  .compact-worlds .cta-btn {
    min-height: 31px;
    margin-top: 7px;
    padding: 7px 9px;
    font-size: 7.5px;
    letter-spacing: .10em;
  }
  .compact-worlds .cta-btn span { font-size: 11px; }

  /* Keep portrait art visible without covering the copy */
  .compact-worlds .world-alishya .card-art img,
  .compact-worlds .world-kailey .card-art img {
    width: 92%;
    max-width: none;
    right: -25%;
    bottom: -10%;
    opacity: .56;
  }
  .compact-worlds .center-card .card-art img {
    width: 43%;
    right: 1%;
    bottom: -10%;
    opacity: .74;
  }

  .mini-section-title {
    height: 24px;
    font-size: 9px;
    letter-spacing: .18em;
  }
}

/* Very narrow phones: keep Alishya and Kailey side-by-side, just shorten panels. */
@media (max-width: 390px) {
  .compact-hero .hero-link.center { height: 290px; min-height: 290px; }
  .compact-hero .hero-link.left,
  .compact-hero .hero-link.right { height: 245px; min-height: 245px; }
  .compact-worlds .world-alishya,
  .compact-worlds .world-kailey { min-height: 190px; }
  .compact-worlds .card-title { font-size: 15px; }
  .compact-worlds .cta-btn { font-size: 6.8px; padding-inline: 8px; }
}


/* =========================================================
   V10 — PREMIUM 18+ ENTRY GATE
   ========================================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 24% 28%, rgba(123, 22, 31, .32), transparent 30%),
    radial-gradient(circle at 77% 24%, rgba(8, 83, 90, .25), transparent 32%),
    linear-gradient(180deg, rgba(3,3,4,.93), rgba(0,0,0,.98)),
    url('../img/bg-portal.png') center/cover no-repeat;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

html.age-verified .age-gate {
  display: none !important;
}

.age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(231,181,91,.10), transparent 24%),
    linear-gradient(90deg, rgba(96,12,20,.12), transparent 32%, transparent 68%, rgba(0,61,67,.12));
}

.age-gate-card {
  position: relative;
  width: min(92vw, 560px);
  padding: 36px 34px 30px;
  border-radius: 28px;
  text-align: center;
  color: #f3e7d2;
  background:
    linear-gradient(180deg, rgba(18,18,20,.82), rgba(6,6,8,.88));
  border: 1px solid rgba(222,181,103,.42);
  box-shadow:
    0 28px 90px rgba(0,0,0,.68),
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 55px rgba(204,148,62,.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.age-gate-card::before,
.age-gate-card::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,185,101,.65), transparent);
}
.age-gate-card::before { top: 18px; }
.age-gate-card::after { bottom: 18px; }

.age-gate-monogram {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(224,177,91,.58);
  color: #f3dcae;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 34px;
  letter-spacing: -.08em;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,216,140,.13), transparent 34%),
    rgba(7,7,8,.56);
  box-shadow:
    inset 0 0 0 5px rgba(215,176,106,.045),
    0 0 28px rgba(219,166,76,.10);
}

.age-gate-kicker {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 11px;
  letter-spacing: .34em;
  color: #cda55e;
  margin-bottom: 8px;
}

.age-gate h1 {
  margin: 0 0 14px;
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 5.5vw, 42px);
  letter-spacing: .10em;
  color: #f4e6cf;
}

.age-gate p {
  max-width: 430px;
  margin: 0 auto 24px;
  color: rgba(241,230,209,.78);
  font-size: 14px;
  line-height: 1.75;
}

.age-gate-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 390px;
  margin: 0 auto;
}

.age-enter,
.age-exit {
  min-height: 54px;
  border-radius: 999px;
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: .15em;
  font-size: 12px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.age-enter {
  color: #fff2d7;
  border: 1px solid rgba(236,188,92,.78);
  background:
    linear-gradient(180deg, rgba(84,42,20,.68), rgba(25,15,10,.90));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 24px rgba(220,160,63,.12);
}

.age-exit {
  color: rgba(241,230,209,.67);
  border: 1px solid rgba(241,230,209,.14);
  background: rgba(8,8,10,.42);
}

.age-enter:hover,
.age-exit:hover {
  transform: translateY(-1px);
}
.age-enter:hover {
  border-color: #efc470;
  box-shadow: 0 0 28px rgba(222,166,76,.20);
}

.age-gate-note {
  margin-top: 18px;
  color: rgba(241,230,209,.45);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .06em;
}

@media (max-width: 520px) {
  .age-gate { padding: 14px; }
  .age-gate-card {
    width: min(94vw, 460px);
    padding: 30px 20px 26px;
    border-radius: 22px;
  }
  .age-gate-monogram {
    width: 78px;
    height: 78px;
    font-size: 30px;
  }
  .age-gate h1 { font-size: 27px; }
  .age-gate p { font-size: 13px; line-height: 1.62; }
  .age-enter, .age-exit { min-height: 50px; font-size: 11px; }
}

/* V10: top-left hero label intentionally removed. */
.floating-brand { display: none !important; }


/* =========================================================
   V11 — LARGER / CLEARER TYPOGRAPHY
   Keeps V10 layout and responsive proportions unchanged.
   ========================================================= */

/* Main landing page labels */
.landing-page .mini-section-title {
  font-size: 14px;
  letter-spacing: .22em;
  font-weight: 500;
}

/* Social cards — make names and especially @ IDs easier to read */
.landing-page .social-copy small {
  font-size: 10px;
  letter-spacing: .20em;
  line-height: 1.15;
}
.landing-page .social-copy strong {
  font-size: 20px;
  line-height: 1.05;
  font-weight: 600;
}
.landing-page .social-copy span {
  font-size: 13px;
  line-height: 1.15;
  margin-top: 5px;
  font-weight: 500;
  color: rgba(247,236,216,.92);
}

/* Slightly stronger social icons / arrows */
.landing-page .x-mark { font-size: 34px; }
.landing-page .social-arrow {
  font-size: 21px;
  font-weight: 600;
}

/* Explore cards */
.landing-page .compact-worlds .eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  line-height: 1.2;
}
.landing-page .compact-worlds .card-title {
  font-size: clamp(23px, 2vw, 34px);
  line-height: .98;
}
.landing-page .compact-worlds .card-text {
  font-size: 13px;
  line-height: 1.35;
}
.landing-page .compact-worlds .cta-btn {
  font-size: 10.5px;
  letter-spacing: .13em;
  font-weight: 500;
}
.landing-page .compact-worlds .cta-btn span {
  font-size: 15px;
}

/* Keep the 18+ badge clearer too */
.landing-page .floating-age {
  font-size: 15px;
  font-weight: 500;
}

/* Medium desktop/tablet: still clearly readable without changing card sizes */
@media (min-width: 761px) and (max-width: 1120px) {
  .landing-page .social-copy strong { font-size: 18px; }
  .landing-page .social-copy span { font-size: 12px; }
  .landing-page .social-copy small { font-size: 9px; }

  .landing-page .compact-worlds .eyebrow { font-size: 8.5px; }
  .landing-page .compact-worlds .card-title { font-size: 22px; }
  .landing-page .compact-worlds .card-text { font-size: 11px; }
  .landing-page .compact-worlds .cta-btn { font-size: 9px; }
}

/* Phone: larger IDs and labels, while keeping the exact V10 layout */
@media (max-width: 760px) {
  .landing-page .mini-section-title {
    font-size: 11px;
    letter-spacing: .17em;
  }

  .landing-page .social-copy strong {
    font-size: 18px;
  }
  .landing-page .social-copy span {
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
  }
  .landing-page .social-copy small {
    font-size: 9px;
  }

  .landing-page .compact-worlds .eyebrow {
    font-size: 8px;
    letter-spacing: .13em;
  }
  .landing-page .compact-worlds .card-title {
    font-size: 19px;
  }
  .landing-page .compact-worlds .card-text {
    font-size: 10.5px;
    line-height: 1.35;
  }
  .landing-page .compact-worlds .cta-btn {
    font-size: 8.5px;
    letter-spacing: .09em;
  }
  .landing-page .compact-worlds .cta-btn span {
    font-size: 12px;
  }

  .landing-page .floating-age {
    font-size: 13px;
  }
}

@media (max-width: 390px) {
  .landing-page .social-copy strong { font-size: 17px; }
  .landing-page .social-copy span { font-size: 11.5px; }
  .landing-page .compact-worlds .card-title { font-size: 17px; }
  .landing-page .compact-worlds .cta-btn { font-size: 8px; }
}
