/* ==========================================================================
   WEDDINGVIOLINIST.CA - SAMMY VIOLIN CANADA
   Luxury Modern High-Converting Stylesheet
   ========================================================================== */

:root {
  --bg-primary: #0a0a0d;
  --bg-secondary: #121217;
  --bg-card: rgba(22, 22, 29, 0.75);
  --bg-card-hover: rgba(30, 30, 40, 0.9);
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-warm: #c8a883;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #aa7c11 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(200, 168, 131, 0.05) 100%);
  --text-main: #f9f9fb;
  --text-muted: #a3a3b2;
  --text-dark: #0f0f13;
  --border-gold: rgba(212, 175, 55, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-luxury: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.08);
  --shadow-gold-hover: 0 10px 30px rgba(212, 175, 55, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(200, 168, 131, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography & Titles */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 1.05rem;
}

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-warm);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag i {
  color: var(--gold-primary);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.1rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-notice-bar {
  background: #000;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-notice-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-notice-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-notice-badge {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.top-notice-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-notice-right a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-notice-right a:hover {
  color: var(--gold-primary);
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 2px 4px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: var(--gold-gradient);
  color: #0b0b0e;
  box-shadow: 0 2px 8px var(--gold-glow);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 13, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid var(--border-gold);
}

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

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

.brand-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-warm);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-main);
  position: relative;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: var(--transition);
}

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

.nav-link:hover {
  color: var(--gold-primary);
}

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

/* Luxury Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-toggle i.fa-angle-down {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  color: var(--gold-warm);
  margin-left: 2px;
}

.nav-dropdown:hover .nav-dropdown-toggle i.fa-angle-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  min-width: 250px;
  background: rgba(14, 14, 18, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(14, 14, 18, 0.98);
  border-left: 1px solid var(--border-gold);
  border-top: 1px solid var(--border-gold);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #e5e7eb;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item-link i {
  color: var(--gold-primary);
  font-size: 0.95rem;
  width: 16px;
  text-align: center;
}

.dropdown-item-link:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  padding-left: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Buttons */
.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.04em;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0b0e;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-gold);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

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

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

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20ba59;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem 0;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
              rgba(10, 10, 13, 0.4) 0%, 
              rgba(10, 10, 13, 0.8) 75%, 
              var(--bg-primary) 100%),
              radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 13, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: left;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.hero-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--gold-light);
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.hero-rating-badge .stars {
  color: #ffc107;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #d1d5db;
  line-height: 1.6;
  max-width: 740px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-highlight-text strong {
  display: block;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

.hero-highlight-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   OFFICIAL DISCOGRAPHY & SPOTIFY STREAMING BAR
   ========================================================================== */
.streaming-banner-section {
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.98) 0%, rgba(20, 20, 27, 0.98) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.25rem 0;
  position: relative;
}

.streaming-banner-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.streaming-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.streaming-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.spotify-icon-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1DB954;
  color: #0b0b0e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.45);
  flex-shrink: 0;
}

.streaming-text-block h3 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.streaming-text-block h3 .verified-tag {
  font-size: 0.75rem;
  background: rgba(29, 185, 84, 0.2);
  color: #1DB954;
  border: 1px solid #1DB954;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.streaming-text-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.5;
}

.streaming-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-spotify {
  background: #1DB954;
  color: #0b0b0e;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(29, 185, 84, 0.35);
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(29, 185, 84, 0.5);
  color: #000;
}

/* ==========================================================================
   ABOUT / BIOGRAPHY SECTION
   ========================================================================== */
.about-section {
  padding: 7rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-luxury);
}

.about-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-main-img-card:hover .about-main-img {
  transform: scale(1.03);
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(18, 18, 23, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
}

.about-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.about-content p {
  margin-bottom: 1.25rem;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.credential-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.credential-item span {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 400;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ==========================================================================
   SERVICES & WEDDING PACKAGES
   ========================================================================== */
.services-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury), var(--shadow-gold-hover);
}

.service-card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

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

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.service-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.service-feature-list li {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-feature-list li i {
  color: var(--gold-primary);
  font-size: 0.8rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.service-time-window {
  font-size: 0.85rem;
  color: var(--gold-warm);
  font-weight: 500;
}

/* ==========================================================================
   ENSEMBLE CONFIGURATIONS
   ========================================================================== */
.ensemble-section {
  padding: 6rem 0;
  position: relative;
}

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

.ensemble-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.ensemble-card.featured {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(22, 22, 29, 0.8) 100%);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.ensemble-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.ensemble-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.ensemble-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.ensemble-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.ensemble-combos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.ensemble-tag {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 4px;
  color: #d1d5db;
}

/* ==========================================================================
   VIDEO & MEDIA SHOWCASE
   ========================================================================== */
.media-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

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

.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition);
}

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

.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

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

.video-info-bar {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video-info-bar h4 {
  font-size: 1.05rem;
  color: #fff;
}

.video-info-bar span {
  font-size: 0.8rem;
  color: var(--gold-warm);
}

/* Photo Gallery Showcase Grid */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 3.5rem;
}

.gallery-thumb {
  position: relative;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #000;
  transition: var(--transition);
}

.gallery-thumb:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 0.75rem 0.6rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-thumb:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption span {
  color: var(--gold-light);
  font-size: 0.72rem;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS (5-STAR SOCIAL PROOF)
   ========================================================================== */
.reviews-section {
  padding: 7rem 0;
  position: relative;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-luxury);
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  color: #ffc107;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.review-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.review-author-avatar-monogram {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0b0b0e;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-gold);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.review-author-info h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2px;
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--gold-warm);
}

.review-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.review-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

.review-badge-item i {
  color: var(--gold-primary);
}

/* ==========================================================================
   REPERTOIRE & MUSIC GENRES
   ========================================================================== */
.repertoire-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.genre-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.genre-card:hover {
  border-color: var(--border-gold);
}

.genre-card h3 {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.genre-card ul {
  list-style: none;
}

.genre-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.genre-card ul li::before {
  content: '•';
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* ==========================================================================
   INTERACTIVE BOOKING & INQUIRY FORM (CONVERSION ENGINE)
   ========================================================================== */
.booking-section {
  padding: 7rem 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, var(--bg-primary) 70%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
  overflow: hidden;
}

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

.booking-info h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.booking-info p {
  margin-bottom: 2rem;
}

.booking-perks {
  list-style: none;
  margin-bottom: 2.5rem;
}

.booking-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #e5e7eb;
  margin-bottom: 14px;
}

.booking-perks li i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 2px;
}

.booking-direct-contacts {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.booking-direct-contacts h4 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.direct-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 500;
}

.direct-contact-item:last-child {
  margin-bottom: 0;
}

.direct-contact-item i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

.direct-contact-item a:hover {
  color: var(--gold-light);
}

/* Booking Form Elements */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #d1d5db;
}

.form-control {
  background: rgba(10, 10, 13, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-glow);
  background: rgba(15, 15, 20, 0.95);
}

select.form-control option {
  background: #121217;
  color: #fff;
}

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

.form-submit-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0.5rem;
}

.form-privacy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   CANADIAN CITIES & LOCAL SEO SECTION
   ========================================================================== */
.canada-coverage-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.city-tags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.city-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: #d1d5db;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.city-pill i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.city-pill:hover {
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 7rem 0;
  background: var(--bg-secondary);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: #0b0b0e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  background: rgba(10, 10, 13, 0.4);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #d1d5db;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--border-gold);
  padding: 5rem 0 2rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.25rem 0 1.5rem 0;
  font-size: 0.95rem;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  background: var(--gold-gradient);
  color: #0b0b0e;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--gold-glow);
}

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-contact-list li i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-list a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-sammy-link {
  color: var(--gold-warm);
  font-weight: 500;
}

.footer-sammy-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ==========================================================================
   FLOATING ACTION BAR & BACK TO TOP
   ========================================================================== */
.floating-action-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

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

.floating-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-call {
  background: var(--gold-gradient);
  color: #0b0b0e;
  box-shadow: 0 6px 20px var(--gold-glow);
}

.back-to-top {
  background: rgba(22, 22, 29, 0.9);
  border: 1px solid var(--border-gold);
  color: var(--gold-warm);
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 13, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  z-index: 998;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.7);
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 8px;
}

.mobile-sticky-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  gap: 3px;
}

.mobile-sticky-btn i {
  font-size: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
/* ==========================================================================
   COMPARISON MATRIX SECTION (LIVE VIOLIN VS DJ)
   ========================================================================== */
.comparison-section {
  padding: 6.5rem 0;
  background: var(--bg-primary);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1050px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxury);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.comparison-table th {
  background: rgba(15, 15, 20, 0.9);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.comparison-table th.highlight {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border-bottom: 2px solid var(--gold-primary);
}

.comparison-table td.highlight {
  background: rgba(212, 175, 55, 0.05);
  font-weight: 500;
  color: #fff;
}

.comp-check {
  color: #25d366;
  font-size: 1.2rem;
  margin-right: 6px;
}

.comp-cross {
  color: #ef4444;
  font-size: 1.1rem;
  margin-right: 6px;
}

/* ==========================================================================
   CANADIAN LUXURY VENUES SHOWCASE
   ========================================================================== */
.venues-section {
  padding: 6.5rem 0;
  background: var(--bg-secondary);
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.venue-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.venue-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.venue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.venue-header h4 {
  font-size: 1.2rem;
  color: #fff;
}

.venue-location-tag {
  font-size: 0.75rem;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.venue-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.venue-recommendation {
  font-size: 0.85rem;
  color: var(--gold-warm);
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   50 TOP WEDDING VIOLIN SONGS PLAYLIST
   ========================================================================== */
.songs-guide-section {
  padding: 6.5rem 0;
  background: var(--bg-primary);
}

.playlist-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.5rem;
}

.playlist-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.playlist-tab-btn:hover, .playlist-tab-btn.active {
  background: var(--gold-gradient);
  color: #0b0b0e;
  font-weight: 600;
  border-color: transparent;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.song-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.song-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.song-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient-subtle);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.song-info h5 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.song-info span {
  font-size: 0.8rem;
  color: var(--gold-warm);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .photo-gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-notice-bar {
    display: none;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
    overflow-y: auto;
  }
  .main-nav.open {
    left: 0;
  }
  .nav-link {
    font-size: 1.25rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .nav-actions .btn {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: 5rem 0 4rem 0;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .floating-action-bar {
    bottom: 80px;
    right: 15px;
  }
  .mobile-sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
  .photo-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-badge-floating {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }
  .nav-item {
    width: 100%;
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-left: 2px solid var(--border-gold);
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    display: none;
  }
  .nav-dropdown-menu::before {
    display: none;
  }
  .nav-dropdown.mobile-expanded .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .dropdown-item-link {
    padding: 8px 12px;
    font-size: 1rem;
  }
}
