:root {
  --primary: #ae0022;
  --deep: #1a0007;
  --deeper: #0e0004;
  --card: rgba(174, 0, 34, 0.12);
  --gold: #d4af37;
  --gold-light: #f0d878;
  --text: #fff7f8;
  --muted: rgba(255, 238, 242, 0.72);
  --line: rgba(212, 175, 55, 0.25);
  --green: #16a35f;
  --shadow: 0 20px 60px rgba(174, 0, 34, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--deep);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
body.menu-open,
body.age-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 10%, rgba(174, 0, 34, 0.22), transparent 34%),
    radial-gradient(circle at 78% 90%, rgba(212, 175, 55, 0.09), transparent 28%),
    linear-gradient(145deg, #120004 0%, #2a000d 44%, #130005 100%);
}

.notice-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 32px;
  overflow: hidden;
  background: #e00016;
  color: #fff;
  transition: transform .3s ease;
}
.notice-bar.hide { transform: translateY(-100%); }
.notice-track {
  width: max-content;
  min-width: 100%;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  animation: moveNotice 24s linear infinite;
}
@keyframes moveNotice {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 70;
  background: rgba(26, 0, 7, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  transition: top .3s ease;
}
.navbar.stuck { top: 0; }
.nav-inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .4px;
}
.brand span { color: #fff; }
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  color: #fde8ec;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--gold-light); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 27px;
  height: 3px;
  margin: 5px auto;
  background: var(--gold);
  border-radius: 20px;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-img,
.hero-dark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img { object-fit: cover; }
.hero-dark {
  background:
    linear-gradient(180deg, rgba(26,0,7,.2), rgba(26,0,7,.82)),
    linear-gradient(90deg, rgba(26,0,7,.88), rgba(26,0,7,.58), rgba(26,0,7,.25));
}
.hero-content {
  position: relative;
  text-align: center;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}
h1 {
  max-width: 980px;
  margin: 0 auto 28px;
  color: var(--gold);
  font-size: clamp(34px, 5.4vw, 34px);
  font-weight: 700;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .8);
}
h2 {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 700;
}
h3 { color: var(--gold-light); font-size: 25px; }
.search-box {
  width: min(540px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(60, 0, 12, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.search-box p {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(212, 175, 55, .36);
  border-radius: 12px;
  background: #fff;
  color: #2b0610;
  font: inherit;
}
.hero-note { margin: 18px 0 0; color: #fff; font-weight: 700; }
.hero-note a { color: var(--gold-light); }

.split-section,
.profile-list,
.gallery-section,
.faq-section,
.locations-section,
.video-section { padding: 76px 0; }
.single-copy,
.split-copy {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(174,0,34,.10);
  padding: 36px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
p { color: var(--muted); }
ul { color: var(--muted); padding-left: 22px; }
.single-copy p,
.split-copy p { margin: 16px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 18px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.divider {
  width: 84px;
  height: 2px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.media-frame img,
.media-frame video {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.live-badge,
.split-img span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26,0,7,.82);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
}

.profile-list { background: rgba(0, 0, 0, .16); }
.profile-stack {
  display: grid;
  gap: 24px;
}
.profile-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(92,0,18,.82), rgba(40,0,10,.9));
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.profile-photo,
.card-image {
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  font-weight: 900;
}
.profile-photo img,
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shade-one { background: linear-gradient(145deg, #b0183a, #28000b); }
.shade-two { background: linear-gradient(145deg, #d4af37, #4a2105); }
.shade-three { background: linear-gradient(145deg, #127b70, #16050b); }
.shade-four { background: linear-gradient(145deg, #6d3979, #260012); }
.profile-info { padding: 28px; }
.profile-info span {
  display: inline-flex;
  margin: 10px 0 12px;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(212,175,55,.12);
  font-size: 12px;
  font-weight: 900;
}
.profile-info p { margin: 0 0 10px; }
.profile-actions,
.split-actions,
.drawer-quick,
.gallery-grid article div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.profile-actions a,
.split-actions a,
.drawer-quick a,
.gallery-grid article a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 11px;
  color: #4a000e;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  font-size: 13px;
  font-weight: 900;
}
.profile-actions .green,
.split-actions .green,
.drawer-quick .green,
.gallery-grid article .green { color: #fff; background: linear-gradient(135deg, #25d366, #128c7e); }

.split-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.split-img,
.faq-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.split-img img,
.faq-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-section { background: rgba(0,0,0,.22); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.gallery-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(72,0,16,.82);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.card-image {
  height: 250px;
  font-size: 76px;
}
.gallery-grid article > span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: #4a000e;
  font-size: 11px;
  font-weight: 900;
}
.gallery-grid h3,
.gallery-grid p,
.gallery-grid article div:last-child { margin-left: 18px; margin-right: 18px; }
.gallery-grid h3 { margin-top: 16px; }
.gallery-grid p { margin-bottom: 0; color: var(--gold-light); font-weight: 800; }
.gallery-grid article div:last-child { margin-bottom: 18px; }

.faq-section { background: rgba(0,0,0,.14); }
details {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(174,0,34,.1);
  overflow: hidden;
}
summary {
  padding: 17px 20px;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}
details p { padding: 0 20px 18px; margin: 0; }

.location-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(174,0,34,.1);
}
.location-cloud a {
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  background: rgba(212,175,55,.1);
  font-weight: 900;
}
.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #0b0003;
  text-align: center;
}
.footer h3 {
  margin-bottom: 8px;
  color: var(--gold);
}

.drawer-shadow {
  position: fixed;
  inset: 0;
  z-index: 88;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(86vw, 360px);
  height: 100vh;
  padding: 20px;
  background: linear-gradient(160deg, #3e000d, #160005);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(0,0,0,.5);
  transform: translateX(100%);
  transition: transform .25s ease;
}
body.menu-open .drawer { transform: translateX(0); }
body.menu-open .drawer-shadow { opacity: 1; pointer-events: auto; }
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.drawer-head strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}
.drawer-head button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}
.drawer-nav {
  display: grid;
  gap: 2px;
  margin-top: 18px;
}
.drawer-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(212,175,55,.16);
  color: #fff;
  font-weight: 800;
}
.drawer p { font-size: 13px; color: var(--muted); }

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(12px);
}
.age-modal {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: none;
  place-items: center;
  padding: 18px;
}
body.age-open .age-overlay,
body.age-open .age-modal { display: grid; }
.age-box {
  width: min(470px, 100%);
  padding: 38px 32px;
  border: 1px solid rgba(212,175,55,.45);
  border-radius: 24px;
  background: linear-gradient(145deg, #5b000f, #2b0009);
  box-shadow: 0 36px 90px rgba(174,0,34,.65);
  text-align: center;
}
.age-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold);
  color: #4a000e;
  font-weight: 900;
  font-size: 34px;
}
.age-box h2 { color: var(--gold-light); font-size: 28px; }
.gold-line { color: var(--gold-light); font-size: 13px; font-weight: 900; }
.age-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  text-align: left;
}
.age-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.age-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 10px;
  font-weight: 900;
}
.age-small { font-size: 12px; }
.age-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.age-actions button,
.age-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #4a000e;
  cursor: pointer;
  font-weight: 900;
}
.age-actions a {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }
  .profile-row,
  .split-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-photo { min-height: 260px; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .nav-inner { height: 62px; }
  .hero { min-height: 590px; padding-top: 92px; }
  h1 { font-size: 34px; }
  h2 { font-size: 29px; }
  .split-section,
  .profile-list,
  .gallery-section,
  .faq-section,
  .locations-section,
  .video-section { padding: 54px 0; }
  .single-copy,
  .split-copy { padding: 24px; border-radius: 18px; }
  .media-frame img { height: 250px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .card-image { height: 230px; }
  .age-actions { flex-direction: column; }
}
