/* ==========================================================================
   WINSTON - WISCONSIN WEDDING & EVENT SINGER
   "Classic Lounge" Design System & Stylesheet (Multi-Page Edition)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&display=swap');

/* --- CSS Custom Properties / Design Tokens --- */
:root {
  /* Color Palette - Classic Lounge / Midnight & Brass */
  --bg-darkest: #070709;
  --bg-primary: #0c0d11;
  --bg-secondary: #13141b;
  --bg-surface: #181922;
  --bg-card: rgba(22, 24, 33, 0.85);
  --bg-card-hover: rgba(30, 33, 46, 0.95);
  --bg-glass: rgba(12, 13, 17, 0.9);

  /* Gold & Brass Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5e4ab;
  --gold-champagne: #ecd899;
  --gold-dark: #997819;
  --gold-border: rgba(212, 175, 55, 0.3);
  --gold-border-strong: rgba(212, 175, 55, 0.6);
  --gold-gradient: linear-gradient(135deg, #fcedc2 0%, #d4af37 50%, #997819 100%);
  --gold-gradient-glow: linear-gradient(135deg, #ffeaa7 0%, #d4af37 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);
  --gold-subtle: rgba(212, 175, 55, 0.08);

  /* Typography Colors */
  --text-primary: #fbf9f4;
  --text-secondary: #cfc8bc;
  --text-muted: #918b80;
  --text-dark: #121318;

  /* Typography Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Elevations */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.22);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 960px;
  --nav-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* --- Global Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: #2a2c38;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

::selection {
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* --- Container Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-glow-text {
  color: var(--gold-primary);
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '✦';
  font-size: 0.75rem;
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

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

/* Section Dividers */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px auto;
  width: 100%;
  max-width: 240px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.gold-divider span {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

/* --- Button Component --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0c10;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #ffffff 0%, #f3e5ab 30%, #d4af37 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(18, 19, 27, 0.85);
  color: var(--text-primary);
  border: 1px solid var(--gold-border-strong);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-bottom var(--transition-normal), box-shadow var(--transition-normal);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border);
}

.is-home .site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.is-home .site-header.scrolled {
  background: var(--bg-glass);
  border-bottom: 1px solid var(--gold-border);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border: 1px solid var(--gold-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 8px;
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   PAGE HERO BANNER (FOR SUBPAGES)
   ========================================================================== */
.page-hero-banner {
  position: relative;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 70px;
  background: 
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 65%),
    var(--bg-darkest);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  overflow: hidden;
}

.banner-bg-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: clamp(2.4rem, 4vw + 0.5rem, 3.75rem);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   HERO SECTION (HOMEPAGE)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  padding-bottom: 60px;
  background-color: var(--bg-darkest);
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 60% 40%, rgba(12, 13, 17, 0.4) 0%, rgba(7, 7, 9, 0.92) 80%),
    linear-gradient(to top, var(--bg-primary) 0%, rgba(12, 13, 17, 0.6) 50%, rgba(7, 7, 9, 0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 40px 0;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}

.badge-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

/* Floating Audio Sampler */
.hero-audio-card {
  background: rgba(19, 20, 27, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  backdrop-filter: blur(12px);
  max-width: 480px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: none;
  color: #0b0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
}

.audio-play-btn:hover {
  transform: scale(1.08);
}

.audio-info {
  flex: 1;
  min-width: 0;
}

.audio-track-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.audio-track-artist {
  font-size: 0.8rem;
  color: var(--gold-primary);
}

.audio-waveform-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
}

.waveform-bar {
  width: 3px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.playing .waveform-bar {
  animation: equalize 1s infinite alternate ease-in-out;
}
.playing .waveform-bar:nth-child(2) { animation-delay: 0.2s; }
.playing .waveform-bar:nth-child(3) { animation-delay: 0.4s; }
.playing .waveform-bar:nth-child(4) { animation-delay: 0.1s; }
.playing .waveform-bar:nth-child(5) { animation-delay: 0.3s; }

@keyframes equalize {
  0% { height: 6px; }
  100% { height: 22px; }
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  margin-bottom: 54px;
}

/* ==========================================================================
   ABOUT / BRAND STORY SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.about-visual-column {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform var(--transition-slow);
}

.about-floating-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(10px);
}

.badge-icon-gold {
  font-size: 1.8rem;
  color: var(--gold-primary);
}

.badge-text-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.about-text-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.7;
}

.story-lead strong {
  color: var(--gold-light);
  font-weight: 600;
}

.story-paragraph {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.quote-highlight {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold-primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 12px 0;
  font-style: italic;
  color: var(--text-primary);
}

.quote-highlight cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.milestone-item {
  text-align: center;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.milestone-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.milestone-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Detailed Story Features */
.story-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}

.value-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.value-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   REPERTOIRE SECTION
   ========================================================================== */
.repertoire-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.repertoire-search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.search-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.accordion-item:hover {
  border-color: var(--gold-border-strong);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.accordion-item.active {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(212, 175, 55, 0.04);
}

.accordion-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.category-artists {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.accordion-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.song-count-pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.accordion-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-chevron {
  transform: rotate(180deg);
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 11, 15, 0.6);
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-body {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  padding: 24px 28px;
}

.song-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.song-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-border-strong);
  transform: translateY(-2px);
}

.song-meta {
  flex: 1;
  min-width: 0;
}

.song-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-artist {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.song-preview-trigger {
  background: transparent;
  border: none;
  color: var(--gold-primary);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.song-preview-trigger:hover {
  color: var(--gold-light);
  transform: scale(1.15);
}

/* Video Showcase Grid (2-column) */
.video-showcase-title {
  font-size: 1.75rem;
  margin-bottom: 24px;
}

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

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.video-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.video-thumbnail-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform var(--transition-slow);
}

.video-card:hover .video-thumb-img {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 2px solid #ffffff;
  color: #0b0c10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  transition: var(--transition-fast);
}

.video-thumbnail-container:hover .video-play-overlay {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.9);
}

.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 13, 17, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}

.video-card-content {
  padding: 20px 24px;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.video-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES & PACKAGES SECTION
   ========================================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-strong);
  box-shadow: var(--shadow-md);
}

.package-card.featured {
  background: linear-gradient(180deg, rgba(29, 31, 42, 0.95) 0%, rgba(20, 22, 30, 0.95) 100%);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
  z-index: 2;
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #0b0c10;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.package-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.package-duration {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 10px;
  line-height: 1.5;
}

.package-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.feature-check {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.package-footer {
  margin-top: auto;
}

.package-btn {
  width: 100%;
}

.bespoke-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(18, 19, 27, 0.9) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bespoke-info h4 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.bespoke-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   WISCONSIN VENUES & SOCIAL PROOF
   ========================================================================== */
.venue-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.venue-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.venue-tag span {
  color: var(--gold-primary);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 16px;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.author-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LEAD CAPTURE ENGINE / BOOKING FORM
   ========================================================================== */
.booking-card {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label .required {
  color: var(--gold-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(12, 13, 17, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(18, 19, 27, 0.95);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-select option {
  background: #121318;
  color: #fff;
  padding: 10px;
}

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

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.btn-submit {
  min-width: 280px;
  padding: 18px 36px;
  font-size: 1.05rem;
}

.submit-guarantee {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Alerts & Spinner */
.form-alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
  margin-top: 16px;
}

.form-alert.alert-success {
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid #4caf50;
  color: #a5d6a7;
}

.form-alert.alert-error {
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid #ef5350;
  color: #ef9a9a;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   FAQ ACCORDIONS
   ========================================================================== */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  cursor: pointer;
  text-align: left;
}

.faq-header:hover {
  background: rgba(212, 175, 55, 0.04);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(10, 11, 15, 0.5);
  padding: 0 24px;
}

.faq-item.active .faq-body {
  padding: 16px 24px 24px;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 7, 9, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

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

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--gold-border-strong);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  overflow: hidden;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: var(--bg-darkest);
}

.modal-video-box {
  max-width: 900px;
  background: #000;
  padding: 0;
}

.video-frame-wrap {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}

.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.success-modal-content {
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-gold);
  margin-bottom: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-darkest);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  .package-card.featured {
    transform: none;
  }
  .package-card.featured:hover {
    transform: translateY(-8px);
  }
  .story-values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-column {
    max-width: 440px;
    margin: 0 auto;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .bespoke-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--gold-border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-cta {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .booking-card {
    padding: 28px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
