/* =========================================================
   SIGANO MUSIC — Brand System & Site Styles
   Mediterranean luxury palette · serif display + clean sans
   ========================================================= */

:root {
  /* Color palette — Warm Mediterranean Luxury */
  --bordeaux: #6C6A37;
  --bordeaux-dark: #4F4E27;
  --terracotta: #C9A24B;
  --cream: #F4ECDB;
  --warm-white: #F8F2E4;
  --gold: #B5862F;
  --gold-soft: #C9A24B;
  --ink: #2A2817;
  --ink-soft: #4A4430;
  --muted: #837A5E;
  --hairline: rgba(42, 40, 23, 0.12);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 980px;
  --radius: 4px;
  --radius-lg: 8px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: var(--bordeaux); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; }

p { margin: 0 0 1.1em; }
.lede { font-size: 1.2rem; line-height: 1.6; color: var(--ink-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section { padding: clamp(44px, 6vw, 84px) 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--warm-white); }
.section--ink .eyebrow { color: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(244, 236, 219, 0);
  z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(244, 236, 219, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  color: var(--ink);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-top: 5px;
  padding-left: 0.22em;
}
.brand__tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
}
.brand__mark { color: var(--bordeaux); font-style: italic; }
.site-header.is-light .brand,
.site-header.is-light .nav a,
.site-header.is-light .menu-toggle span { color: var(--warm-white); }
.site-header.is-light .brand__mark { color: var(--gold-soft); }
.site-header.is-scrolled.is-light .brand,
.site-header.is-scrolled.is-light .nav a,
.site-header.is-scrolled.is-light .menu-toggle span { color: var(--ink); }
.site-header.is-scrolled.is-light .brand__mark { color: var(--bordeaux); }

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin: -10px;       /* expand tap target without shifting layout */
  cursor: pointer;
  position: relative;
  z-index: 110;        /* stays above the open nav drawer */
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}
/* Light bars when header sits over the dark hero (before scroll) */
.site-header.is-light .menu-toggle span { background: var(--warm-white); }
.site-header.is-scrolled.is-light .menu-toggle span { background: var(--ink); }
/* Hamburger transforms into an X when the menu is open */
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
/* When the drawer is open, force bars dark (they're now on a light drawer background) */
.menu-toggle.is-open span { background: var(--ink) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--bordeaux);
  color: var(--warm-white);
}
.btn--primary:hover {
  background: var(--terracotta);
  color: var(--warm-white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(76, 78, 39, 0.25);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover {
  background: var(--gold-soft);
  color: var(--ink);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--warm-white);
}
.btn--ghost-light {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid var(--warm-white);
}
.btn--ghost-light:hover {
  background: var(--warm-white);
  color: var(--ink);
}
.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn .arrow { font-family: var(--font-body); font-weight: 400; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--warm-white);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,40,23,0.55) 0%, rgba(42,40,23,0.45) 50%, rgba(42,40,23,0.75) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 60px;
}
.hero__eyebrow {
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}
.hero__title {
  color: var(--warm-white);
  max-width: 16ch;
  margin-bottom: 0.6em;
}
.hero__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(244, 236, 219, 0.92);
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__play-cue {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: rgba(42, 40, 23, 0.45);
  border: 1px solid rgba(201, 162, 75, 0.55);
  padding: 12px 22px 12px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero__play-cue:hover {
  background: rgba(42, 40, 23, 0.65);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}
.hero__play-cue .dot {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-soft);
  flex-shrink: 0;
}
.hero__play-cue .dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  animation: pulse-ring 1.8s ease-out infinite;
}
.hero__play-cue.is-playing .dot { background: #C9A24B; }
.hero__play-cue.is-playing .dot::after { border-color: #C9A24B; }
@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* Mini hero for service pages */
.hero--page {
  min-height: 70vh;
}

/* ---------- Trust strip (venue logos) ---------- */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
  padding: 38px 0;
}
.trust-strip__label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}
.trust-strip__logo {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  opacity: 0.75;
  text-align: center;
  transition: opacity 0.2s var(--ease);
}
.trust-strip__logo:hover { opacity: 1; }
.trust-strip__logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 500;
}

/* ---------- Stats strip (home, replaces venue logos) ---------- */
.stats-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
}
.stats-strip .stat-row--flush {
  margin: 0;
  border-top: 0;
  border-bottom: 0;
}

/* ---------- Testimonial trio (above the fold) ---------- */
.testimonial-trio {
  padding: clamp(28px, 3vw, 40px) 0 clamp(20px, 2.5vw, 30px);
  background: var(--warm-white);
}
.testimonial-trio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
/* 2-up variant for pages with two real reviews */
.testimonial-trio__grid--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}
.t-quote {
  padding-top: 0;
}
.t-quote__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 16px;
}
.t-quote__attr {
  border-top: 1px solid var(--gold);
  padding-top: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.t-quote__attr strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

/* ---------- Service cards (homepage) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-grid--single {
  grid-template-columns: 1fr;
  margin-top: 20px;
}
.service-card--wide { aspect-ratio: 16 / 7; }
@media (max-width: 920px) {
  .service-card--wide { aspect-ratio: 5 / 4; }
}
.service-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--warm-white);
  text-decoration: none;
}
.service-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .service-card__bg { transform: scale(1.06); }
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,40,23,0.15) 0%, rgba(42,40,23,0.75) 100%);
  z-index: 1;
}
.service-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-card__number {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--warm-white);
  margin: 0 0 10px;
  line-height: 1.1;
}
.service-card__desc {
  font-size: 0.95rem;
  color: rgba(244, 236, 219, 0.85);
  margin-bottom: 18px;
  max-width: 38ch;
}
.service-card__cta {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Section header */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head--left { margin: 0 0 56px; text-align: left; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* Two-column generic block */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.two-col--reverse { grid-template-columns: 1fr 1.05fr; }
.two-col__media img { border-radius: var(--radius); }
.two-col__media--frame {
  position: relative;
}
.two-col__media--frame::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---------- Service details grid (3-col features) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature {
  padding: 8px 0;
}
.feature__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--bordeaux);
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
}
.feature__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--ink-soft); margin: 0; }

/* ---------- Pricing tiers ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tier {
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  padding: 44px 36px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.tier--featured {
  border: 1px solid var(--bordeaux);
  background: var(--cream);
  position: relative;
  transform: translateY(-8px);
}
.tier--featured::before {
  content: 'MOST BOOKED';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--bordeaux);
  color: var(--warm-white);
  padding: 6px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 2px;
}
.tier__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--bordeaux);
  font-weight: 400;
  margin: 8px 0 4px;
}
.tier__price small { font-size: 0.95rem; color: var(--muted); font-family: var(--font-body); display: inline; }
.tier__sub { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.05em; margin-bottom: 24px; text-transform: uppercase; }
.tier ul { list-style: none; padding: 0; margin: 0 0 28px; }
.tier li {
  padding: 10px 0 10px 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--hairline);
}
.tier li:first-child { border-top: 0; }
.tier li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.tier .btn { margin-top: auto; }
.tier-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.gallery__item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.gallery__item--tall { grid-column: span 4; aspect-ratio: 3/5; }
.gallery__item--wide { grid-column: span 8; aspect-ratio: 8/5; }
.gallery__item--sq { grid-column: span 4; aspect-ratio: 1/1; }
.gallery__item .label {
  position: absolute;
  bottom: 16px; left: 18px;
  color: var(--warm-white);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 56px auto 0; }
.faq {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 48px 26px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--bordeaux);
  transition: transform 0.3s var(--ease);
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--bordeaux); }
.faq__body {
  padding: 0 60px 26px 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ---------- Big closing CTA ---------- */
.cta-block {
  background: var(--bordeaux);
  color: var(--warm-white);
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
}
.cta-block h2 { color: var(--warm-white); max-width: 18ch; margin: 0 auto 18px; }
.cta-block h2 em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.cta-block p { color: rgba(244, 236, 219, 0.85); max-width: 56ch; margin: 0 auto 32px; font-size: 1.15rem; }
.cta-block .btn { background: var(--gold); color: var(--ink); }
.cta-block .btn:hover { background: var(--warm-white); }

/* ---------- Lead-magnet inline block ---------- */
.lead-magnet {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.lead-magnet__cover {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bordeaux-dark), var(--bordeaux));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--warm-white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(42, 40, 23, 0.18);
  position: relative;
}
.lead-magnet__cover::after {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: 18px; bottom: 18px;
  border: 1px solid var(--gold-soft);
  pointer-events: none;
}
.lead-magnet__cover-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.lead-magnet__cover h3 {
  font-family: var(--font-display);
  color: var(--warm-white);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 16px;
  line-height: 1.2;
}
.lead-magnet__cover-sub {
  font-size: 0.85rem;
  color: rgba(244, 236, 219, 0.7);
  letter-spacing: 0.04em;
}
.lead-magnet__form { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.lead-magnet__form input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
}
.lead-magnet__form input:focus { outline: 2px solid var(--bordeaux); outline-offset: -2px; }
.lead-magnet small { color: var(--muted); font-size: 0.82rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 236, 219, 0.75);
  padding: 72px 0 36px;
  font-size: 0.95rem;
}
.site-footer h4 {
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer a { color: rgba(244, 236, 219, 0.75); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.footer-brand em { color: var(--gold-soft); font-style: italic; }
.footer-tagline { max-width: 32ch; color: rgba(244, 236, 219, 0.6); font-size: 0.95rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 236, 219, 0.08);
  font-size: 0.82rem;
  color: rgba(244, 236, 219, 0.5);
}
.social-links { display: flex; gap: 18px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(244, 236, 219, 0.2);
  border-radius: 50%;
  color: rgba(244, 236, 219, 0.7);
  transition: all 0.2s var(--ease);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* ---------- Modal — "Check My Date" form ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(42, 40, 23, 0.75);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.modal.is-open {
  display: flex;
  opacity: 1;
}
.modal__panel {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 48px 44px 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.modal.is-open .modal__panel { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 16px; right: 18px;
  background: none; border: 0; cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 300;
  padding: 6px 10px;
}
.modal__close:hover { color: var(--bordeaux); }
.modal__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.modal p { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.98rem; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
}
.modal .btn { width: 100%; margin-top: 8px; }
.modal small { display: block; text-align: center; color: var(--muted); margin-top: 14px; font-size: 0.78rem; }

/* ---------- Exit-intent popup ---------- */
.exit-popup {
  position: fixed;
  inset: 0;
  background: rgba(42, 40, 23, 0.78);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.exit-popup.is-open { display: flex; }
.exit-popup__panel {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  overflow: hidden;
  position: relative;
}
.exit-popup__close {
  position: absolute;
  top: 12px; right: 16px;
  z-index: 2;
  background: none; border: 0; cursor: pointer;
  font-size: 1.6rem;
  color: var(--warm-white);
  font-weight: 300;
}
.exit-popup__art {
  background: linear-gradient(135deg, var(--bordeaux-dark) 0%, var(--bordeaux) 100%);
  color: var(--warm-white);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.exit-popup__art-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.exit-popup__art h3 {
  font-family: var(--font-display);
  color: var(--warm-white);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.exit-popup__body {
  padding: 36px 32px;
}
.exit-popup__body h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0 0 8px;
  text-transform: none;
}
.exit-popup__body p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; }
.exit-popup__body form { display: flex; flex-direction: column; gap: 10px; }
.exit-popup__body input {
  font-family: var(--font-body);
  padding: 11px 14px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.exit-popup__body .btn { padding: 12px 18px; font-size: 0.85rem; }
.exit-popup__body small { display: block; font-size: 0.74rem; color: var(--muted); margin-top: 8px; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 90;
}
.mobile-cta .btn {
  width: 100%;
  box-shadow: 0 12px 30px rgba(42, 40, 23, 0.3);
}

/* ---------- Stat callout ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 36px 0;
  margin: 32px 0;
}
.stat {
  text-align: center;
  border-right: 1px solid var(--hairline);
  padding: 0 12px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--bordeaux);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ============================================================
   RESPONSIVE — narrow desktops, tablets & phones
   ============================================================ */

/* Guardrail — kill any accidental horizontal scroll */
html, body { overflow-x: hidden; }

/* --- Narrow desktop / large tablet (compression zone) --- */
@media (max-width: 1180px) {
  .container, .container-narrow { padding: 0 24px; }

  /* Header — keep nav from getting squeezed against the brand */
  .site-header__inner { gap: 16px; }
  .nav { gap: 22px; }
  .nav a { font-size: 0.88rem; }
  .nav .btn { padding: 12px 22px; font-size: 0.85rem; letter-spacing: 0.06em; }
  .brand__name { font-size: 2.03rem; }

  /* Hero — easier scaling at intermediate widths */
  .hero__title { font-size: clamp(2.6rem, 5.4vw, 4rem); max-width: 18ch; }
  .hero__sub { font-size: 1.12rem; }

  /* Section rhythm slightly tighter */
  .section { padding: clamp(56px, 8vw, 96px) 0; }
  .section-head { margin-bottom: 48px; }

  /* Trust strip — let logos breathe */
  .trust-strip__logos { gap: 22px 40px; }

  /* Testimonials — close the gaps a bit so all three fit comfortably */
  .testimonial-trio__grid { gap: 22px; }
  .t-quote__text { font-size: 1rem; }

  /* Service cards — gap shrinks so the 2-up doesn't crowd */
  .service-grid { gap: 20px; margin-top: 44px; }
  .service-card__content { padding: 32px; }
  .service-card__title { font-size: 1.95rem; }

  /* Two-col gap closes */
  .two-col, .two-col--reverse { gap: 56px; }

  /* Pricing tiers — keep the 3-up but tighten */
  .pricing-grid { gap: 20px; }
  .tier { padding: 38px 30px; }
  .tier__price { font-size: 2.3rem; }

  /* Stat row collapses to 2x2 BEFORE phones — fixes the cramped 4-up */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 24px 0; padding: 28px 0; }
  .stat { padding: 8px 16px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); padding-bottom: 20px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 20px; }

  /* Feature grid — slightly tighter */
  .feature-grid { gap: 32px; }

  /* Lead magnet — tighter padding so it doesn't overflow */
  .lead-magnet { gap: 40px; padding: clamp(32px, 4vw, 56px); }

  /* Footer drops to 2x2 instead of 4-up */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 48px; }

  /* CTA block scales down */
  .cta-block { padding: clamp(64px, 9vw, 120px) 0; }
}

/* --- Tablets and below (mobile drawer kicks in) --- */
@media (max-width: 920px) {
  :root { --header-h: 64px; }

  .container, .container-narrow { padding: 0 22px; }

  /* HEADER */
  .site-header__inner { gap: 12px; }
  .brand__name { font-size: 1.9rem; }
  .menu-toggle { display: block; }

  /* NAV — full overlay drawer */
  .nav {
    display: none;
    position: fixed;
    top: 0;                          /* covers full viewport for clean focus */
    left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 18px) 24px 36px;
    gap: 2px;
    overflow-y: auto;
    z-index: 95;                     /* below the toggle (z:110) so X stays clickable */
    animation: nav-in 0.3s var(--ease);
  }
  .nav.is-open { display: flex; }
  @keyframes nav-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* The open mobile panel is a cream sheet, so links must be ink regardless of the
     header's light/scrolled state. Without the extra specificity here,
     `.site-header.is-light .nav a` (0,3,1) beats a bare `.nav a` (0,1,1) and the links
     render cream-on-cream, i.e. invisible, on every page at the top of the scroll. */
  .site-header .nav a,
  .site-header.is-light .nav a,
  .site-header.is-scrolled .nav a,
  .site-header.is-scrolled.is-light .nav a { color: var(--ink); }

  .nav a {
    padding: 18px 6px;
    border-bottom: 1px solid var(--hairline);
    font-size: 1.08rem;
    color: var(--ink);
  }
  .nav a::after { display: none; }
  .nav .btn {
    margin-top: 22px;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }

  /* HERO — fix the squashed title + better mobile rhythm */
  .hero {
    min-height: 100svh;              /* small viewport unit — accounts for browser chrome */
    padding-top: var(--header-h);
  }
  .hero__inner { padding: 36px 0 48px; }
  .hero__eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; margin-bottom: 1rem; }
  .hero__title {
    max-width: none;                 /* CRITICAL — was 16ch, causing the smash */
    font-size: clamp(2.4rem, 9vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 0.45em;
  }
  .hero__sub {
    font-size: 1.02rem;
    line-height: 1.55;
    margin-bottom: 1.6rem;
    max-width: 38ch;
  }
  .hero__actions { gap: 12px; }
  .hero__play-cue {
    padding: 10px 16px 10px 14px;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    gap: 10px;
  }
  .hero__play-cue .dot { width: 9px; height: 9px; }
  .btn--lg { padding: 16px 28px; font-size: 0.92rem; }

  /* SECTIONS */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }

  /* TRUST STRIP */
  .trust-strip { padding: 28px 0; }
  .trust-strip__label { margin-bottom: 16px; font-size: 0.7rem; }
  .trust-strip__logos { gap: 14px 28px; }
  .trust-strip__logo { font-size: 1rem; }
  .trust-strip__logo small { font-size: 0.55rem; }

  /* TESTIMONIAL TRIO */
  .testimonial-trio { padding: 52px 0; }
  .testimonial-trio__grid { grid-template-columns: 1fr; gap: 32px; }
  .t-quote { padding-top: 22px; }
  .t-quote__text { font-size: 1.2rem; line-height: 1.4; }

  /* SERVICE CARDS */
  .service-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .service-card { aspect-ratio: 5/4; }   /* less tall on mobile */
  .service-card__content { padding: 26px; }
  .service-card__title { font-size: 1.85rem; margin-bottom: 6px; }
  .service-card__desc { font-size: 0.92rem; max-width: 34ch; }

  /* TWO-COL BLOCKS */
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 36px; }
  .two-col__media--frame::before { display: none; }

  /* FEATURE GRID */
  .feature-grid { grid-template-columns: 1fr; gap: 28px; }
  .feature__num { font-size: 2rem; margin-bottom: 10px; }

  /* PRICING */
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier { padding: 32px 26px; }
  .tier--featured { transform: none; margin-top: 14px; }
  .tier__price { font-size: 2.2rem; }

  /* STAT ROW */
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px 0; padding: 22px 0; }
  .stat { padding: 6px 8px; }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); padding-bottom: 16px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 16px; }
  .stat__num { font-size: 2rem; }
  .stat__label { font-size: 0.66rem; letter-spacing: 0.14em; }

  /* GALLERY */
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery__item, .gallery__item--tall, .gallery__item--wide, .gallery__item--sq {
    grid-column: span 1; aspect-ratio: 1/1;
  }

  /* LEAD MAGNET */
  .lead-magnet { grid-template-columns: 1fr; gap: 28px; padding: 32px 26px; }
  .lead-magnet__cover { aspect-ratio: 4/5; padding: 28px; max-width: 280px; margin: 0 auto; }
  .lead-magnet__cover h3 { font-size: 1.45rem; }

  /* FAQ */
  .faq summary { padding: 22px 44px 22px 0; font-size: 1.15rem; }
  .faq__body { padding: 0 8px 22px 0; font-size: 0.98rem; }

  /* CTA BLOCK */
  .cta-block { padding: 64px 0 88px; }
  .cta-block p { font-size: 1.02rem; }

  /* FOOTER */
  .site-footer { padding: 56px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { font-size: 1.5rem; }

  /* Touch targets: footer links were 19px tall, well under the ~44px touch guideline.
     Making the anchor a block and moving the li padding into it grows the tappable area
     without changing the visual rhythm of the list. */
  .footer-grid li { padding: 0; }
  .footer-grid li a { display: block; padding: 11px 0; }
  .social-links a { width: 42px; height: 42px; }

  /* EXIT POPUP */
  .exit-popup__panel { grid-template-columns: 1fr; max-width: 420px; }
  .exit-popup__art { padding: 22px; }
  .exit-popup__art h3 { font-size: 1.3rem; }

  /* MODAL */
  .modal { padding: 16px; align-items: flex-end; }    /* slides up from bottom on phone */
  .modal__panel {
    padding: 32px 22px 24px;
    max-height: 90vh;
    max-height: 90svh;
    overflow-y: auto;
    border-radius: 10px;
  }
  .modal__panel h2 { font-size: 1.7rem; }
  .modal__panel p { font-size: 0.94rem; margin-bottom: 18px; }
  .form-field { margin-bottom: 12px; }

  /* MOBILE STICKY CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* --- Phones (small) --- */
@media (max-width: 520px) {
  .container, .container-narrow { padding: 0 18px; }

  /* Hero — even tighter type on small phones */
  .hero__title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__sub { font-size: 0.98rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: auto; }

  /* Section type */
  h2 { font-size: clamp(1.95rem, 8vw, 2.6rem); }

  /* Service cards a bit squarer for thumb scrolling */
  .service-card { aspect-ratio: 6/5; }
  .service-card__content { padding: 22px; }
  .service-card__title { font-size: 1.65rem; }

  /* Gallery to single column for stronger feel */
  .gallery { grid-template-columns: 1fr; }
  .gallery__item { aspect-ratio: 5/4; }

  /* Footer collapses to single column */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Trust strip — let logos breathe vertically */
  .trust-strip__logos { gap: 12px 22px; }
  .trust-strip__logo { font-size: 0.95rem; }

  /* Pricing tiers — slightly tighter */
  .tier { padding: 28px 22px; }

  /* Stats — single column reads better on narrow phones */
  .stat-row { grid-template-columns: 1fr; gap: 0; padding: 16px 0; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 14px 8px; }
  .stat:last-child { border-bottom: 0; }
}

/* ===== Home: three-pillar curation model ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 8px; }
.pillar {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--warm-white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(42, 40, 23, 0.10); }
.pillar__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.pillar:hover .pillar__bg { transform: scale(1.06); }
.pillar::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,40,23,0.15) 0%, rgba(42,40,23,0.75) 100%);
  z-index: 1;
}
.pillar__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pillar__num {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.pillar__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--warm-white);
  margin: 0 0 10px;
  line-height: 1.1;
}
.pillar__desc { font-size: 0.95rem; color: rgba(244, 236, 219, 0.85); line-height: 1.55; max-width: 38ch; }
.pillars__foot {
  text-align: center; margin: 34px auto 0; max-width: 60ch;
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--ink-soft);
}
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } .pillar { aspect-ratio: 5 / 4; } }
@media (max-width: 520px) { .pillar { aspect-ratio: 6 / 5; } .pillar__content { padding: 22px; } .pillar__title { font-size: 1.65rem; } }


/* ---- Venue logo wall (Private Events — logos version) ---- */
.venue-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 44px;
  margin-top: 8px;
}
.venue-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.62);
  transition: filter 0.3s var(--ease);
}
.venue-logo:hover { filter: grayscale(0) opacity(1); }
@media (max-width: 720px) {
  .venue-wall { gap: 20px 28px; }
  .venue-logo { height: 40px; max-width: 130px; }
}


/* ---- Music page: audio playlist + social hub ---- */
.playlist { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.track {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--hairline);
}
.track:first-child { border-top: 1px solid var(--hairline); }
.track__meta { display: flex; align-items: baseline; gap: 16px; }
.track__num { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--gold); }
.track__title { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.track__audio { height: 34px; max-width: 320px; width: 100%; }
.social-hub { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 30px 28px; border: 1px solid var(--hairline); border-radius: var(--radius);
  background: var(--warm-white); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.social-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(76,78,39,0.10); }
.social-card__net { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.social-card__handle { font-size: 0.95rem; color: var(--muted); }
.social-card__cta { margin-top: 12px; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
@media (max-width: 720px) {
  .social-hub { grid-template-columns: 1fr; }
  .track { flex-direction: column; align-items: flex-start; gap: 12px; }
  .track__audio { max-width: 100%; }
}

/* ---------- Uniform gallery grid (build note 6) ----------
   Three across, two rows, one landscape ratio for every tile. Replaces the mixed masonry,
   which enlarged the weakest images and left dead space beside the florals tile. */
.gallery--uniform { grid-template-columns: repeat(3, 1fr); }
.gallery--uniform .gallery__item { grid-column: span 1; aspect-ratio: 3/2; }

/* Caption legibility: a subtle dark gradient behind every caption.
   "POOL-SIDE CEREMONY" was unreadable against the white tent behind it. */
.gallery__item::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(24, 22, 12, 0) 0%, rgba(24, 22, 12, 0.66) 100%);
  pointer-events: none;
}
.gallery__item .label { z-index: 1; }

@media (max-width: 920px) {
  .gallery--uniform { grid-template-columns: 1fr 1fr; }
  .gallery--uniform .gallery__item { grid-column: span 1; aspect-ratio: 3/2; }
}

/* ---------- Compact closing CTA (build note 11) ----------
   The standard band is mostly empty space below the button. */
.cta-block--compact { padding: clamp(40px, 5vw, 74px) 0; }

/* ---------- Square venue logos ----------
   The strip sizes every logo to a fixed HEIGHT. That works for the wordmarks (Ritz, Breakers,
   Four Seasons are 2.15:1 to 4:1) but the Fontainebleau lockup is near-square at 0.95:1, so at
   the same height it rendered 52px wide against their 180px and read as much smaller.
   Square marks need more height to carry the same optical weight. */
.venue-logo--wordmark { height: auto; width: 208px; max-width: 208px; }
@media (max-width: 720px) {
  .venue-logo--wordmark { width: 150px; max-width: 150px; }
}

/* ---------- Corporate credentials block ----------
   "The section that wins corporate work." Sits below the three tier cards and speaks to
   procurement rather than to the host. */
.credentials {
  margin: 56px auto 0;
  max-width: 900px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--warm-white);
  padding: 34px clamp(24px, 4vw, 48px) 30px;
}
.credentials__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b58a3c);
  margin-bottom: 22px;
}
.credentials__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px clamp(24px, 4vw, 48px);
}
.credentials__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.credentials__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
@media (max-width: 720px) {
  .credentials__list { grid-template-columns: 1fr; }
}

/* ---------- Quad video grid (Music page) ----------
   Four equal tiles in a 2x2. Replaces the staggered layout whose double-height first tile
   left a gap in the middle of the grid. */
.gallery--quad { grid-template-columns: repeat(2, 1fr); }
.gallery--quad .gallery__item { grid-column: span 1; aspect-ratio: 16/9; }
@media (max-width: 920px) {
  .gallery--quad { grid-template-columns: 1fr; }
  .gallery--quad .gallery__item { grid-column: span 1; aspect-ratio: 16/9; }
}
/* These tiles hold <video controls>, whose control bar sits along the bottom edge.
   Move the caption and its gradient to the top so the two do not overlap. */
.gallery--quad .gallery__item .label { top: 14px; bottom: auto; }
.gallery--quad .gallery__item::after {
  top: 0; bottom: auto;
  background: linear-gradient(180deg, rgba(24, 22, 12, 0.66) 0%, rgba(24, 22, 12, 0) 100%);
}

/* ---------- Anchor targets clear the sticky header ----------
   The Partnerships CTAs jump to #partner-inquiry. Without this the form lands at y=0 and its
   first field sits behind the fixed header. */
#partner-inquiry, #collab-inquiry {
  scroll-margin-top: calc(var(--header-h) + 28px);
}

/* ---------- Seven-venue strip (The Music) ----------
   Seven items at the default gap wrap 5+2, which leaves the orphaned second row Sergio
   objected to. Constraining the row encourages a balanced 4+3. Scoped so the five-item
   weddings strip is untouched. */
.trust-strip__logos--seven {
  max-width: 940px;
  margin: 0 auto;
  gap: 26px 44px;
}
@media (max-width: 920px) {
  .trust-strip__logos--seven { max-width: 560px; gap: 20px 34px; }
}

/* ---------- Two-up gallery (weddings, four tiles in a 2x2) ----------
   The uniform grid is three across; with four tiles that gives 3+1. Sergio asked for 2x2. */
.gallery--two-up { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) {
  .gallery--two-up { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Venue strip, one format site-wide (Sergio 2026-09-08) ----------
   Eyebrow "Performed at", names in the display serif, single row, no city lines,
   text only. Only the list changes per page. */
.trust-strip__logos--row {
  flex-wrap: nowrap;
  gap: clamp(20px, 3.4vw, 52px);
}
.trust-strip__logos--row .trust-strip__logo {
  font-family: var(--font-display);
  white-space: nowrap;
  opacity: 0.8;
}
@media (max-width: 920px) {
  /* A single row cannot hold five names on a phone; wrap rather than shrink to nothing. */
  .trust-strip__logos--row { flex-wrap: wrap; gap: 14px 26px; }
  .trust-strip__logos--row .trust-strip__logo { font-size: 1rem; }
}

/* ---------- Lighter hero overlay for Private Events ----------
   Every page shares one overlay, but the Private Events clip is black-and-white and shot at
   night (mean brightness 83/255), so the standard scrim buries it. */
.hero--lighter .hero__overlay {
  background: linear-gradient(180deg, rgba(42,40,23,0.30) 0%, rgba(42,40,23,0.22) 50%, rgba(42,40,23,0.52) 100%);
}

/* ---------- Credentials block balance (Sergio 2026-09-08) ----------
   Five items in a two-column row-flow grid put items 1-2, 3-4 on the first two rows and left
   item 5 stranded alone at the bottom left. Filling by column instead gives 3 + 2, so the
   ragged edge falls at the bottom right where a list naturally ends. */
.credentials__list {
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
}
@media (max-width: 720px) {
  .credentials__list { grid-auto-flow: row; grid-template-rows: none; }
}

/* ---------- Solo Guitar block (Sergio 2026-09-08) ----------
   Sits below the package grid with its own heading and button so it reads as a separate
   option rather than a discount on the entry package. */
.solo-block {
  max-width: 460px;
  margin: 34px auto 0;
  padding: 30px 32px 32px;
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  text-align: center;
}
.solo-block__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.solo-block__desc {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.tier li em { font-style: italic; color: var(--muted); }

/* ---------- Music hero height parity (Sergio 2026-09-09) ----------
   Every sub-page hero is min-height 70vh, but content can push past it. The Music headline is the
   longest on the site (61 chars vs 39-49) so it wrapped to four lines where the others take three,
   making that hero ~112px taller. Widening the measure on this page lets it wrap to three. */
.hero__title--wide { max-width: 22ch; }

/* ---------- Long venue names (Corporate) ----------
   Sergio's confirmed corporate names carry their city inline, so the four together need 1309px
   against a 1184px container and were overflowing the single row he asked for. Tightening the
   gap and stepping the type down slightly brings them back onto one line. */
.trust-strip__logos--tight {
  gap: clamp(14px, 2.2vw, 30px);
}
.trust-strip__logos--tight .trust-strip__logo {
  font-size: clamp(0.92rem, 1.25vw, 1.12rem);
}
@media (max-width: 920px) {
  .trust-strip__logos--tight { flex-wrap: wrap; gap: 12px 22px; }
}
