/* ——— Buster Goodwin — Green & Gold brand ——— */

:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --smoke: #1c1c1c;
  --ash: #2a2a2a;
  --concrete: #3d3d3d;
  --dust: #8a8a8a;
  --bone: #e8e4df;
  --white: #f5f3f0;
  /* Brand: Green & Gold */
  --brand-green: #15803d;
  --brand-green-dark: #166534;
  --brand-gold: #eab308;
  --brand-gold-dark: #ca8a04;
  --brand-gold-darker: #a16207;
  --amber: #eab308;
  --rust: #ca8a04;
  --blood: #a16207;
  --logo-green: #15803d;
  /* Homepage banner gradient (dark brown → gray-beige) */
  --banner-dark: #6B4411;
  --banner-mid: #8B5D26;
  --banner-mid-light: #9F7245;
  --banner-light: #C5B9AC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  background: var(--black);
  color: var(--bone);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Homepage: rest of page (below hero) is white */
body.page-home {
  background: #fff;
}

/* Inner pages: white background + black text that stands out */
body.page-about,
body.page-reviews,
body.page-tour,
body.page-videos,
body.page-bookings,
body.page-book-now,
body.page-wineries,
body.page-fine-dining,
body.page-pubs,
body.page-market,
body.page-piano-bar,
body.page-jazz-club,
body.page-private-events,
body.page-daytime,
body.page-dinner-time,
body.page-late-night,
body.page-merch,
body.page-payments {
  background: #fff;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ——— Header ——— */
/* Keep nav at top: (1) top: 0, (2) no large top padding, (3) no margin-top, (4) no transform, (5) fixed positioning, (6) no top inset elsewhere, (7) padding balanced, (8) no min-height pushing content down, (9) flex align at start, (10) box-sizing border-box */
.header {
  position: fixed;   /* (5) fixed so it stays at viewport top */
  top: 0;            /* (1) stick to top of viewport */
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem 2rem;  /* (2)(7) even padding, no extra top space */
  z-index: 100;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.55) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(22, 22, 22, 0.52) 100%);
  border-bottom: 3px solid var(--brand-green);
  transition: background 0.3s, border-color 0.3s;
  box-sizing: border-box;  /* (10) padding included in height */
}

/* Desktop: nav centered so it aligns with hero content below, shifted 0.3in right */
.header .nav {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55in;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(0.3in);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo:hover {
  color: var(--logo-green);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Nav logo (center): Buster Goodwin in green */
.nav a.logo {
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.18em;
  color: var(--logo-green);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.nav a.logo:hover {
  color: var(--bone);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 20px rgba(21, 128, 61, 0.5);
}

.header.scrolled {
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.88) 0%, rgba(10, 10, 10, 0.86) 50%, rgba(14, 14, 14, 0.88) 100%);
  border-bottom-color: var(--brand-green);
}

.nav {
  gap: 0.55in;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.2s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.nav a:hover {
  color: var(--amber);
}

/* Active nav link (current page) */
.page-reviews .nav a[href="reviews.html"],
.page-about .nav a[href="about.html"],
.page-tour .nav a[href="tour.html"],
.page-videos .nav a[href="videos.html"],
.page-bookings .nav a[href="bookings.html"],
.page-book-now .nav a[href="bookings.html"],
.page-wineries .nav a[href="bookings.html"],
.page-fine-dining .nav a[href="bookings.html"],
.page-pubs .nav a[href="bookings.html"],
.page-market .nav a[href="bookings.html"],
.page-piano-bar .nav a[href="bookings.html"],
.page-jazz-club .nav a[href="bookings.html"],
.page-private-events .nav a[href="bookings.html"],
.page-daytime .nav a[href="bookings.html"],
.page-dinner-time .nav a[href="bookings.html"],
.page-late-night .nav a[href="bookings.html"],
.page-merch .nav a[href="merch.html"] {
  color: var(--amber);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.4);
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
  min-width: 44px;
  min-height: 44px;
  transition: opacity 0.2s;
}

.menu-btn:hover {
  opacity: 0.9;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* ——— Listen video modal ——— */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  box-sizing: border-box;
}

.video-modal.video-modal--open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.video-modal__content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 3rem);
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: var(--black);
  z-index: 2001;
  cursor: default;
  box-sizing: border-box;
}

.video-modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.video-modal__close:hover {
  color: var(--amber);
  transform: scale(1.1);
}

.video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ——— Hero ——— */
/* Strategy 1: Position content from top with flex-start + top padding */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;   /* no longer center — content starts at top of flex area */
  justify-content: center;
  text-align: center;
  padding: 0 2rem 2rem 2rem;  /* top padding removed; content moved up 4in via transform below */
}

/* YouTube video as hero background */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-height: 100dvh;
  min-width: 177.78vh; /* 16:9 */
  min-width: 177.78dvh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Lighter overlay so background video reads brighter; text still readable */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.45) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  transform: translateY(5in);  /* 3in more down (was 2in) = 5in */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* Strategy 5: optional spacer — uncomment to add 2.5in above h1 via ::before */
.hero-content::before {
  content: "";
  display: block;
  height: 0;  /* set to 2.5in if using spacer strategy only */
}

.hero-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 18vw, 11rem);
  letter-spacing: 0.06em;
  color: var(--logo-green);
  text-transform: uppercase;
  line-height: 0.95;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(21, 128, 61, 0.25);
  margin-bottom: 0.5rem;
}

/* Hide big hero logo on desktop only; keep on mobile */
@media (min-width: 769px) {
  .hero-logo {
    display: none;
  }
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 1rem 2.75rem;
  background: var(--amber);
  color: var(--black);
  border: 2px solid var(--amber);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.5),
    0 6px 24px rgba(234, 179, 8, 0.35);
}

.cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 8px 28px rgba(234, 179, 8, 0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.hero-ctas .cta {
  margin-top: 0;
}

.cta--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.cta--secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-booking-phone {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 1.4rem;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-booking-phone a {
  color: var(--brand-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.hero-booking-phone a:hover {
  color: var(--white);
  text-decoration: underline;
}

.hero-social {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-social a {
  color: var(--white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: color 0.2s, transform 0.2s;
}

.hero-social a:hover {
  color: var(--amber);
  transform: translateY(-2px);
}

.hero-social svg {
  display: block;
  width: 40px;
  height: 40px;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--concrete);
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ——— Sections ——— */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Inner pages: offset for fixed header + subtle banner warmth */
.section--page {
  padding-top: 8rem;
  min-height: calc(100vh - 120px);
}

body.page-about .section--page,
body.page-merch .section--page {
  background: transparent;
}

.merch-coming-soon {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dust);
  text-align: center;
  margin-top: 1rem;
}

.section--dark {
  background: linear-gradient(180deg, var(--banner-dark) 0%, var(--banner-mid) 15%, #5c3d1a 35%, var(--charcoal) 55%, var(--charcoal) 100%);
}

/* Inner pages: sections on white */
body.page-about .section--dark,
body.page-reviews .section--dark,
body.page-tour .section--dark,
body.page-videos .section--dark,
body.page-bookings .section--dark,
body.page-book-now .section--dark,
body.page-wineries .section--dark,
body.page-fine-dining .section--dark,
body.page-pubs .section--dark,
body.page-market .section--dark,
body.page-piano-bar .section--dark,
body.page-jazz-club .section--dark,
body.page-private-events .section--dark,
body.page-daytime .section--dark,
body.page-dinner-time .section--dark,
body.page-late-night .section--dark,
body.page-merch .section--dark,
body.page-payments .section--dark {
  background: #fff;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

body.page-about .section-title,
body.page-reviews .section-title,
body.page-tour .section-title,
body.page-videos .section-title,
body.page-bookings .section-title,
body.page-book-now .section-title,
body.page-wineries .section-title,
body.page-fine-dining .section-title,
body.page-pubs .section-title,
body.page-market .section-title,
body.page-piano-bar .section-title,
body.page-jazz-club .section-title,
body.page-private-events .section-title,
body.page-daytime .section-title,
body.page-dinner-time .section-title,
body.page-late-night .section-title,
body.page-merch .section-title,
body.page-payments .section-title {
  color: #000;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  font-weight: 700;
}

body.page-about .about-content p,
body.page-about .about-lead {
  color: #000 !important;
}

/* Force black text on all inner-page content so it stands out on white */
body.page-about .section p,
body.page-reviews .section p,
body.page-tour .section p,
body.page-videos .section p,
body.page-bookings .section p,
body.page-book-now .section p,
body.page-wineries .section p,
body.page-fine-dining .section p,
body.page-pubs .section p,
body.page-market .section p,
body.page-piano-bar .section p,
body.page-jazz-club .section p,
body.page-private-events .section p,
body.page-daytime .section p,
body.page-dinner-time .section p,
body.page-late-night .section p,
body.page-merch .section p,
body.page-payments .section p,
body.page-about .section .video-card-title,
body.page-reviews .section .video-card-title,
body.page-tour .section .video-card-title,
body.page-videos .section .video-card-title,
body.page-bookings .section .video-card-title,
body.page-book-now .section .video-card-title,
body.page-wineries .section .video-card-title,
body.page-fine-dining .section .video-card-title,
body.page-pubs .section .video-card-title,
body.page-market .section .video-card-title,
body.page-piano-bar .section .video-card-title,
body.page-jazz-club .section .video-card-title,
body.page-private-events .section .video-card-title,
body.page-daytime .section .video-card-title,
body.page-dinner-time .section .video-card-title,
body.page-late-night .section .video-card-title,
body.page-merch .section .video-card-title,
body.page-payments .section .video-card-title,
body.page-merch .merch-coming-soon,
body.page-about .about-content p,
body.page-about .about-lead,
body.page-reviews .release-title,
body.page-reviews .release-meta,
body.page-tour .gig-date,
body.page-tour .gig-venue,
body.page-tour .gig-city,
body.page-videos .video-filters-label,
body.page-bookings .section--cta p,
body.page-bookings .form-group label,
body.page-book-now .booking-intro,
body.page-wineries .booking-intro,
body.page-wineries .offering-back a,
body.page-fine-dining .booking-intro,
body.page-fine-dining .offering-back a,
body.page-pubs .booking-intro,
body.page-pubs .offering-back a,
body.page-market .booking-intro,
body.page-market .offering-back a,
body.page-piano-bar .booking-intro,
body.page-piano-bar .offering-back a,
body.page-jazz-club .booking-intro,
body.page-jazz-club .offering-back a,
body.page-private-events .booking-intro,
body.page-private-events .offering-back a,
body.page-daytime .booking-intro,
body.page-daytime .offering-back a,
body.page-dinner-time .booking-intro,
body.page-dinner-time .offering-back a,
body.page-late-night .booking-intro,
body.page-late-night .offering-back a {
  color: #000;
}

/* ——— Music / Releases ——— */
body.page-reviews .coming-soon,
body.page-tour .coming-soon,
body.page-merch .coming-soon {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--dust);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.releases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.release {
  text-align: center;
}

.release-art {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--ash) 0%, var(--smoke) 100%);
  border: 1px solid var(--concrete);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.release-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
}

.release h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.release p {
  font-size: 0.9rem;
  color: var(--dust);
}

/* ——— About ——— */
.about-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-figure {
  margin: 0;
  flex-shrink: 0;
}

.about-image {
  width: 280px;
  height: auto;
  display: block;
  border: 1px solid var(--concrete);
}

.about-content {
  font-size: 1.1rem;
  max-width: 480px;
  flex: 1;
  min-width: 260px;
}

@media (max-width: 640px) {
  .about-wrap {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
    max-width: 320px;
  }
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--dust);
}

.about-lead {
  font-size: 1.35rem;
  font-weight: 500;
}

body.page-about .about-lead {
  color: #000 !important;
}

/* ——— Tour ——— */
.tour-dates {
  list-style: none;
}

.tour-dates li {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ash);
  flex-wrap: wrap;
}

.tour-dates .date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--amber);
  min-width: 5rem;
}

.tour-dates .venue {
  color: var(--bone);
  font-weight: 500;
}

.tour-coming-soon {
  color: var(--dust);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* ——— Videos ——— */
/* ——— Video filters ——— */
.video-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-bottom: 2rem;
  max-width: 900px;
}

.video-filters-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.video-filters-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust);
}

.video-filters-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.video-filter-btn,
.video-sort-btn {
  padding: 0.5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dust);
  background: var(--ash);
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.video-filter-btn:hover,
.video-sort-btn:hover {
  color: var(--bone);
  background: var(--concrete);
}

.video-filter-btn.is-active,
.video-sort-btn.is-active {
  color: var(--black);
  background: var(--amber);
  border-color: var(--amber);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
}

.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card--placeholder {
  pointer-events: none;
}

.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--smoke);
  border: 1px solid var(--concrete);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background: rgba(234, 179, 8, 0.9);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 0.2em;
  transition: background 0.2s, transform 0.2s;
}

.video-card:hover .video-play {
  background: var(--amber);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-thumb--placeholder {
  background: var(--ash);
}

.video-thumb--shorts {
  background: linear-gradient(135deg, var(--blood) 0%, var(--charcoal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb-shorts-label {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--bone);
  opacity: 0.9;
  z-index: 1;
}

.video-thumb--shorts .video-play {
  position: absolute;
  z-index: 2;
}

.video-card-title {
  font-size: 0.9rem;
  color: var(--dust);
  letter-spacing: 0.05em;
}

.video-card:hover .video-card-title {
  color: var(--amber);
}

@media (max-width: 700px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ——— Contact / CTA ——— */
.section--cta {
  text-align: center;
  padding: 6rem 2rem;
}

.section--cta .section-title {
  margin-bottom: 0.75rem;
}

.section--cta > p {
  color: var(--dust);
  margin-bottom: 2rem;
}

.newsletter {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto 2.5rem;
}

.newsletter input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--smoke);
  border: 1px solid var(--concrete);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
}

.newsletter input::placeholder {
  color: var(--dust);
}

.newsletter input:focus {
  outline: none;
  border-color: var(--amber);
}

.newsletter button {
  padding: 1rem 1.5rem;
  background: var(--amber);
  color: var(--black);
  border: none;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter button:hover {
  background: var(--rust);
}

.social {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social a {
  color: var(--dust);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.social a:hover {
  color: var(--amber);
}

/* ——— Booking: Book Now + Offerings row ——— */
.bookings-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ash);
}

body.page-bookings .bookings-header-row {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.offerings-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.offerings-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  color: var(--brand-green);
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}

body.page-bookings .offerings-title {
  color: var(--brand-green);
}

.offerings-title--sub {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.offerings-center .offerings-subnav {
  justify-content: center;
}

.booking-cta-wrap--side {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.booking-cta-wrap--left {
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-right: auto;
}

.btn-book-now--orange {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

.btn-book-now--orange:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

/* Override bookings page rust button when orange modifier is used */
body.page-bookings .btn-book-now--orange {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}

body.page-bookings .btn-book-now--orange:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

/* ——— Booking: Offerings sub-nav ——— */
.offerings-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}

.bookings-header-row .offerings-subnav {
  flex: 1;
  min-width: 0;
}

.offerings-subnav__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--brand-green);
  margin-right: 0.25rem;
}

.offerings-subnav__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.25rem;
}

.offerings-subnav__group-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dust);
  margin-right: 0.25rem;
}

.offerings-subnav__link {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--concrete);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.offerings-subnav__link:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(234, 179, 8, 0.08);
}

/* Bookings page (white bg): sub-nav uses dark-appropriate colors already in .section--dark */
body.page-bookings .offerings-subnav {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

body.page-bookings .offerings-subnav__label {
  color: var(--brand-green);
}

body.page-bookings .offerings-subnav__group-label {
  color: #555;
}

body.page-bookings .offerings-subnav__link {
  color: #1a1a1a;
  border-color: rgba(0, 0, 0, 0.2);
}

body.page-bookings .offerings-subnav__link:hover {
  color: var(--rust);
  border-color: var(--rust);
  background: rgba(202, 138, 4, 0.06);
}

@media (max-width: 768px) {
  .bookings-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .offerings-subnav {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .offerings-subnav__group {
    width: 100%;
  }
}

/* ——— Bookings page prose ——— */
.bookings-prose {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.bookings-prose p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.bookings-lead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.bookings-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--brand-green);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.bookings-cta {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.bookings-prose .booking-cta-wrap {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
}

.bookings-venue {
  background: rgba(21, 128, 61, 0.12);
  color: var(--brand-green-dark);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-weight: 600;
}

.bookings-genre {
  color: var(--brand-gold);
  font-weight: 700;
}

/* ——— Booking form ——— */
.booking-intro {
  color: var(--dust);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.offering-back {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.offering-back a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.offering-back a:hover {
  color: var(--rust);
}

.booking-cta-wrap {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.btn-book-now {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--amber);
  color: var(--black);
  border: 2px solid var(--amber);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-book-now:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
  transform: translateY(-2px);
}

body.page-bookings .btn-book-now,
body.page-book-now .btn-book-now,
body.page-wineries .btn-book-now,
body.page-fine-dining .btn-book-now,
body.page-pubs .btn-book-now,
body.page-market .btn-book-now,
body.page-piano-bar .btn-book-now,
body.page-jazz-club .btn-book-now,
body.page-private-events .btn-book-now,
body.page-daytime .btn-book-now,
body.page-dinner-time .btn-book-now,
body.page-late-night .btn-book-now {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

body.page-bookings .btn-book-now:hover,
body.page-book-now .btn-book-now:hover,
body.page-wineries .btn-book-now:hover,
body.page-fine-dining .btn-book-now:hover,
body.page-pubs .btn-book-now:hover,
body.page-market .btn-book-now:hover,
body.page-piano-bar .btn-book-now:hover,
body.page-jazz-club .btn-book-now:hover,
body.page-private-events .btn-book-now:hover,
body.page-daytime .btn-book-now:hover,
body.page-dinner-time .btn-book-now:hover,
body.page-late-night .btn-book-now:hover {
  background: var(--blood);
  border-color: var(--blood);
  color: var(--white);
}

.booking-form {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.booking-row {
  margin-bottom: 1.5rem;
}

.booking-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 0.5rem;
}

.booking-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--smoke);
  border: 1px solid var(--concrete);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.booking-input::placeholder {
  color: var(--dust);
}

.booking-input:focus {
  outline: none;
  border-color: var(--amber);
}

.booking-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.booking-textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-row--submit {
  margin-top: 2rem;
  margin-bottom: 0;
}

.booking-submit {
  padding: 1rem 2.5rem;
  background: var(--amber);
  color: var(--black);
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.booking-submit:hover {
  background: var(--rust);
}

/* ——— Payment form (hidden page: /payments.html) ——— */
.payment-intro {
  color: var(--dust);
  margin-bottom: 2.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.payment-form {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.payment-row {
  margin-bottom: 1.5rem;
}

.payment-row--submit {
  margin-top: 2rem;
  margin-bottom: 0;
}

.payment-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dust);
  margin-bottom: 0.5rem;
}

.payment-optional {
  font-weight: 400;
  text-transform: none;
  color: var(--concrete);
}

.payment-amount-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--concrete);
  background: var(--smoke);
}

.payment-currency {
  padding: 1rem 0 1rem 1.25rem;
  color: var(--dust);
  font-size: 1.25rem;
  font-weight: 500;
}

.payment-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--smoke);
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.payment-input:focus {
  outline: none;
}

.payment-amount-wrap:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.payment-input--amount {
  font-size: 1.25rem;
  font-weight: 500;
}

.payment-input::placeholder {
  color: var(--dust);
}

.payment-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--amber);
  color: var(--black);
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.payment-submit:hover {
  background: var(--rust);
}

.payment-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--concrete);
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Google Form embed (Bookings page) */
.google-form-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  min-height: 820px;
  background: var(--smoke);
  border: 1px solid var(--concrete);
  border-top: 3px solid var(--amber);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.google-form-embed {
  width: 100%;
  height: 820px;
  border: none;
  display: block;
}

@media (max-width: 700px) {
  .google-form-wrap {
    min-height: 720px;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    max-width: none;
  }

  .google-form-embed {
    height: 720px;
  }
}

/* ——— Footer ——— */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--ash);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--concrete);
  font-size: 0.9rem;
}

body.page-home .footer {
  background: #fff;
  border-top-color: #e0e0e0;
  color: var(--charcoal);
}

body.page-about .footer,
body.page-reviews .footer,
body.page-tour .footer,
body.page-videos .footer,
body.page-bookings .footer,
body.page-book-now .footer,
body.page-wineries .footer,
body.page-fine-dining .footer,
body.page-pubs .footer,
body.page-market .footer,
body.page-piano-bar .footer,
body.page-jazz-club .footer,
body.page-private-events .footer,
body.page-daytime .footer,
body.page-dinner-time .footer,
body.page-late-night .footer,
body.page-merch .footer,
body.page-payments .footer {
  background: #fff;
  border-top-color: #e0e0e0;
  color: #000;
}

.logo-small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--dust);
}

.footer-booking-phone {
  margin: 0;
  font-size: inherit;
}

.footer-booking-phone a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-booking-phone a:hover {
  color: var(--rust);
  text-decoration: underline;
}

body.page-home .footer-booking-phone a,
body.page-about .footer-booking-phone a,
body.page-reviews .footer-booking-phone a,
body.page-tour .footer-booking-phone a,
body.page-videos .footer-booking-phone a,
body.page-bookings .footer-booking-phone a,
body.page-book-now .footer-booking-phone a,
body.page-wineries .footer-booking-phone a,
body.page-fine-dining .footer-booking-phone a,
body.page-pubs .footer-booking-phone a,
body.page-market .footer-booking-phone a,
body.page-piano-bar .footer-booking-phone a,
body.page-jazz-club .footer-booking-phone a,
body.page-private-events .footer-booking-phone a,
body.page-daytime .footer-booking-phone a,
body.page-dinner-time .footer-booking-phone a,
body.page-late-night .footer-booking-phone a,
body.page-merch .footer-booking-phone a,
body.page-payments .footer-booking-phone a {
  color: var(--amber);
}

body.page-home .footer-booking-phone a:hover,
body.page-about .footer-booking-phone a:hover,
body.page-bookings .footer-booking-phone a:hover,
body.page-merch .footer-booking-phone a:hover {
  color: var(--rust);
}

/* ——— Mobile ——— */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.25rem;
    grid-template-columns: 1fr auto;  /* logo left, menu btn right */
  }

  .nav .logo-desktop {
    display: none;
  }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: column;
    background: var(--charcoal);
    padding: 0 1.5rem;
    gap: 0;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    pointer-events: none;
  }

  .nav.open {
    max-height: 90vh;
    opacity: 1;
    padding: 1.25rem 1.5rem 1.5rem;
    pointer-events: auto;
  }

  .nav a {
    display: block;
    padding: 0.875rem 0.5rem;
    font-size: 1.05rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-shadow: none;
  }

  .nav a:last-of-type {
    border-bottom: none;
  }

  .menu-btn {
    display: flex;
  }

  /* Hamburger → X when open */
  .menu-btn.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

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

  .menu-btn.is-open span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .tour-dates li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Hero: full viewport, logo at top, Listen at bottom, video in between */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 1rem;
    padding-top: env(safe-area-inset-top, 0);
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    padding-top: 5rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-logo {
    font-size: clamp(2.5rem, 12vw, 5rem);
    margin-bottom: 0;
    margin-top: -2in;
    flex-shrink: 0;
  }

  .hero-content .cta {
    margin-top: 0;
    flex-shrink: 0;
  }

  .hero-social {
    margin-top: 1.25rem;
    flex-shrink: 0;
  }

  .hero-tagline {
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  }

  .scroll-hint {
    display: none;
  }

  /* Section padding on mobile */
  .section--page,
  .section--dark {
    padding: 2.5rem 1.25rem 3rem;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .video-filters {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .video-filters-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-filter-btn,
  .video-sort-btn {
    min-height: 44px;
    padding: 0.6rem 1rem;
  }

  .section--cta {
    padding: 3rem 1.25rem;
  }

  .section--cta .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
}
