/* ==========================================================================
   CINEVERSE CINEMAS — Core Stylesheet
   Design language: Apple x A24 x Aman Resorts. Luxury through restraint —
   spacing, type and light do the work, not decoration.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Palette — exactly as specified in the brief */
  --white: #FFFFFF;
  --secondary: #FAF9F6;
  --ink: #111111;
  --gold: #C8A64D;
  --gold-hover: #B68A2A;
  --ivory: #F5F2EC;

  --ink-70: rgba(17, 17, 17, 0.70);
  --ink-45: rgba(17, 17, 17, 0.45);
  --ink-20: rgba(17, 17, 17, 0.12);
  --white-80: rgba(255, 255, 255, 0.80);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-15: rgba(255, 255, 255, 0.15);
  --gold-15: rgba(200, 166, 77, 0.15);
  --gold-35: rgba(200, 166, 77, 0.35);

  /* Type */
  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-accent: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;

  --text-hero: clamp(2.75rem, 3.2vw + 2rem, 6.75rem);
  --text-h1: clamp(2.25rem, 2vw + 1.6rem, 4rem);
  --text-h2: clamp(1.9rem, 1.4vw + 1.4rem, 3.1rem);
  --text-h3: clamp(1.4rem, 0.8vw + 1.15rem, 1.9rem);
  --text-lead: clamp(1.15rem, 0.5vw + 1rem, 1.5rem);
  --text-body-lg: clamp(1.05rem, 0.2vw + 1rem, 1.2rem);
  --text-body: 1rem;
  --text-small: 0.875rem;
  --text-eyebrow: 0.75rem;

  /* Motion */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 0.3s;
  --dur-med: 0.6s;
  --dur-slow: 1.1s;

  /* Layout */
  --container: 1360px;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --gutter-narrow: clamp(1.5rem, 4vw, 3.5rem);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  color-scheme: light;
}

/* ---------- Base ---------- */
html, body { background: var(--white); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top var(--dur-fast) var(--ease-soft);
  font-size: var(--text-small);
}
.skip-link:focus { top: 1rem; }

/* Consistent, visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-hover);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--white-80); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-luxury),
              background-color var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft),
              box-shadow var(--dur-fast) var(--ease-soft);
  will-change: transform;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-hover); box-shadow: 0 10px 30px -12px rgba(200,166,77,0.55); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #000; box-shadow: 0 10px 30px -14px rgba(0,0,0,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white-55);
}
.btn-outline:hover { border-color: var(--white); background: var(--white-15); }

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-20);
}
.btn-outline-ink:hover { border-color: var(--ink); }

.btn-sm { padding: 0.8rem 1.5rem; font-size: 0.8rem; }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: clamp(1rem, 2vw, 1.6rem) var(--gutter);
  transition: background-color var(--dur-med) var(--ease-soft),
              box-shadow var(--dur-med) var(--ease-soft),
              backdrop-filter var(--dur-med) var(--ease-soft),
              padding var(--dur-med) var(--ease-soft);
}
.site-nav.is-scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(17,17,17,0.06), 0 12px 30px -20px rgba(17,17,17,0.25);
  padding-block: clamp(0.7rem, 1.2vw, 1rem);
}
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo img { height: 28px; width: auto; }
.nav-logo-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease-soft);
}
.site-nav:not(.is-scrolled) .nav-logo-word { color: var(--white); }
.site-nav:not(.is-scrolled) .nav-logo img { filter: brightness(0) invert(1); opacity: 0.95; }

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(1.4rem, 2.2vw, 2.6rem);
}
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-70);
  padding-block: 0.3rem;
  transition: color var(--dur-fast) var(--ease-soft);
}
.site-nav:not(.is-scrolled) .nav-link { color: var(--white-80); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur-med) var(--ease-luxury);
}
.nav-link:hover { color: var(--ink); }
.site-nav:not(.is-scrolled) .nav-link:hover { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }

.nav-right { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s cubic-bezier(0.77,0,0.175,1), opacity 0.3s cubic-bezier(0.77,0,0.175,1), background-color var(--dur-fast) var(--ease-soft);
}
.site-nav:not(.is-scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile full-screen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-med) var(--ease-luxury), transform var(--dur-med) var(--ease-luxury), visibility 0s linear var(--dur-med);
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity var(--dur-med) var(--ease-luxury), transform var(--dur-med) var(--ease-luxury);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.1rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.75rem);
  color: var(--white);
  font-weight: 400;
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--gold); }
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 480;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
  transition: transform var(--dur-fast) var(--ease-luxury), box-shadow var(--dur-fast) var(--ease-soft);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.8s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 34px -10px rgba(0,0,0,0.45); }
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}

/* ---------- Section rhythm ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.section-ivory { background: var(--ivory); }
.section-secondary { background: var(--secondary); }
.section-dark { background: var(--ink); color: var(--white); }

.section-head { max-width: 46rem; }
.section-head p { color: var(--ink-70); font-size: var(--text-body-lg); line-height: 1.7; margin-top: 1.25rem; }
.section-dark .section-head p { color: var(--white-80); }

/* ---------- Divider ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.divider .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.divider .line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--ink-20) 15%, var(--ink-20) 85%, transparent); }
.section-dark .divider .line { background: linear-gradient(90deg, transparent, var(--white-15) 15%, var(--white-15) 85%, transparent); }

/* ---------- Reveal-on-scroll (progressive enhancement) ---------- */
/* Content is visible by default; only hidden once .js is confirmed present,
   so users without JS, or if Motion fails to load, always see full content. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ---------- Cinematic iris-wipe intro (index only) ---------- */
.iris-wipe {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--ink);
  clip-path: circle(150% at 50% 50%);
  animation: iris-close 1.5s var(--ease-luxury) 0.5s forwards;
  pointer-events: none;
}
@keyframes iris-close {
  to { clip-path: circle(0% at 50% 50%); }
}
@media (prefers-reduced-motion: reduce) {
  .iris-wipe { display: none; }
}

/* ---------- Cursor lens-glow (hero) ---------- */
.lens-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 40%), var(--gold-15), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-soft);
  z-index: 2;
}
.lens-glow.is-active { opacity: 1; }

/* ---------- Interior page header (About / Experience / Bizdev / Careers / Contact) ---------- */
.page-hero {
  padding-top: clamp(9rem, 14vw, 12rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  padding-inline: var(--gutter);
  background: var(--secondary);
}
.page-hero h1 { font-size: var(--text-h1); margin-top: 1rem; max-width: 42rem; }
.page-hero-lead { margin-top: 1.25rem; font-size: var(--text-body-lg); color: var(--ink-70); max-width: 36rem; }
.page-hero--dark { background: var(--ink); color: var(--white); }
.page-hero--dark .eyebrow { color: var(--gold); }
.page-hero--dark .page-hero-lead { color: var(--white-80); }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero-lead { margin-inline: auto; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  box-shadow: 0 30px 60px -35px rgba(17,17,17,0.18);
}
.card-floating {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 40px 80px -40px rgba(17,17,17,0.25);
}

/* ---------- Media frame (used across pages for image/video panels) ---------- */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #1a1a1a, #0b0b0b 60%, #171310);
  aspect-ratio: 4 / 5;
}
.media-frame img, .media-frame video {
  width: 100%; height: 100%; object-fit: cover;
}
.media-frame--wide { aspect-ratio: 16 / 10; }
.media-frame--video { aspect-ratio: 16 / 9; }

/* Placeholder dressing for media not yet supplied by the client */
.media-frame[data-placeholder] { display: flex; align-items: center; justify-content: center; }
.media-frame[data-placeholder]::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 30% 20%, rgba(200,166,77,0.16), transparent 60%),
    radial-gradient(50% 40% at 80% 85%, rgba(200,166,77,0.10), transparent 60%);
}
.media-frame-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white-55);
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.media-frame-label svg { width: 18px; height: 18px; opacity: 0.8; flex-shrink: 0; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.field label { font-size: var(--text-small); font-weight: 600; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  background: var(--white);
  border: 1px solid var(--ink-20);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.05rem;
  font-size: var(--text-body);
  transition: border-color var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-15);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-hint { font-size: 0.78rem; color: var(--ink-45); }
.field-row { display: grid; gap: 1.25rem; }
@media (min-width: 700px) { .field-row-2 { grid-template-columns: 1fr 1fr; } }

.file-drop {
  border: 1px dashed var(--ink-20);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  font-size: var(--text-small);
  color: var(--ink-70);
  transition: border-color var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.file-drop.is-dragover { border-color: var(--gold); background: var(--gold-15); }

.form-note { font-size: 0.78rem; color: var(--ink-45); margin-top: 0.75rem; }

/* ---------- Form status pages (success.html / error.html) ---------- */
.status-section {
  min-height: 62vh;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  justify-content: center;
  padding-block: clamp(7rem, 12vw, 9rem) clamp(4rem, 8vw, 6rem);
}
.status-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
  background: var(--gold-15);
  color: var(--gold-hover);
}
.status-icon svg { width: 28px; height: 28px; }
.status-section[data-status-error] .status-icon { background: rgba(17,17,17,0.06); color: var(--ink-70); }
.status-section h1 { font-size: var(--text-h1); margin-bottom: 1rem; }
.status-section p { color: var(--ink-70); font-size: var(--text-body-lg); max-width: 32rem; margin-bottom: 2.25rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--white-80); padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem; }
.footer-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--white-15);
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 26rem; color: var(--white-55); line-height: 1.7; }
.footer-col h2 {
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white-55);
  margin-bottom: 1.1rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--white-80); font-size: 0.94rem; transition: color var(--dur-fast) var(--ease-soft); }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.9rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-luxury);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.82rem;
  color: var(--white-55);
}
.footer-bottom a:hover { color: var(--gold); }

@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* ---------- Misc utility ---------- */
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0 !important; }
.stack { display: flex; flex-direction: column; }
.center-col { display: flex; flex-direction: column; align-items: center; text-align: center; }


/* ---------- Location status section ---------- */
.locations-section {
  background: var(--secondary);
  overflow: hidden;
}
.locations-intro {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}
.locations-intro h2 em {
  color: var(--gold-hover);
  font-family: var(--font-accent);
  font-weight: 500;
}
.locations-intro > p:last-child {
  max-width: 44rem;
  margin-inline: auto;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
}
.location-card {
  position: relative;
  min-height: 28rem;
  padding: clamp(1.75rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink-20);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-luxury),
              box-shadow var(--dur-med) var(--ease-soft),
              border-color var(--dur-med) var(--ease-soft);
}
.location-card::after {
  content: '';
  position: absolute;
  width: 20rem;
  height: 20rem;
  right: -9rem;
  bottom: -11rem;
  border-radius: 50%;
  background: var(--gold-15);
  pointer-events: none;
}
.location-card--open {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.location-card--soon {
  background: var(--white);
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(17,17,17,.10);
}
.location-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.location-card--open .location-status {
  color: var(--gold);
}
.location-card--soon .location-status {
  color: var(--gold-hover);
}
.location-number {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  opacity: .55;
}
.location-card-body {
  position: relative;
  z-index: 1;
}
.location-eyebrow {
  margin-bottom: .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .65;
}
.location-card h3 {
  margin-bottom: .35rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
}
.location-card--open h3,
.location-card--open .location-card-body > p:not(.location-eyebrow) {
  color: var(--white);
}
.location-card-body > p:not(.location-eyebrow) {
  font-size: 1rem;
  opacity: .72;
  margin-bottom: 1.6rem;
}
.location-card .btn {
  margin-top: .25rem;
}
.location-coming {
  display: inline-block;
  max-width: 20rem;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--ink-70);
}
.location-card--open::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,166,77,.10), transparent 45%);
  pointer-events: none;
}
@media (max-width: 760px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .location-card {
    min-height: 23rem;
  }
}

/* ---------- Real venue imagery ---------- */
.media-frame img { position: relative; z-index: 0; }
.hero-bg-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-gallery-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: clamp(1rem, 2vw, 1.5rem); margin-top: 3rem; }
.gallery-tile { position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); }
.gallery-tile--large { min-height: 520px; }
.gallery-tile img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; transition: transform 0.8s var(--ease-luxury); }
.gallery-tile:hover img { transform: scale(1.035); }
.gallery-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.62), transparent 45%); pointer-events: none; }
.gallery-tile figcaption { position: absolute; left: 1.5rem; bottom: 1.25rem; z-index: 1; color: var(--white); font-family: var(--font-display); font-size: 1.35rem; }
@media (max-width: 800px) { .home-gallery-grid { grid-template-columns: 1fr; } .gallery-tile, .gallery-tile--large { min-height: 320px; } }
