/* ============================================================
   R&B TOUR GUIDE - shared styles
   randbtourguide.com - FINAL21
   Last updated: 20260505
   All pages link: css/style.css?v=20260505
   ============================================================ */

/* ── TOKENS ── */
:root {
  --black:  #050505;   /* jet black - body, nav, footer */
  --deep:   #0a0a0a;   /* slightly lighter - alt sections */
  --card:   #0f0f0f;   /* card backgrounds */
  --border: #1e1e1e;   /* dividers, card borders */
  --gold:   #C9A84C;   /* primary accent */
  --gold2:  #E8C97A;   /* hover accent */
  --white:  #F5F0E8;   /* body text */
  --muted:  #777777;   /* secondary text */
  --body-font:    'DM Sans', sans-serif;
  --display-font: 'Cormorant Garamond', serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body-font);
  font-size: 0.97rem;
  line-height: 1.82;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none; line-height: 1;
}
.nav-logo .r, .nav-logo .b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem; color: #fff; letter-spacing: 1px;
}
.nav-logo .amp {
  font-family: Georgia, serif; font-style: italic;
  font-size: 1.2rem; color: var(--gold);
  margin: 0 1px; transform: rotate(-6deg); display: inline-block;
}
.nav-logo .wordmark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem; color: var(--white);
  letter-spacing: 3px; margin-left: 8px;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 8px 18px; border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }
.nav-burger { display: none; }

/* ── TWO-LAYER CONTAINER (hpanel rule) ── */
section {
  padding: 64px 5%;
  background: var(--black);
}
section.alt { background: var(--deep); }
section.dark { background: var(--black); }
.inner {
  max-width: 1100px;
  margin: 0 auto;
}
.inner-narrow {
  max-width: 820px;
  margin: 0 auto;
}

/* ── HERO SECTIONS ── */
.page-hero {
  padding: 120px 5% 64px;
  background: var(--black);
}
/* When a hero image precedes the hero text block, the image already clears the nav - drop the 120px top padding */
.page-hero-img + .page-hero { padding: 56px 5% 64px; }
.home-hero {
  padding: 80px 5% 68px;
  background: var(--black);
  text-align: center;
}

/* ── FULL-BLEED PHOTO HERO (no img tag - CSS bg) ── */
.photo-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 5%;
}
.photo-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.7) 100%);
}
.photo-section .inner { position: relative; z-index: 1; }

/* ── CITY HERO IMAGE (proper aspect ratio, no crop) ── */
.city-hero-wrap {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  margin-top: 64px;
}
.city-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ── HOME CROWD HERO IMAGE ── */
.home-crowd-wrap {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  position: relative;
}
.home-crowd-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.home-crowd-wrap .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.85) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 48px;
  text-align: center;
}

/* ── GENERIC IMAGE WRAPPER (hpanel rule - no fixed heights on img) ── */
.img-wrap { width: 100%; overflow: hidden; border-radius: 2px; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-21x9 { aspect-ratio: 21/9; }
.img-16x9 { aspect-ratio: 16/9; }
.img-4x3  { aspect-ratio: 4/3; }
.img-3x4  { aspect-ratio: 3/4; }
.img-1x1  { aspect-ratio: 1/1; }

/* ── PAGE HERO IMAGE (mandatory photo at top of every page) ── */
/* Clears the 64px fixed nav so photo sits flush below it */
.page-hero-img {
  margin-top: 64px;
  border-radius: 0;
}
.page-hero-img img { object-position: center 35%; }
@media (max-width: 768px) {
  .page-hero-img { aspect-ratio: 16/9; }
}

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700; margin-bottom: 16px; line-height: 1.1;
}
.hero-title {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 16px;
}
.page-title {
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.body-text { color: #bbb; font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.lead { font-size: 1.05rem; color: #ccc; line-height: 1.7; margin-bottom: 24px; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 0.87rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold2); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ── CARDS ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; margin-top: 28px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; padding: 28px;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--gold); }
.card-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-title { font-family: var(--display-font); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.card-body { font-size: 0.87rem; color: #bbb; line-height: 1.65; }

/* ── SHOW INFO BAR (city pages) ── */
.show-info {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 24px; background: var(--card);
  border: 1px solid var(--border); border-radius: 2px;
  margin-bottom: 32px;
}
.show-detail-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.show-detail-val { font-family: var(--display-font); font-size: 1.3rem; font-weight: 700; color: var(--gold); }

/* ── INFO GRID (city pages) ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; margin-top: 24px; }
.info-card { background: var(--card); border: 1px solid var(--border); padding: 24px; border-radius: 2px; }
.info-icon { font-size: 1.4rem; margin-bottom: 12px; }
.info-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.info-body { font-size: 0.88rem; color: #bbb; line-height: 1.6; }
.info-body strong { color: var(--white); }

/* ── HOTEL PLACEHOLDER ── */
.hotel-placeholder {
  background: var(--card); border: 2px dashed var(--border);
  border-radius: 2px; padding: 40px 24px;
  text-align: center; margin-top: 24px;
}

/* ── TIP BOX ── */
.tip-box {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: rgba(201,168,76,0.05);
  margin: 24px 0; border-radius: 0 2px 2px 0;
}
.tip-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tip-text { font-size: 0.9rem; color: #ccc; line-height: 1.6; }

/* ── DISCLOSURE ── */
.disclosure {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: 2px;
  font-size: 0.78rem; color: var(--muted); line-height: 1.5;
  margin-top: 32px;
}

/* ── FAQ ACCORDION ── */
details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; overflow: hidden; margin-bottom: 2px;
}
details summary {
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem;
  list-style: none; display: flex;
  justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
details summary:hover { color: var(--gold); }
details summary::after { content: '+'; color: var(--gold); font-size: 1.2rem; }
details[open] summary::after { content: '−'; }
details p { padding: 0 24px 20px; color: #bbb; font-size: 0.9rem; line-height: 1.7; }
details a { color: var(--gold); }

/* ── INLINE ALLOWED SETS ── */
.allow-yes { background: rgba(102,187,106,0.1); border: 1px solid rgba(102,187,106,0.3); border-top: 3px solid #66BB6A; padding: 24px; border-radius: 2px; }
.allow-no { background: rgba(239,83,80,0.1); border: 1px solid rgba(239,83,80,0.3); border-top: 3px solid #EF5350; padding: 24px; border-radius: 2px; }
.allow-label-yes { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #66BB6A; margin-bottom: 12px; }
.allow-label-no { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #EF5350; margin-bottom: 12px; }
.allow-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.allow-list li { font-size: 0.88rem; color: #bbb; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px; }
.allow-list li strong { color: var(--white); }

/* ── STATS ROW ── */
.stats-row { display: flex; gap: 48px; flex-wrap: wrap; padding: 40px 0; }
.stat-val { font-family: var(--display-font); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ── SOCIAL SECTION ── */
.social-section { padding: 64px 5%; background: var(--deep); text-align: center; }
.hashtag { color: var(--gold); font-weight: 700; font-size: 1.1rem; }

/* ── EMAIL CAPTURE ── */
.email-section { padding: 64px 5%; background: var(--deep); }
.email-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.email-input {
  flex: 1; min-width: 240px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--white);
  font-size: 0.95rem; border-radius: 4px; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.email-input::placeholder { color: rgba(245,240,232,0.65); }
.email-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

/* ── INTERNAL LINKS BAR ── */
.links-bar { padding: 28px 5%; background: var(--black); border-top: 1px solid var(--border); }
.links-bar-inner { max-width: 1100px; margin: 0 auto; }
.links-bar-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.link-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  color: var(--muted); font-size: 0.8rem; text-decoration: none;
  padding: 6px 12px; border: 1px solid var(--border);
  border-radius: 2px; transition: all 0.2s;
}
.chip:hover { color: var(--gold); border-color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--deep); border-top: 1px solid var(--border);
  padding: 44px 5% 28px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-inner p, .footer-inner a { font-size: 0.75rem; color: var(--muted); text-decoration: none; }
.footer-inner a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .nav-burger { display: block; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }
  section { padding: 48px 5%; }
  .page-hero, .home-hero { padding: 100px 5% 48px; }
  .show-info { flex-direction: column; gap: 16px; }
  .city-hero-wrap { aspect-ratio: 16/9; }
  .stats-row { gap: 28px; }
  .email-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}


/* ── STANDARDIZED FOOTER (FINAL22b) ── */
footer .footer-inner { max-width: 1100px; margin: 0 auto; }
footer .footer-disclaimer { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
footer .footer-links { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 16px; }
footer .footer-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer .footer-links a:hover { color: var(--gold); }
footer .footer-contact { font-size: 0.88rem; color: var(--muted); margin: 0; }
footer .footer-contact a { color: var(--gold); text-decoration: none; }
footer .footer-contact a:hover { text-decoration: underline; }


/* ╔═══════════════════════════════════════════════════════════════╗ */
/* ║  RED TEAM IMAGE OVERFLOW FIXES (FINAL22c)                     ║ */
/* ║  Applied 5 weakness counter-measures from expert document.    ║ */
/* ╚═══════════════════════════════════════════════════════════════╝ */

/* ── W1: Force CSS to be the boss (defensive img defaults) ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── W2: Prevent flex-box image blow-out ── */
.btn-row > *,
.footer-links > *,
.show-info > *,
.flex-container > *,
[style*="display:flex"] > *,
[style*="display: flex"] > * {
  min-width: 0;
}

/* ── W5: Container overflow safety net ── */
section,
.container,
.inner,
.wrapper,
footer,
header,
nav {
  max-width: 100vw;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── EXPERT DOC: object-fit override for img-wrap (CSS wins now) ── */
.img-wrap img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover;
  object-position: center 35%;
}

/* ── PORTRAIT OUTFIT PHOTOS: Preserve the full figure (head AND feet) ── */
/* Per expert doc: "If preserving the ENTIRE image matters, use contain"  */
/* Full-body outfit shots - never crop the model's head or feet           */
.outfit-portrait {
  background: #0a0a0a; /* fills letterbox area with site background */
}
.outfit-portrait img {
  object-fit: contain !important;
  object-position: center !important;
}

/* ── OUTFIT CARD IMAGES (4:3 landscape on outfit cards) ── */
/* These are styled photos, cropping mid-body is acceptable */
.outfit-card-img img {
  object-fit: cover !important;
  object-position: center 30% !important;
}

.outfit-landscape img {
  object-fit: cover !important;
  object-position: center !important;
}

/* ── HERO IMAGES: stadium/crowd shots (landscape, cover is correct) ── */
.page-hero-img img,
.home-crowd-wrap img,
.city-hero-wrap img {
  object-fit: cover !important;
}

/* ── MOBILE: tighten hero aspect ratios so they don't dominate ── */
@media (max-width: 768px) {
  .page-hero-img,
  .img-21x9 {
    aspect-ratio: 16/9;
  }
  .img-3x4.outfit-portrait {
    aspect-ratio: 4/5; /* less aggressive on mobile portrait */
  }
}

/* ── MOBILE: stop horizontal scroll from any rogue child ── */
@media (max-width: 768px) {
  body * {
    max-width: 100%;
  }
}


/* ╔═══════════════════════════════════════════════════════════════╗ */
/* ║  EXPERT PANEL DECISIONS (FINAL22d)                            ║ */
/* ║  Marcus + Tasha: brand ribbon                                 ║ */
/* ║  Devin + Tasha + Priya: 520px hero cap                        ║ */
/* ║  Jordan: 3-col city card grid                                 ║ */
/* ╚═══════════════════════════════════════════════════════════════╝ */

/* ── BRAND RIBBON (above nav, every page) ── */
.brand-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #050505;
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 7px 5%;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .brand-ribbon {
    font-size: 0.66rem;
    padding: 6px 4%;
    letter-spacing: 0.04em;
  }
}

/* Push nav down to make room for ribbon (was top:0; now top: ribbon-height) */
nav {
  top: 30px !important;
}
@media (max-width: 768px) {
  nav { top: 28px !important; }
}

/* All elements that previously cleared a 64px nav now need to clear ribbon + nav */
body { padding-top: 0; } /* ribbon is fixed, doesn't push body */

/* Hero images with margin-top:64px need extra ribbon clearance */
.page-hero-img,
.city-hero-wrap,
.home-crowd-wrap {
  margin-top: 94px !important; /* 30 ribbon + 64 nav */
}
@media (max-width: 768px) {
  .page-hero-img,
  .city-hero-wrap,
  .home-crowd-wrap {
    margin-top: 92px !important;
  }
}

/* ── HERO MAX-HEIGHT CAP (Devin + Tasha + Priya: 520px desktop, 380px mobile) ── */
/* Inner page heroes - outfits, city, VIP, setlist, content pages */
.page-hero-img,
.city-hero-wrap {
  max-height: 520px;
}
@media (max-width: 768px) {
  .page-hero-img,
  .city-hero-wrap {
    max-height: 380px;
  }
}

/* Home page hero gets more room because of the overlay content */
.home-crowd-wrap {
  max-height: 640px;
}
@media (max-width: 768px) {
  .home-crowd-wrap {
    max-height: 480px;
  }
}

/* Outfit portrait heroes - same cap as inner pages */
/* Outfit cards (4:3 thumbnails inside grids) - different cap */
.outfit-card-img {
  max-height: 360px;
}

/* ── 3-COLUMN CITY CARD GRID (Jordan) ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 1024px) {
  .city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .city-grid { grid-template-columns: 1fr; }
}

.city-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.city-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.city-card .priority-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.city-card .city-name {
  font-family: var(--display-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 4px;
}
.city-card .city-date {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
}
.city-card .city-venue {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.city-card .city-meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.city-card .city-cta {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 8px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}


/* ── CITY HUB GRID (original cities.html structure - Jordan's 3-col fix) ── */
.city-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 32px 0;
}
@media (max-width: 1024px) {
  .city-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .city-hub-grid { grid-template-columns: 1fr; }
}

.city-hub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
}
.city-hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.city-hub-card.priority {
  border-color: rgba(201, 168, 76, 0.35);
}

.city-rank {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.city-rank.p1 { color: var(--gold); }

.city-hub-name {
  font-family: var(--display-font);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.city-hub-date {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
}
.city-hub-venue {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.city-hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.city-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #aaa;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.city-tag.gold {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold);
}
.city-hub-cta {
  margin-top: auto;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

/* ╔═══════════════════════════════════════════════════════════════╗ */
/* ║  FINAL23 ADDITIONS                                             ║ */
/* ║  - Scout Report box (restyled jet-black + gold)                ║ */
/* ║  - Breadcrumbs                                                  ║ */
/* ║  - Multi-night badge                                            ║ */
/* ║  - Disabled buttons (placeholder for affiliate links)           ║ */
/* ║  - About page team cards                                        ║ */
/* ║  - Venue Guide sections                                         ║ */
/* ╚═══════════════════════════════════════════════════════════════╝ */

/* ── SCOUT REPORT BOX (jet-black + gold, matches brand) ── */
.scout-box {
  background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 28px 28px 24px;
  margin: 32px 0;
  position: relative;
}
.scout-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.scout-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.scout-badge {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 2px;
}
.scout-title {
  font-family: var(--display-font);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.scout-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 12px;
}
.scout-text strong {
  color: var(--gold);
  font-weight: 600;
}
.scout-meta {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  padding-top: 12px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.scout-meta .scout-verified {
  color: var(--gold);
}

/* ── BREADCRUMBS ── */
.breadcrumb-wrap {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 14px 5%;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.breadcrumb-wrap .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-list li::after {
  content: '›';
  color: var(--muted);
  margin-left: 8px;
}
.breadcrumb-list li:last-child::after { content: ''; margin: 0; }
.breadcrumb-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--gold); }
.breadcrumb-list li:last-child {
  color: var(--gold);
}

/* ── MULTI-NIGHT BADGE ── */
.multinight-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 4px 10px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── DISABLED CTA BUTTON (affiliate placeholder) ── */
.btn-disabled,
a.btn-disabled,
button.btn-disabled {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
  position: relative;
  opacity: 0.6;
}
.btn-disabled::after {
  content: 'IN PROGRESS';
  position: absolute;
  top: -8px;
  right: -6px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gold);
  color: var(--black);
  padding: 2px 6px;
  border-radius: 2px;
}

/* ── TEAM CARD (About page) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}
.team-card .team-name {
  font-family: var(--display-font);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.team-card .team-bio {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--white);
}

/* ── VENUE GUIDE HUB CARD ── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 768px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 26px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.2s;
}
.venue-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.venue-card .v-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.venue-card .v-name {
  font-family: var(--display-font);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.venue-card .v-location {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.venue-card .v-summary {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 14px;
}
.venue-card .v-cta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── INFO GAIN BLOCK (Pro-tip on every site) ── */
.info-gain-block {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(201, 168, 76, 0.02) 100%);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  padding: 22px 24px;
  margin: 28px 0;
}
.info-gain-block h4 {
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.info-gain-block p {
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 10px;
}
.info-gain-block small {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ╔═══════════════════════════════════════════════════════════════╗ */
/* ║  FINAL26 - Bug B SMART crop                                    ║ */
/* ║  Instead of letterbox bars (which looked broken), use cover    ║ */
/* ║  with object-position: center top so the upper portion of      ║ */
/* ║  the portrait image fills the 21:9 frame.                      ║ */
/* ╚═══════════════════════════════════════════════════════════════╝ */
.page-hero-img.portrait-fix {
  background: var(--black);
  max-height: 540px;
}
.page-hero-img.portrait-fix img {
  object-fit: cover !important;
  object-position: center 25% !important;
  max-height: 540px;
}
@media (max-width: 768px) {
  .page-hero-img.portrait-fix {
    max-height: 380px;
  }
  .page-hero-img.portrait-fix img {
    max-height: 380px;
  }
}

/* Shop Amazon / affiliate links - gold branded style */
.item-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.item-link:hover {
  color: #e8c96a;
  border-color: var(--gold);
}

/* ── CITY HERO LABEL (city name badge on city page heroes) ── */
.city-hero-img { position: relative; }
.city-hero-label {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}
@media (max-width: 640px) {
  .city-hero-label {
    bottom: 14px; left: 14px;
    padding: 8px 14px !important;
  }
}

/* ── BAG POLICY REMINDER BOX ── */
.bag-policy-reminder {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 6px;
  padding: 18px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .bag-policy-reminder { padding: 14px 16px; }
}

/* ── PLATFORM BUTTON (ticket affiliate CTA on tickets.html) ── */
.platform-btn {
  display: inline-block;
  background: var(--gold);
  color: #050505 !important;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 4px;
  margin-top: 16px;
  transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--gold);
}
.platform-btn:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}
.platform-btn.outline {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
}
.platform-btn.outline:hover {
  background: var(--gold);
  color: #050505 !important;
}

/* ═══════════════════════════════════════════════════ */
/* FINAL35 - PRODUCT CARDS + COMPARISON TABLE + LEGAL  */
/* ═══════════════════════════════════════════════════ */

/* ── PRODUCT CARDS (outfit shop sections) ── */
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.item-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.item-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(255,255,255,0.02) 100%);
}
.item-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.item-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
/* Upgrade .item-link from plain text-link to a real button */
.item-link {
  display: inline-block;
  background: var(--gold);
  color: #050505 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
}
.item-link:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}

/* ── COMPARISON TABLE (tickets page) ── */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 8px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  overflow: hidden;
  min-width: 720px;
}
.comparison-table thead tr {
  background: linear-gradient(180deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.08) 100%);
}
.comparison-table th {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 2px solid rgba(201,168,76,0.4);
  color: #fff;
  font-size: 0.95rem;
}
.comparison-table th.ct-platform {
  text-align: center;
}
.comparison-table th.ct-feature {
  background: rgba(0,0,0,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comparison-table th strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}
.ct-tag {
  display: inline-block;
  background: var(--gold);
  color: #050505;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.comparison-table td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  color: rgba(245,240,232,0.9);
  font-size: 0.92rem;
  text-align: center;
  vertical-align: middle;
}
.comparison-table td.ct-feature {
  text-align: left;
  color: rgba(245,240,232,0.7);
  font-size: 0.85rem;
  background: rgba(0,0,0,0.2);
}
.comparison-table td.ct-feature strong {
  color: var(--gold);
  font-weight: 600;
}
.comparison-table tbody tr:hover {
  background: rgba(201,168,76,0.04);
}
.ct-cta-row {
  background: rgba(201,168,76,0.06);
}
.ct-cta-row td {
  padding: 18px 14px;
  border-bottom: none;
}
@media (max-width: 700px) {
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
}

/* ── LEGAL NOTICE BOX (tickets page) ── */
.legal-notice-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(201,168,76,0.10) 0%, rgba(201,168,76,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.legal-notice-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.legal-notice-content {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.9);
  line-height: 1.55;
}
.legal-notice-content strong {
  color: var(--gold);
}

/* ── BOLD SECTION HEADERS GLOBALLY ── */
.section-title {
  font-weight: 800 !important;
  color: #fff !important;
}
.outfit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.outfit-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.outfit-section:last-of-type {
  border-bottom: none;
}

/* ── ENHANCED LEGAL FOOTER ── */
.legal-footer-disclaimer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 24px 5%;
  margin-top: 0;
}
.legal-footer-disclaimer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.76rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.7;
}
.legal-footer-disclaimer-inner strong {
  color: rgba(245,240,232,0.85);
}

/* ═══════════════════════════════════════════════════════════ */
/* FINAL35 - FIX ALL ORPHAN CSS CLASSES on <a> tags             */
/* These were all showing default blue underlined hyperlinks    */
/* ═══════════════════════════════════════════════════════════ */

/* JUMP BUTTONS (outfits.html category nav) */
.jump-btn {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 4px 6px 4px 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.jump-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #050505;
}

/* CITY LINKS (tickets.html city cards) */
.city-link {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 6px;
  margin-top: 6px;
  transition: background 0.2s, color 0.2s;
}
.city-link.primary {
  background: var(--gold);
  color: #050505 !important;
}
.city-link.primary:hover {
  background: #e8c96a;
}
.city-link.guide {
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.5);
}
.city-link.guide:hover {
  background: var(--gold);
  color: #050505 !important;
}

/* BTN PRIMARY (used on multiple pages as main CTA) */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #050505 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.btn-primary:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}

/* BTN-G (gold solid) and BTN-O (gold outline) - shorthand variants */
.btn-g {
  display: inline-block;
  background: var(--gold);
  color: #050505 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-g:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}
.btn-o {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn-o:hover {
  background: var(--gold);
  color: #050505 !important;
}

/* VIP CTA buttons (vip.html ticket CTAs) */
.vip-cta {
  display: inline-block;
  background: var(--gold);
  color: #050505 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 12px;
}
.vip-cta:hover {
  background: #e8c96a;
  transform: translateY(-1px);
}


/* Product images in outfit cards */
.item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
