:root {
  /* Depth scale: hairlines, raised surfaces, scrims. Reach for these before
     inventing another one-off translucency. */
  --hairline-1: rgba(255, 255, 255, 0.04);
  --hairline-2: rgba(255, 255, 255, 0.08);
  --hairline-3: rgba(255, 255, 255, 0.12);
  --hairline-4: rgba(255, 255, 255, 0.22);
  --surface-1: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --scrim-1: rgba(0, 0, 0, 0.24);

  --bg: #0a0b11;
  --bg-soft: #10121a;
  --bg-card: #12141d;
  --text: #ece7dc;
  --text-muted: rgba(236, 231, 220, 0.72);
  --line: rgba(236, 231, 220, 0.14);
  --accent: #e6455a;
  --accent-hover: #ff5d72;
  --accent-soft: rgba(230, 69, 90, 0.14);
  --ink: #0a0b11;
  --bone: #ece7dc;
  --white: #ffffff;

  --font-display: "Hanken Grotesk", system-ui, sans-serif;
  --display-stretch: 100%;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --container: 1200px;
  --header-height: 84px;
  --card-radius: 16px;
  --radius: 10px;
  --transition: 220ms ease;
  --section-space: clamp(72px, 9vw, 112px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open,
body.popup-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1400;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible,
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

#main:focus {
  outline: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1300;
  transform: translateY(0);
  transition:
    transform 260ms ease,
    background-color 260ms ease,
    backdrop-filter 260ms ease,
    border-color 260ms ease;
  background: rgba(7, 7, 7, 0.28);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.header-scrolled {
  background: rgba(7, 7, 7, 0.74);
  border-bottom-color: var(--hairline-2);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  position: relative;
  z-index: 1270;
  color: var(--text);
}

/* Burger button, phone and tablet only */
.menu-toggle {
  display: inline-flex;
  position: relative;
  z-index: 1270;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: var(--hairline-1);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.menu-toggle:hover {
  background: var(--hairline-2);
  border-color: rgba(255, 255, 255, 0.24);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Off-canvas nav for all screen sizes */
.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100svh;
  padding: 110px 28px 32px;
  background: #0a0a0a;
  backdrop-filter: blur(18px);
  border-left: 1px solid var(--hairline-2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 280ms ease,
    opacity 280ms ease,
    visibility 280ms ease;
  z-index: 1260;
}

.site-nav.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav a {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.9;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-2);
  transition:
    opacity var(--transition),
    color var(--transition),
    transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  transform: translateX(4px);
}

.site-nav .nav-cta {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--accent);
  color: #0a0a0a;
  opacity: 1;
  box-shadow: none;
  border-bottom: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active {
  background: var(--accent-hover);
  box-shadow: none;
  transform: translateY(-1px);
}

.nav-actions {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.site-nav .nav-cta-secondary {
  color: var(--text);
  border: 1px solid var(--hairline-4);
  background: var(--surface-1);
  box-shadow: none;
}

.site-nav .nav-cta-secondary:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: var(--surface-2);
  box-shadow: none;
}

/* Backdrop behind menu */
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1250;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(2px);
}

@media (min-width: 901px) {
  .site-header.header-hidden {
    transform: translateY(0);
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-left: none;
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.6vw, 22px);
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    z-index: auto;
  }

  .site-nav a {
    width: auto;
    padding: 0;
    border-bottom: none;
    font-size: clamp(0.72rem, 0.78vw, 0.86rem);
    letter-spacing: 0.07em;
    white-space: nowrap;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    transform: none;
    color: var(--accent);
  }

  .nav-actions {
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    margin-left: 4px;
  }

  .site-nav .nav-cta {
    width: auto;
    min-height: 42px;
    padding: 0 15px;
    font-size: clamp(0.68rem, 0.74vw, 0.8rem);
    letter-spacing: 0.06em;
  }
}

/* Slightly tighter on phones */
@media (max-width: 640px) {
  .site-nav {
    width: 100vw;
    padding: 100px 22px 24px;
  }

  .site-nav a {
    font-size: 0.95rem;
    padding: 13px 0;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }
}
/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition:
    opacity 900ms ease,
    transform 1600ms ease,
    filter 900ms ease,
    visibility 900ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Round 5: two cuts of Bryan's night edit, one graded for each orientation
   (Ruben supplied both). Desktop is 16:9 in six one-second shots, phone is a
   true 9:16 vertical in eight. The still slide is the video's own first frame
   (the same file the <video> uses as its poster), so the first paint and the
   first frame of playback are the same image and the fade-in is invisible. The
   homepage renders a single slide; the old hero-bg-2..4 slide slots were dead
   markup-side and are gone. */
.hero-slide:nth-child(1) {
  background-image: url("../media/videos/bz-hero-v3-poster.jpg");
  background-position: center center;
}

@media (max-width: 640px) {
  /* phones get the vertical cut, so they get its first frame too */
  .hero-slide:nth-child(1) {
    background-image: url("../media/videos/bz-hero-v3-poster-mobile.jpg");
  }
}

/* Hero video. Sits over the still slide, fades in only once it is actually
   playing, so the poster/still carries the first paint and every fallback
   (no JS, reduced motion, blocked autoplay, save-data). */
.hero-video {
  position: absolute;
  inset: 0;
  /* above the still slide, inside .hero-bg's own stacking context (which is
     itself at -3, so this stays under .hero-overlay and the copy). A negative
     value here paints the video BEHIND the opaque still and it never shows. */
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* matches the still slide's background-position */
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 1100ms ease,
    transform 1600ms ease;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-video.is-playing {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 600ms ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 100px;
}

.hero-eyebrow,
.section-kicker {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-hover);
}

.hero h1 {
  font-family: var(--font-display);
  font-stretch: var(--display-stretch);
  text-transform: none;
  width: 100%;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions .text-link,
.inline-cta .text-link,
.venue-preview-cta .text-link {
  align-self: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.hero-dot:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.65);
}

.hero-dot.is-active {
  background: var(--accent);
  box-shadow: none;
}

/* Hero entrance */
.hero-eyebrow,
.hero h1,
.hero .hero-actions {
  opacity: 0;
  transform: translateY(30px);
}

.page-loaded .hero-eyebrow {
  animation: heroFadeUp 0.8s ease forwards 0.18s;
}

.page-loaded .hero h1 {
  animation: heroFadeUp 0.95s ease forwards 0.34s;
}

.page-loaded .hero .hero-actions {
  animation: heroFadeUp 0.85s ease forwards 0.54s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: center;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--bone);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--ink);
}

.btn-secondary {
  border: 1px solid var(--hairline-4);
  background: var(--surface-1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: var(--surface-2);
}

/* Sections */
.section,
.simple-section {
  padding: var(--section-space) 0;
}

.simple-section-dark {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-inner {
  max-width: 760px;
}

/* Typography */
.section h1,
.simple-section h1,
.section h2,
.simple-section h2,
.section h3,
.simple-section h3,
.footer-brand-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: var(--display-stretch);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}

.footer-links-col h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section h1,
.simple-section h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.4rem);
  line-height: 1.04;
}

.section h2,
.simple-section h2,
.footer-brand-block h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.06;
}

.section h3,
.simple-section h3 {
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  line-height: 1.2;
}

.section-heading h1,
.section-heading h2,
.split-copy h1,
.split-copy h2,
.simple-section h1,
.simple-section h2,
.footer-brand-block h2 {
  margin-bottom: 18px;
}

.service-card h3,
.timeline-step h3,
.footer-links-col h3 {
  margin-bottom: 12px;
}

.section p,
.section-copy,
.simple-section p,
.footer-brand-block p,
.footer-links-col a,
.footer-bottom p {
  font-family: var(--font-body);
  color: var(--text-muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 800ms ease,
    transform 800ms ease,
    filter 800ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(6px);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Split sections */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: var(--card-radius);
}

.split-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--card-radius);
  transition: transform 900ms ease;
}

.split-media:hover img {
  transform: scale(1.035);
}

.split-copy,
.process-copy-left,
.process-copy-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy h1,
.split-copy h2,
.process-copy-right h2,
.process-copy-left h3 {
  margin-bottom: 18px;
}

.split-copy p + p {
  margin-top: 12px;
}

/* Trust / standard */
.trust-section,
.partners-section,
.proof-section {
  background: var(--bg);
}

/* Partners */
.partners-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partners-copy h2 {
  margin-bottom: 18px;
}

.partners-copy p {
  margin-bottom: 14px;
}

.partners-carousel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.97);
  filter: blur(6px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease,
    visibility 700ms ease;
}

.logo-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.partners-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
  cursor: pointer;
}

.partners-dot:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.55);
}

.partners-dot.is-active {
  background: var(--accent);
  box-shadow: none;
}

/* Services */
.services-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards-grid-3,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 28px 0 0;
  text-align: left;
}

.service-glyph {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--accent);
  opacity: 0.85;
}

.service-card p {
  font-size: 0.96rem;
  line-height: 1.7;
}

/* How it works */
.how-it-works-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.how-it-works-section .section-heading {
  margin: 0 auto 24px;
  text-align: center;
  max-width: 720px;
}

.how-it-works-section h2 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 0.92;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.how-it-works-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 26px;
  max-width: 520px;
}

.timeline-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(230, 69, 90, 0.88),
    var(--hairline-3)
  );
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 1000ms ease 180ms;
}

.timeline-visible .timeline-line {
  transform: scaleY(1);
}

.timeline-step {
  position: relative;
  padding-left: 18px;
}

.timeline-card {
  transition: transform 260ms ease;
}

.timeline-step:hover .timeline-card {
  transform: translateX(6px);
}

.timeline-dot {
  position: absolute;
  top: 8px;
  left: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.timeline-step p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.how-it-works-copy {
  max-width: 460px;
}

.how-it-works-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  margin-bottom: 12px;
}

.how-it-works-copy p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.how-it-works-copy p + p {
  margin-top: 10px;
}

/* Steps (homepage) */
.steps-section {
  border-top: 1px solid var(--line);
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1040px;
  margin: 0 auto;
}

.steps-grid li {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.steps-grid h3 {
  margin-bottom: 10px;
}

.steps-grid p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Instagram feed */
.ig-section {
  border-top: 1px solid var(--line);
}

.ig-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ig-heading h2 {
  max-width: 640px;
}

.ig-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.ig-modal.is-active {
  visibility: visible;
  opacity: 1;
}

.ig-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.ig-modal-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ig-modal-close {
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 0.95rem;
  cursor: pointer;
}

.ig-modal-body .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border-radius: 2px !important;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ig-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  transition: border-color 300ms ease, transform 300ms ease;
}

.ig-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-4px);
}

.ig-card-link {
  display: flex;
  flex-direction: column;
}

.ig-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.ig-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ig-handle {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.ig-loc {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

.ig-glyph {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: var(--text-muted);
  transition: color 300ms ease;
}

.ig-card:hover .ig-glyph {
  color: var(--text);
}

.ig-card-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.ig-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.ig-card:hover .ig-card-media img {
  transform: scale(1.04);
}

.ig-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ig-view {
  transition: color 300ms ease;
}

.ig-card:hover .ig-view {
  color: var(--accent);
}

@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 540px) {
  .ig-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 84px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: start;
}

.footer-brand-block {
  max-width: 620px;
  min-width: 0;
}

.footer-brand-block h2 {
  margin-bottom: 16px;
}

.footer-brand-block p {
  max-width: 540px;
  margin-bottom: 22px;
}

.footer-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.footer-links-col h3 {
  margin-bottom: 6px;
}

.footer-links-col a {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
}

.footer-links-col a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 1100px) {
  .cards-grid-3,
  .proof-grid,
  .partners-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .partners-track {
    min-height: 180px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .how-it-works-section {
    min-height: auto;
    padding: 80px 0;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .how-it-works-timeline {
    order: 1;
    padding-left: 22px;
  }

  .how-it-works-copy {
    order: 2;
    max-width: 100%;
  }

  .site-footer {
    padding: 72px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9.5vw, 3.3rem);
    line-height: 1.06;
  }

  .section h1,
  .simple-section h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.08;
  }

  .section h2,
  .simple-section h2,
  .footer-brand-block h2 {
    font-size: clamp(1.65rem, 6.6vw, 2.3rem);
    line-height: 1.1;
  }

  .section h3,
  .simple-section h3 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
  }

  .service-card {
    padding: 28px 20px;
  }

  .how-it-works-section {
    padding: 70px 0;
  }

  .how-it-works-timeline {
    gap: 14px;
    padding-left: 20px;
  }

  .timeline-step {
    padding-left: 14px;
  }

  .timeline-dot {
    width: 9px;
    height: 9px;
  }

  .timeline-step h3 {
    font-size: 1.1rem;
  }

  .timeline-step p {
    font-size: 0.85rem;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom-links {
    gap: 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-subtitle,
  .hero-trust-row,
  .hero-actions,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .timeline-line {
    transform: scaleY(1) !important;
  }
}

/* =========================================
   MOBILE SPACING UPGRADE
   Paste at very bottom of your CSS
========================================= */

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section,
  .simple-section {
    padding: var(--section-space) 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading.centered {
    max-width: 100%;
  }

  .section p,
  .section-copy,
  .simple-section p,
  .footer-brand-block p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .section h2,
  .simple-section h2,
  .footer-brand-block h2 {
    font-size: clamp(1.65rem, 6.6vw, 2.3rem);
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .section h3,
  .simple-section h3 {
    line-height: 1.18;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 126px;
    max-width: 100%;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 9.5vw, 3.3rem);
    line-height: 1.06;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-dots {
    bottom: 28px;
  }

  /* Split sections */
  .split-grid,
  .partners-grid,
  .how-it-works-grid,
  .footer-top {
    gap: 36px;
  }

  .split-media {
    border-radius: var(--radius);
  }

  .split-media img {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
  }

  .split-copy,
  .process-copy-left,
  .process-copy-right {
    gap: 0;
  }

  .split-copy p + p {
    margin-top: 16px;
  }

  /* Partners */
  .partners-copy p + p {
    margin-top: 14px;
  }

  .partners-track {
    min-height: 150px;
  }

  .partners-dots {
    margin-top: 18px;
  }

  /* Services */
  .cards-grid-3 {
    gap: 18px;
  }

  .service-card {
    padding: 28px 22px;
    text-align: left;
  }

  .service-icon {
    width: 82px;
    height: 82px;
    margin: 0 0 18px;
  }

  .service-card h3 {
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  /* How it works */
  .how-it-works-section {
    padding: 92px 0;
  }

  .how-it-works-section .section-heading {
    margin-bottom: 30px;
  }

  .how-it-works-timeline {
    gap: 22px;
    padding-left: 24px;
    max-width: 100%;
  }

  .timeline-step {
    padding-left: 16px;
  }

  .timeline-card {
    padding-right: 6px;
  }

  .timeline-label {
    margin-bottom: 8px;
  }

  .timeline-step h3 {
    font-size: 1.35rem;
    line-height: 1;
    margin-bottom: 8px;
  }

  .timeline-step p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .how-it-works-copy {
    max-width: 100%;
  }

  .how-it-works-copy h3 {
    margin-bottom: 14px;
  }

  .how-it-works-copy p + p {
    margin-top: 14px;
  }

  /* Proof */
  .proof-grid {
    gap: 18px;
  }

  .proof-card {
    border-radius: var(--radius);
  }

  .proof-card img {
    aspect-ratio: 4 / 4.8;
  }

  /* Footer */
  .site-footer {
    padding: 80px 0 28px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer-top {
    gap: 34px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Extra-small phones */
@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 118px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .btn {
    min-height: 56px;
    padding: 0 20px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .timeline-step p,
  .service-card p,
  .section p {
    line-height: 1.8;
  }
}

/* =========================================
   VENUES / VIP ACCESS
========================================= */

.homepage-venues-section,
.venues-directory-section,
.venue-booking-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venues-hero,
.venue-detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.venues-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 69, 90, 0.14), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(120, 140, 235, 0.12), transparent 32%),
    linear-gradient(145deg, #0a0b11 0%, #10121a 46%, #171019 100%);
}

.venues-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 72%);
}

.venues-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: end;
}
.venues-hero-copy h1,
.venue-detail-hero h1,
.venue-detail-intro h2,
.booking-info-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: var(--display-stretch);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
}

.venues-hero-copy h1,
.venue-detail-hero h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 5.8vw, 5rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.venues-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--card-radius);
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.venues-hero-panel span {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venues-hero-panel p {
  color: var(--text-muted);
  line-height: 1.7;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

.featured-venue-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
}

.venue-card {
  display: flex;
  min-width: 0;
}

.venue-card[hidden] {
  display: none;
}

.venue-card-link {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--hairline-3);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.014));
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    background-color 280ms ease;
}

.venue-card-link:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 69, 90, 0.42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.venue-card-media {
  position: relative;
  overflow: hidden;
  background: #12141d;
}

/* ---- Unified texture: film grain over every identity card ---- */
.venue-card-media::after,
.venue-detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.26'/%3E%3C/svg%3E") repeat;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.venue-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(130% 100% at 18% 112%, var(--art-glow-strong) 0%, transparent 52%),
    radial-gradient(90% 70% at 86% -6%, var(--art-glow-soft) 0%, transparent 55%),
    linear-gradient(150deg, #131620, #0a0b11 70%);
}

.venue-art-ring {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--art-line);
  border-radius: calc(var(--card-radius) - 6px);
  pointer-events: none;
}

.venue-art-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
}

.venue-art-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: var(--display-stretch);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--bone);
  text-shadow: 0 0 26px var(--art-glow-strong);
  overflow-wrap: anywhere;
}

/* Per-venue neon: each tone is one hue of the same system */
.venue-art-gold {
  --art-accent: #ffb454;
  --art-glow-strong: rgba(255, 160, 60, 0.34);
  --art-glow-soft: rgba(255, 180, 84, 0.12);
  --art-line: rgba(255, 180, 84, 0.28);
}

.venue-art-blue {
  --art-accent: #6b9dff;
  --art-glow-strong: rgba(79, 141, 255, 0.36);
  --art-glow-soft: rgba(79, 141, 255, 0.12);
  --art-line: rgba(107, 157, 255, 0.28);
}

.venue-art-violet {
  --art-accent: #b48cff;
  --art-glow-strong: rgba(160, 107, 255, 0.36);
  --art-glow-soft: rgba(160, 107, 255, 0.12);
  --art-line: rgba(180, 140, 255, 0.28);
}

.venue-art-red {
  --art-accent: #ff6b84;
  --art-glow-strong: rgba(255, 77, 109, 0.36);
  --art-glow-soft: rgba(255, 77, 109, 0.13);
  --art-line: rgba(255, 107, 132, 0.28);
}

.venue-art-aqua {
  --art-accent: #3fdfd2;
  --art-glow-strong: rgba(47, 212, 200, 0.32);
  --art-glow-soft: rgba(47, 212, 200, 0.12);
  --art-line: rgba(63, 223, 210, 0.28);
}

.venue-art-silver {
  --art-accent: #ccd7e6;
  --art-glow-strong: rgba(201, 212, 228, 0.26);
  --art-glow-soft: rgba(201, 212, 228, 0.1);
  --art-line: rgba(201, 212, 228, 0.26);
}

.venue-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.44);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.venue-card-body {
  display: flex;
  min-height: 150px;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 22px;
}

.venue-property {
  display: block;
  min-height: 34px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.venue-card h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.08;
  text-transform: none;
  overflow-wrap: anywhere;
}

.venue-card p {
  color: var(--text-muted);
  line-height: 1.58;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.venue-card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-preview-cta,
.venue-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.venue-preview-cta {
  margin-top: 32px;
}

.venue-filter-bar {
  margin: -14px 0 34px;
}

.venue-filter {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.venue-filter:hover,
.venue-filter.is-active {
  color: #0a0a0a;
  border-color: rgba(230, 69, 90, 0.82);
  background: var(--accent);
}

.venue-filter:hover {
  transform: translateY(-1px);
}

.venue-stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.venue-stats-panel div {
  min-width: 0;
}

.venue-stats-panel strong,
.venue-stats-panel span {
  display: block;
}

.venue-stats-panel strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
}

.venue-stats-panel span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-info-section {
  background: var(--bg);
}

.booking-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.booking-info-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
}

.booking-info-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 0.94;
}

.booking-info-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.compact-faq {
  gap: 14px;
}

.compact-faq .faq-item {
  padding: 24px;
}

.venue-detail-hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: 90px;
}

.venue-detail-bg,
.venue-detail-bg .venue-art {
  position: absolute;
  inset: 0;
}

.venue-detail-bg .venue-art {
  align-items: center;
  justify-content: center;
}

.venue-detail-bg .venue-art-ring {
  display: none;
}

.venue-detail-bg .venue-art-label {
  padding: 0;
  align-items: center;
}

.venue-detail-bg .venue-art-name {
  font-size: clamp(7rem, 24vw, 20rem);
  color: rgba(236, 231, 220, 0.07);
  text-shadow: none;
  white-space: nowrap;
}

.venue-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.venue-stat-strip > div {
  flex: 1 1 160px;
  padding: 16px 24px 0 0;
}

.venue-stat-strip dt {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.venue-stat-strip dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
}

.venue-detail-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.venue-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(230, 69, 90, 0.64);
  padding-bottom: 4px;
}

.back-link:hover {
  color: var(--accent);
}

.venue-detail-intro {
  background: var(--bg);
}

.venue-detail-cards .service-card {
  text-align: left;
}

.number-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.number-list li {
  padding-left: 4px;
  line-height: 1.65;
}

.venue-form-status {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid rgba(230, 69, 90, 0.28);
  border-radius: var(--radius);
  background: rgba(230, 69, 90, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.direct-contact-card,
.form-direct-note {
  border: 1px solid rgba(230, 69, 90, 0.18);
  background:
    linear-gradient(180deg, rgba(230,69,90,0.08), rgba(230,69,90,0.02)),
    rgba(255, 255, 255, 0.025);
  border-radius: var(--radius);
}

.direct-contact-card {
  margin-top: 24px;
  padding: 24px;
}

.direct-contact-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.direct-contact-card p {
  color: var(--text-muted);
  line-height: 1.65;
}

.direct-contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-direct-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.form-direct-note strong {
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-direct-note span {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .venue-grid,
  .featured-venue-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
  }
}

@media (max-width: 900px) {
  .venues-hero-inner,
  .booking-info-grid {
    grid-template-columns: 1fr;
  }

  .venues-hero-inner {
    align-items: start;
  }

  .venues-hero-panel {
    max-width: 560px;
  }

  .venue-grid,
  .featured-venue-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .venue-stats-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .venues-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 70px;
  }

  .venues-hero-copy h1,
  .venue-detail-hero h1 {
    font-size: clamp(2.1rem, 8.4vw, 2.9rem);
    line-height: 1.08;
  }

  .venues-hero-panel,
  .booking-info-card {
    padding: 24px 20px;
    border-radius: var(--radius);
  }

  .venue-grid,
  .featured-venue-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .venue-card-media {
    aspect-ratio: 16 / 10;
  }

  .venue-card-body {
    min-height: 220px;
    padding: 22px 20px;
  }

  .venue-property {
    min-height: auto;
  }

  .direct-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .direct-contact-actions .btn {
    width: 100%;
  }

  .venue-art-name {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .venue-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .venue-filter {
    min-height: 46px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .venue-preview-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .venue-preview-cta .btn {
    width: 100%;
  }

  .venue-detail-hero {
    min-height: 86vh;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 76px;
  }

  .venues-hero .container,
  .venue-detail-hero .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .venue-detail-bg .venue-art-name {
    font-size: clamp(4.5rem, 26vw, 8rem);
  }

  .venue-detail-cards {
    gap: 18px;
  }
}

/* SERVICES HERO */

.services-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  background: linear-gradient(to bottom, #0d0d0d, #121212);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.06;
  margin-bottom: 18px;
}

.services-hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 12px;
}

.services-hero-media {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.services-hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--card-radius);
  transition: transform 700ms ease;
}

.services-hero-media:hover img {
  transform: scale(1.04);
}

.services-hero h1 {
  font-family: var(--font-display);
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.06;
}

/* MOBILE */

@media (max-width: 900px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-hero-media img {
    height: 380px;
  }

  .services-hero {
    padding-bottom: 60px;
  }
}

.site-header.header-transparent {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

/* =========================================
   CONVERSION UPGRADES
========================================= */

.hero-subtitle {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(245, 241, 232, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.page-loaded .hero-subtitle {
  animation: heroFadeUp 0.85s ease forwards 0.46s;
}

.page-loaded .hero-trust-row {
  animation: heroFadeUp 0.85s ease forwards 0.66s;
}

.hero-subtitle,
.hero-trust-row {
  opacity: 0;
  transform: translateY(30px);
}

.inline-cta,
.section-cta,
.centered-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.centered-cta,
.centered-actions {
  justify-content: center;
}

.text-link {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(230, 69, 90, 0.55);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.info-panel,
.booking-panel,
.response-card,
.faq-item,
.final-cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border-radius: var(--card-radius);
}

.info-panel,
.booking-panel {
  padding: 34px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
}

.trust-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.trust-notes div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.trust-notes strong,
.trust-notes span {
  display: block;
}

.trust-notes strong {
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
}

.trust-notes span {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.faq-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.faq-item {
  padding: 28px;
}

.faq-item h3 {
  margin-bottom: 12px;
}

.final-cta-section {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.58)),
    url("../media/images/hero-bg-3.jpg") center / cover no-repeat;
}

.final-cta {
  max-width: 780px;
  padding: 42px;
  backdrop-filter: blur(10px);
}

.final-cta h2 {
  margin-bottom: 16px;
}

.centered-copy {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-intro {
  padding-top: calc(var(--header-height) + 86px);
  background: radial-gradient(circle at 12% 0%, rgba(230, 69, 90, 0.08), transparent 34%), var(--bg);
}

.page-intro .section-copy {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.venue-list-grid .service-card {
  text-align: left;
}

.booking-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 80px;
  background:
    linear-gradient(to right, rgba(13,13,13,0.94), rgba(13,13,13,0.76)),
    url("../media/images/hero-bg-2.jpg") center / cover no-repeat;
}

.booking-hero-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.booking-hero-copy h1,
.booking-copy h2,
.booking-panel h2,
.response-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--text);
}

.booking-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
}

.booking-panel h2,
.booking-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.booking-panel p,
.response-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.booking-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-grid {
  align-items: start;
}

.booking-copy {
  max-width: 520px;
}

.response-card {
  margin-top: 28px;
  padding: 26px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(10, 10, 10, 0.58);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.booking-submit {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  padding: 15px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.form-row input,
.form-row select {
  min-height: 54px;
}

.form-row textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(230, 69, 90, 0.68);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(230, 69, 90, 0.11);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1100px) {
  .booking-hero-grid,
  .booking-grid,
  .faq-grid,
  .trust-notes {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  /* Footer on phones: the sticky bar already carries Message and Call,
     so the footer states the offer and carries navigation instead of
     repeating the same two buttons directly underneath it. */
  .footer-cta-row {
    display: none;
  }

  .footer-links-col a,
  .footer-bottom-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .hero-subtitle {
    margin-top: 18px;
    line-height: 1.55;
  }

  .inline-cta,
  .section-cta,
  .centered-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inline-cta .btn,
  .section-cta .btn,
  .centered-actions .btn {
    width: 100%;
  }

  .info-panel,
  .booking-panel,
  .faq-item,
  .final-cta,
  .response-card {
    padding: 24px 20px;
    border-radius: var(--radius);
  }

  .page-intro {
    padding-top: calc(var(--header-height) + 54px);
  }

  .booking-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 54px);
    padding-bottom: 68px;
  }

  .booking-hero-grid,
  .booking-grid {
    gap: 30px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
    border-radius: var(--radius);
  }

  .form-row input,
  .form-row select {
    min-height: 56px;
  }

  .trust-notes {
    gap: 14px;
  }

  .trust-notes div {
    border-radius: var(--radius);
    padding: 20px;
  }

  .final-cta {
    backdrop-filter: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 10px max(10px, env(safe-area-inset-bottom));
    background: rgba(7, 7, 7, 0.88);
    border-top: 1px solid var(--hairline-3);
    backdrop-filter: blur(16px);
    transform: translateY(110%);
    transition: transform 320ms ease;
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-sticky-cta .btn {
    min-height: 50px;
    padding: 0 8px;
    font-size: 0.72rem;
    text-align: center;
    white-space: nowrap;
  }

  body.menu-open .mobile-sticky-cta {
    display: none;
  }

  .hero-actions .text-link,
  .inline-cta .text-link,
  .venue-preview-cta .text-link {
    text-align: center;
  }

  .footer-cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-cta-row .btn {
    width: 100%;
  }
}

/* ---------------------------------
   FORM SUBMISSION FEEDBACK
--------------------------------- */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status-success {
  background: rgba(46, 160, 90, 0.12);
  border: 1px solid rgba(46, 160, 90, 0.45);
  color: #7ddc9f;
}

.form-status-error {
  background: rgba(200, 60, 60, 0.12);
  border: 1px solid rgba(200, 60, 60, 0.45);
  color: #f0a0a0;
}

.form-status strong {
  color: inherit;
}

.footer-entity {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ---------------------------------
   VENUE DETAIL — RESEARCHED CONTENT
   Hairline dividers instead of card boxes.
--------------------------------- */
.venue-note-section {
  padding: 46px 0 0;
}

.venue-note h2 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
}

.venue-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

.venue-deep-block {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.venue-deep-block h2 {
  margin-bottom: 16px;
}

.venue-deep-block p {
  color: var(--text-muted);
  line-height: 1.75;
}

.venue-planning-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.venue-planning-list {
  display: grid;
  gap: 0;
}

.venue-planning-list > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.venue-planning-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.venue-planning-list dt {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding-top: 3px;
}

.venue-planning-list dd {
  color: var(--text-muted);
  line-height: 1.75;
}

.venue-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

.venue-fit-block {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.venue-fit-block h2 {
  margin-bottom: 8px;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--text-muted);
  opacity: 0.6;
}

.venue-fit-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .venue-deep-grid,
  .venue-fit-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .venue-planning-list > div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .venue-note-section {
    padding-top: 36px;
  }

  .venue-note {
    padding-left: 18px;
  }
}

.service-venue-list {
  margin-top: 14px;
}

.service-venue-list li::before {
  top: 0.72em;
}

.service-venue-list a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.service-venue-list a:hover {
  color: var(--accent);
}

/* =========================================
   2026 OVERHAUL LAYER
   Editorial layout, image grade support,
   planning-note prominence, refined rhythm.
========================================= */

/* --- Editorial venue grids: the lead venue earns the area --- */
.venue-grid {
  grid-auto-flow: dense;
}

.featured-venue-grid > .venue-card:first-child,
.venues-directory-section .venue-grid > .venue-card:nth-child(8n + 1) {
  grid-column: span 2;
}

.featured-venue-grid > .venue-card:first-child .venue-card-media,
.venues-directory-section .venue-grid > .venue-card:nth-child(8n + 1) .venue-card-media {
  aspect-ratio: 16 / 8.4;
}

@media (max-width: 640px) {
  .featured-venue-grid > .venue-card:first-child,
  .venues-directory-section .venue-grid > .venue-card:nth-child(8n + 1) {
    grid-column: auto;
  }

  .featured-venue-grid > .venue-card:first-child .venue-card-media,
  .venues-directory-section .venue-grid > .venue-card:nth-child(8n + 1) .venue-card-media {
    aspect-ratio: 4 / 3.05;
  }
}

/* --- Planning notes: the most valuable content on the site --- */
.venue-note {
  max-width: 900px;
  border-left: none;
  border: 1px solid rgba(230, 69, 90, 0.34);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(230, 69, 90, 0.16), transparent 52%),
    var(--bg-card);
  padding: 28px 30px;
}

.venue-note h2 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--accent-hover);
  margin-bottom: 12px;
}

.venue-note p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text);
}

@media (max-width: 640px) {
  .venue-note {
    padding: 22px 20px;
  }
}

.venue-detail-overlay {
  background: linear-gradient(to bottom, rgba(10, 11, 17, 0.1), rgba(10, 11, 17, 0.68));
}

/* --- Homepage hero slides get the same grade as venue imagery --- */
.hero-slide {
  filter: saturate(0.66) contrast(1.05) brightness(0.9);
}

.hero-slide.is-active {
  filter: saturate(0.66) contrast(1.05) brightness(0.9);
}

/* --- Type detail: italic serif emphasis for display lines --- */
.hero h1 em,
.section h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-hover);
}

/* --- One section rhythm sitewide (consistency pass 2026-08-21) --- */

/* --- Focus visibility on the new palette --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
}

/* --- Selection --- */
::selection {
  background: rgba(230, 69, 90, 0.45);
  color: var(--white);
}

/* --- Reduced motion: kill the image zooms and reveals --- */
@media (prefers-reduced-motion: reduce) {
  .venue-image,
  .venue-card-link:hover .venue-image,
  .hero-slide,
  .btn,
  .venue-card-link {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}
/* --- Client note: no eyebrow/kicker labels above headlines --- */
.hero-eyebrow,
.section-kicker {
  display: none;
}

.icon-heading {
  align-items: center;
}

.venue-planning-list dt {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* --- Readability: larger base copy, especially on phones --- */
.section p,
.section-copy,
.simple-section p,
.footer-brand-block p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.venue-card p {
  font-size: 0.98rem;
}

.timeline-step p,
.steps-grid p {
  font-size: 0.98rem;
}

.check-list li,
.plain-list li {
  font-size: 1.02rem;
}

@media (max-width: 640px) {
  .section p,
  .section-copy,
  .simple-section p,
  .footer-brand-block p {
    font-size: 1.08rem;
    line-height: 1.8;
  }

  .venue-card p,
  .timeline-step p,
  .steps-grid p,
  .check-list li,
  .plain-list li,
  .venue-planning-list dd,
  .faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .footer-links-col a,
  .footer-bottom p {
    font-size: 1rem;
  }
}

/* ============================================================
   ROUND 3 — "members' black"
   Reference base: Nobu (one family, many weights; dual scrim),
   Velocity Black (dark footage-led), Linear (hairline cards,
   500-weight display, tight tracking), Dice/RA (mono meta),
   Vercel (one glow per view), Spotify (per-venue hue on dark).
   ============================================================ */

/* --- Type: taller face (Hanken Grotesk), light-to-medium weights,
       tighter spacing. Display never exceeds 500. --- */
.hero h1 {
  font-size: clamp(3.1rem, 6.8vw, 5.9rem);
  font-weight: 480;
  letter-spacing: -0.022em;
  line-height: 1.02;
}
.section h2,
.simple-section h2,
.section h3,
.simple-section h3,
.footer-brand-block h2,
.timeline-step h3,
.venues-hero-copy h1,
.venue-detail-hero h1,
.venue-detail-intro h2,
.booking-info-card h2,
.services-hero-copy h1,
.services-hero h1 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.venue-card h3 {
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* Light display needs a touch more size on small screens */
@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.4rem);
  }
}

/* Tracked-caps survives only as tiny labels (Nobu/Aman rule) */
.venue-card-badge,
.back-link,
.venue-stat-strip dt {
  letter-spacing: 0.12em;
}

/* --- Hero: visibility fix. Nobu dual scrim — dark bands top and
       bottom (~20%), the middle stays clear so the footage reads.
       A soft left band protects the headline only. --- */
.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(10, 11, 17, 0.62) 0%, rgba(10, 11, 17, 0) 22%),
    linear-gradient(to top, rgba(10, 11, 17, 0.72) 0%, rgba(10, 11, 17, 0) 26%),
    linear-gradient(to right, rgba(10, 11, 17, 0.5) 0%, rgba(10, 11, 17, 0.12) 48%, rgba(10, 11, 17, 0) 70%);
}

/* Video hero: a touch more left-side scrim than the still needs. */
.hero:has(.hero-video.is-playing) .hero-overlay {
  background:
    linear-gradient(to bottom, rgba(10, 11, 17, 0.66) 0%, rgba(10, 11, 17, 0) 24%),
    linear-gradient(to top, rgba(10, 11, 17, 0.78) 0%, rgba(10, 11, 17, 0) 30%),
    linear-gradient(to right, rgba(10, 11, 17, 0.62) 0%, rgba(10, 11, 17, 0.2) 48%, rgba(10, 11, 17, 0) 72%);
}

@media (max-width: 640px) {
  /* the vertical cut fills the phone frame with lit shirt and sunglasses under
     the copy, so on phones the bottom scrim reaches further up and the
     left-to-right one goes (a horizontal gradient on a 390px frame only darkens
     one edge). Measured across all eight shots: worst headline band 83 and
     worst subtitle band 80, with the face band left at ~65. */
  .hero-overlay,
  .hero:has(.hero-video.is-playing) .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(10, 11, 17, 0.66) 0%, rgba(10, 11, 17, 0) 24%),
      linear-gradient(to top, rgba(10, 11, 17, 0.92) 0%, rgba(10, 11, 17, 0.58) 42%, rgba(10, 11, 17, 0) 78%);
  }
}

/* Footage is graded at the source now — stop re-filtering it flat */
.hero-slide,
.hero-slide.is-active {
  filter: none;
}

/* ---- Official venue assets (venue permission via Bryan, 2026-08) ----
   Real venue photography + official logos, layered into the existing
   neon identity card system. Venues without assets keep the type card. */

.venue-art-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-art.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 11, 17, 0.92) 0%, rgba(10, 11, 17, 0.32) 46%, rgba(10, 11, 17, 0.08) 100%);
}

.venue-art.has-photo .venue-art-ring {
  border-color: rgba(255, 255, 255, 0.16);
}

.venue-art-logo {
  display: block;
  width: auto;
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(10, 11, 17, 0.85));
}

.venue-detail-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-detail-hero.has-photo .venue-detail-overlay {
  background:
    linear-gradient(to top, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.62) 44%, rgba(13, 13, 13, 0.22) 100%),
    linear-gradient(to right, rgba(13, 13, 13, 0.55), rgba(13, 13, 13, 0.1));
}

.venue-detail-logo {
  display: block;
  max-width: min(320px, 72%);
  max-height: 72px;
  width: auto;
  height: auto;
  margin: 6px 0 18px;
  filter: drop-shadow(0 2px 20px rgba(10, 11, 17, 0.9));
}

@media (max-width: 640px) {

  .venue-detail-logo {
    max-height: 54px;
  }
}

.venue-detail-hero.has-photo .venue-detail-bg {
  z-index: -2;
}

.venue-detail-hero.has-photo .venue-detail-overlay {
  z-index: -1;
}

.venue-detail-hero.has-photo .venue-detail-hero-content {
  position: relative;
  z-index: 1;
}
/* ============================================================
   Consistency layer (2026-08-21). One type scale, one rhythm,
   one card system, signature brand mark. Later rules win.
   ============================================================ */
.section h2,
.simple-section h2,
.section-heading h2,
.footer-brand-block h2,
.final-cta h2,
.venue-detail-intro h2,
.booking-info-card h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section h3,
.simple-section h3,
.service-card h3,
.info-panel h3,
.steps-grid h3,
.venue-fit-block h2,
.venue-deep-block h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.icon-heading {
  display: block;
  gap: 0;
}

/* Kickers and small labels: one mono voice */
.hero-eyebrow,
.section-kicker,
.venue-property,
.footer-links-col h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --- Signature brand mark --- */
.brand-signature {
  height: 44px;
  width: auto;
  display: block;
}

.site-header .brand {
  display: flex;
  align-items: center;
}

.footer-signature {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
  opacity: 0.9;
}

.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* --- Venue cards: one system, single headline --- */
.venue-card-media {
  aspect-ratio: 16 / 10;
}

.venue-art-logo {
  max-width: min(220px, 60%);
  max-height: 56px;
}

.venue-card-body .venue-property {
  color: var(--text-muted);
}

.venue-card-body h3 {
  /* name lives in the logo; keep it for screen readers and search */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.venue-card-body p {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .brand-signature {
    height: 36px;
  }

  .footer-signature {
    height: 52px;
  }

  .venue-art-logo {
    max-height: 44px;
  }
}

/* Tap targets: text links hit 44px on touch without changing the look */
@media (max-width: 900px) {
  .text-link,
  .footer-bottom-links a,
  .footer-links-col a {
    padding-top: 9px;
    padding-bottom: 9px;
    display: inline-block;
  }
}

/* Mobile heroes: leave a content hint below the fold */
@media (max-width: 640px) {
  .venue-detail-hero {
    min-height: 76svh;
    padding-bottom: 56px;
  }
}
