/* ═══════════════════════════════════════════════
   GOLD LABEL PAGE — Pure dark luxury
   ═══════════════════════════════════════════════ */

/* Force dark body for this page */
body {
  background: var(--gl-bg) !important;
  background-image: none !important;
  color: var(--gl-cream);
}
.page-wrap { background: var(--gl-bg); }

/* ── Keyframes ──────────────────────────────────── */
@keyframes goldLineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 28px rgba(184,147,58,.25), inset 0 0 28px rgba(184,147,58,.05); }
  50%      { box-shadow: 0 0 56px rgba(184,147,58,.50), inset 0 0 56px rgba(184,147,58,.10); }
}
@keyframes shimGL {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

/* ── Hero ───────────────────────────────────────── */
.gl-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gl-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/18285946/pexels-photo-18285946.jpeg?auto=compress&cs=tinysrgb&w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.28) saturate(.6);
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.gl-hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(13,11,13,.92) 100%);
  pointer-events: none;
}
.gl-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 40px;
  max-width: 860px;
}
.gl-hero-crown {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: floatBadge 3.5s ease-in-out infinite;
  display: block;
}
.gl-hero-eyebrow {
  font-size: .65rem;
  color: var(--gl-accent);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fu .9s .2s ease forwards;
}
.gl-hero-title {
  font-family: var(--fd);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--gl-cream);
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 6px;
  opacity: 0;
  animation: fu .9s .4s ease forwards;
}
.gl-hero-title em {
  font-style: italic;
  color: var(--gl-accent);
  font-weight: 400;
}
.gl-hero-subtitle {
  font-family: var(--fd);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240,235,224,.82);
  letter-spacing: 3px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fu .9s .6s ease forwards;
}
.gl-gold-line {
  width: 120px;
  height: 1px;
  background: var(--shimmer-gl);
  background-size: 300% auto;
  margin: 0 auto 40px;
  transform-origin: left;
  opacity: 0;
  animation: fu .5s .8s ease forwards, shimGL 4s 1.3s linear infinite;
}
.gl-hero-desc {
  font-size: .95rem;
  color: rgba(240,235,224,.82);
  line-height: 1.85;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fu .9s .9s ease forwards;
}
.gl-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  border-radius: 6px;
  background: linear-gradient(110deg, #7A5E28 0%, var(--gl-accent) 45%, #D4AD50 55%, var(--gl-accent) 70%, #7A5E28 100%);
  background-size: 200% auto;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-position .6s, transform .25s, box-shadow .25s;
  opacity: 0;
  animation: fu .9s 1.1s ease forwards;
}
.gl-hero-cta:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,147,58,.4);
}
.gl-hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .4;
  animation: pulse 2.5s infinite;
}
.gl-hero-scroll span {
  font-size: .6rem; color: var(--gl-accent); letter-spacing: 3px; text-transform: uppercase;
}
.gl-hero-scroll-arrow {
  width: 1px; height: 28px; background: var(--gl-accent);
}

/* ── Section base ───────────────────────────────── */
.gl-section {
  padding: 100px 40px;
  max-width: var(--max-w); margin: 0 auto;
}
.gl-section-full {
  background: var(--gl-surface);
  border-top: 1px solid var(--gl-border);
  border-bottom: 1px solid var(--gl-border);
  padding: 100px 40px;
}
.gl-section-inner {
  max-width: var(--max-w); margin: 0 auto;
}

/* ── Section typography ─────────────────────────── */
.gl-eyebrow {
  font-size: .62rem;
  color: var(--gl-accent);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
}
.gl-eyebrow-left { text-align: left; }
.gl-title {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 300;
  color: var(--gl-cream);
  line-height: 1.12;
  text-align: center;
  margin-bottom: 16px;
}
.gl-title em { color: var(--gl-accent); font-style: italic; font-weight: 400; }
.gl-title-left { text-align: left; }
.gl-sub {
  text-align: center;
  color: rgba(240,235,224,.85);
  font-size: .88rem;
  max-width: 560px;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.8;
}
.gl-sub-left { text-align: left; margin-left: 0; }
.gl-line {
  width: 36px; height: 1px;
  background: var(--gl-accent);
  margin: 0 auto 18px;
  opacity: .7;
}
.gl-line-left { margin-left: 0; }

/* ── What is Gold Label — 3 col features ───────── */
.gl-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--gl-border);
  border-radius: 16px;
  overflow: hidden;
}
.gl-feature {
  background: rgba(1,15,30,.7);
  padding: 48px 36px;
  transition: background .3s;
  position: relative;
}
.gl-feature::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gl-accent), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.gl-feature:hover { background: rgba(1,15,30,1); }
.gl-feature:hover::after { opacity: 1; }
.gl-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}
.gl-feature-title {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gl-cream);
  margin-bottom: 10px;
}
.gl-feature-desc {
  font-size: .84rem;
  color: rgba(240,235,224,.82);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Cards (generic dark) ───────────────────────── */
.gl-card {
  background: var(--gl-surface);
  border: 1px solid var(--gl-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.gl-card:hover {
  border-color: rgba(184,147,58,.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(184,147,58,.1);
}

/* ── Private Tours ──────────────────────────────── */
.gl-tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.gl-tour-card {
  background: var(--gl-surface);
  border: 1px solid var(--gl-border);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.gl-tour-card:hover {
  border-color: rgba(184,147,58,.55);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 32px rgba(184,147,58,.12);
}
.gl-tour-card-top {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--gl-border);
}
.gl-tour-card-icon {
  font-size: 1.3rem; margin-bottom: 14px;
}
.gl-tour-card-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gl-cream);
  margin-bottom: 8px;
  line-height: 1.3;
}
.gl-tour-card-desc {
  font-size: .82rem;
  color: rgba(240,235,224,.82);
  line-height: 1.65;
  font-weight: 300;
}
.gl-tour-card-bottom {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.gl-price-tag {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gl-accent);
}
.gl-price-tag span {
  font-size: .75rem;
  font-family: var(--fb);
  color: rgba(240,235,224,.82);
  font-weight: 300;
}
.gl-guests-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--gl-border);
  border-radius: 20px;
  font-size: .7rem;
  color: rgba(240,235,224,.82);
  white-space: nowrap;
}
.gl-dur-pill {
  font-size: .7rem;
  color: rgba(184,147,58,.7);
  font-weight: 500;
}

/* ── Room Upgrades ──────────────────────────────── */
.gl-upgrades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.gl-upgrade-card {
  background: var(--gl-surface);
  border: 1px solid var(--gl-border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.gl-upgrade-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gl-accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .35s;
}
.gl-upgrade-card:hover {
  border-color: rgba(184,147,58,.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,.5);
}
.gl-upgrade-card:hover::before { opacity: 1; }
.gl-upgrade-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.gl-upgrade-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gl-cream);
  margin-bottom: 8px;
}
.gl-upgrade-price {
  font-family: var(--fd);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gl-accent);
  margin-bottom: 12px;
}
.gl-upgrade-price span {
  font-size: .72rem;
  font-family: var(--fb);
  color: rgba(240,235,224,.82);
  font-weight: 300;
}
.gl-upgrade-desc {
  font-size: .82rem;
  color: rgba(240,235,224,.82);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Concierge ──────────────────────────────────── */
.gl-concierge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 52px;
}
.gl-concierge-card {
  background: rgba(1,15,30,.6);
  border: 1px solid var(--gl-border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s, transform .3s;
}
.gl-concierge-card:hover {
  border-color: rgba(184,147,58,.45);
  transform: translateY(-4px);
}
.gl-concierge-name {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gl-cream);
  line-height: 1.3;
}
.gl-concierge-desc {
  font-size: .82rem;
  color: rgba(240,235,224,.82);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}
.gl-concierge-price {
  font-family: var(--fd);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gl-accent);
}
.gl-concierge-price span {
  font-size: .7rem;
  font-family: var(--fb);
  color: rgba(240,235,224,.82);
  font-weight: 300;
}
.gl-concierge-num {
  font-size: .6rem;
  color: rgba(184,147,58,.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ── Packages ───────────────────────────────────── */
.gl-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  align-items: start;
}
.gl-package {
  background: var(--gl-surface);
  border: 1px solid var(--gl-border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.gl-package:hover { transform: translateY(-4px); }
.gl-package.featured {
  border-color: rgba(184,147,58,.5);
  background: rgba(1,15,30,.95);
  transform: scale(1.04);
  animation: glowPulse 3.5s ease-in-out infinite;
  z-index: 2;
}
.gl-package.featured:hover { transform: scale(1.04) translateY(-4px); }
.gl-package-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(184,147,58,.18);
  border: 1px solid rgba(184,147,58,.35);
  border-radius: 20px;
  font-size: .62rem;
  color: var(--gl-accent);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.gl-package.featured .gl-package-badge {
  background: var(--gl-accent);
  color: var(--gl-bg);
  border-color: var(--gl-accent);
}
.gl-package-name {
  font-family: var(--fd);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gl-cream);
  margin-bottom: 8px;
  line-height: 1.1;
}
.gl-package.featured .gl-package-name { font-weight: 600; }
.gl-package-price {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gl-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.gl-package-per {
  font-size: .72rem;
  color: rgba(240,235,224,.82);
  font-weight: 300;
  margin-bottom: 28px;
}
.gl-package-divider {
  width: 100%; height: 1px;
  background: var(--gl-border);
  margin-bottom: 24px;
}
.gl-package-includes {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.gl-package-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: rgba(240,235,224,.6);
  line-height: 1.5;
  font-weight: 300;
}
.gl-package-check {
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(184,147,58,.15);
  border: 1px solid rgba(184,147,58,.3);
  color: var(--gl-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.gl-package.featured .gl-package-item { color: rgba(240,235,224,.75); }
.gl-package-btn {
  display: block; width: 100%;
  padding: 14px 24px;
  text-align: center;
  border-radius: 7px;
  font-family: var(--fb);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.gl-package-btn-outline {
  background: transparent;
  border: 1px solid rgba(184,147,58,.35);
  color: rgba(184,147,58,.75);
}
.gl-package-btn-outline:hover {
  border-color: var(--gl-accent);
  color: var(--gl-accent);
  background: rgba(184,147,58,.06);
}
.gl-package-btn-gold {
  background: linear-gradient(110deg, #7A5E28 0%, var(--gl-accent) 45%, #D4AD50 55%, var(--gl-accent) 70%, #7A5E28 100%);
  background-size: 200% auto;
  border: none;
  color: #fff;
}
.gl-package-btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 28px rgba(184,147,58,.4);
}

/* ── Revenue Uplift ──────────────────────────────── */
.gl-revenue-card {
  background: rgba(13,11,13,.8);
  border: 1px solid var(--gl-border);
  border-radius: 16px;
  padding: 56px 52px;
  max-width: 860px;
  margin: 52px auto 0;
}
.gl-revenue-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.gl-rev-col { text-align: center; }
.gl-rev-label {
  font-size: .6rem;
  color: rgba(240,235,224,.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 16px;
}
.gl-rev-amount {
  font-family: var(--fd);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.gl-rev-amount.standard { color: rgba(240,235,224,.82); }
.gl-rev-amount.gold { color: var(--gl-accent); }
.gl-rev-per {
  font-size: .78rem;
  color: rgba(240,235,224,.82);
  font-weight: 300;
}
.gl-rev-arrow {
  font-size: 1.5rem;
  color: var(--gl-accent);
  opacity: .6;
}
.gl-revenue-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--gl-border);
}
.gl-rev-stat {
  text-align: center;
}
.gl-rev-stat-num {
  font-family: var(--fd);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gl-accent);
  margin-bottom: 4px;
}
.gl-rev-stat-label {
  font-size: .72rem;
  color: rgba(240,235,224,.4);
  font-weight: 300;
  line-height: 1.4;
}

/* ── Final CTA ───────────────────────────────────── */
.gl-cta {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gl-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,147,58,.06) 0%, transparent 70%);
  pointer-events: none;
}
.gl-cta-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.gl-cta-crown {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 24px;
  animation: floatBadge 3s ease-in-out infinite;
}
.gl-cta-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--gl-cream);
  line-height: 1.12;
  margin-bottom: 20px;
}
.gl-cta-title em { color: var(--gl-accent); font-style: italic; font-weight: 600; }
.gl-cta-sub {
  font-size: .9rem;
  color: rgba(240,235,224,.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 48px;
  max-width: 500px; margin-left: auto; margin-right: auto; margin-bottom: 48px;
}
.gl-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.gl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 7px;
  background: transparent;
  border: 1px solid rgba(184,147,58,.35);
  color: rgba(184,147,58,.75);
  font-family: var(--fb);
  font-size: .86rem;
  font-weight: 400;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
}
.gl-btn-outline:hover {
  border-color: var(--gl-accent);
  color: var(--gl-accent);
  background: rgba(184,147,58,.06);
}

/* ── Reveal override for dark page ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s, transform .75s;
}
.reveal.vis { opacity: 1; transform: translateY(0); }

@media(max-width:768px) {
  .gl-hero-content   { padding: 24px 20px; }
  .gl-section,
  .gl-section-full   { padding: 64px 20px; }
  .gl-features-grid  { grid-template-columns: 1fr; }
}