/* =============================================
   BOOZIE BOOST BARTENDING — style.css
   Brand: Teal #00B8B8 | Gold #FFD447 | Charcoal #1a1a2e
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --teal:        #00B8B8;
  --teal-dark:   #008f8f;
  --teal-light:  #e0f7f7;
  --gold:        #FFD447;
  --gold-dark:   #e6bc00;
  --charcoal:    #1a1a2e;
  --charcoal-mid:#2d2d44;
  --text:        #2c2c3e;
  --text-light:  #6b6b80;
  --white:       #ffffff;
  --off-white:   #f9f9fb;
  --border:      #e8e8f0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);

  --transition:  0.3s ease;
  --nav-height:  72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--teal); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,184,184,0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,184,184,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(255,212,71,0.4);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,212,71,0.5);
}

.btn-full { width: 100%; }

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

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

.nav-link.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  margin-left: 8px;
}

.nav-link.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: left;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(40deg) translateY(-2px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-40deg) translateY(2px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* ============================================================
     REPLACE THIS GRADIENT WITH YOUR HERO PHOTO:
     Change background to: url('images/hero.jpg') center/cover no-repeat
     ============================================================ */
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 30%, #0a2a2a 60%, #002020 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,26,0.3) 0%,
    rgba(10,10,26,0.55) 50%,
    rgba(10,10,26,0.8) 100%
  );
}

/* Decorative ambient glow */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,184,184,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,212,71,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Availability Bar */
.availability-bar {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0,184,184,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,184,184,0.3);
  padding: 14px 24px;
}

.availability-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.availability-label {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.availability-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.avail-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  outline: none;
  transition: border-color var(--transition);
}

.avail-input:focus { border-color: var(--teal); }
.avail-input option { background: var(--charcoal); color: var(--white); }
input[type="date"].avail-input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.7; }

.avail-btn {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.avail-btn:hover { background: var(--gold-dark); transform: scale(1.02); }

.availability-result {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 80px 24px 60px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--charcoal);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 16px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
  vertical-align: super;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* ===== WHY US ===== */
.why-us { background: var(--off-white); }

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

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card:hover::before { opacity: 1; }

.why-card--featured {
  background: linear-gradient(135deg, #c8960a 0%, #f0b429 100%);
  border-color: #f0b429;
}
.why-card--featured h3 { color: #1a1a1a; }
.why-card--featured p { color: #2a2a2a; }
.why-card--featured::before { opacity: 1; background: linear-gradient(90deg, #8a6200, #f0b429); }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== EVENTS ===== */
.events-section { background: var(--white); }

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

.event-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.event-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}

.event-icon { font-size: 2rem; margin-bottom: 12px; display: block; }

.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.event-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== ABOUT ===== */
.about-section { background: var(--off-white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  z-index: 2;
}

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

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  gap: 8px;
  /* When you have a photo, replace this element with <img src="images/owner.jpg" alt="Owner Name" /> */
}

.about-img-placeholder::before {
  content: '👤';
  font-size: 3rem;
}

.about-img-accent {
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  z-index: 1;
  opacity: 0.15;
}

.about-content .section-title { text-align: left; }
.about-content .section-eyebrow { text-align: left; }

.about-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0 32px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.value-icon { color: var(--teal); font-size: 0.7rem; }

/* ===== LED SPOTLIGHT ===== */
.led-spotlight {
  position: relative;
  background: var(--charcoal);
  text-align: center;
  overflow: hidden;
  padding: 100px 0;
}

/* Replace with actual LED bar photo: background-image: url('images/led-bar.jpg') */
.led-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001a1a 0%, #002626 40%, #001a1a 100%);
}

/* Ambient glow effect */
.led-spotlight::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,184,184,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.led-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,40,40,0.5));
  z-index: 1;
}

.led-content {
  position: relative;
  z-index: 2;
}

.led-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.led-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 44px;
}

.led-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,184,184,0.15);
  border: 1px solid rgba(0,184,184,0.3);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ===== SERVICES ===== */
.services-section { background: var(--white); }

.pricing-notice {
  background: linear-gradient(135deg, var(--teal-light), rgba(255,212,71,0.1));
  border: 1px solid rgba(0,184,184,0.3);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: center;
  justify-content: center;
}

.notice-icon { font-size: 1.2rem; }

.pricing-notice p { color: var(--text); font-size: 0.95rem; }

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

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }

.service-card--featured {
  background: linear-gradient(135deg, #c8960a 0%, #f0b429 100%);
  border-color: #f0b429;
}
.service-card--featured h3 { color: #1a1a1a; }
.service-card--featured p { color: #2a2a2a; }

.service-icon { font-size: 2rem; margin-bottom: 14px; display: block; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.services-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CALCULATOR ===== */
.calculator-section { background: var(--off-white); }

.calculator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.calc-btn { min-width: 240px; margin: 0 auto; display: block; }

.calc-result {
  margin-top: 32px;
  text-align: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,184,184,0.3);
}

.calc-result-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.calc-result-range {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.calc-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  text-align: center;
  line-height: 1.6;
}

.calc-staffing-note {
  background: rgba(255,212,71,0.1);
  border: 1px solid rgba(255,212,71,0.3);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--white); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--charcoal-mid);
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-align: center;
  gap: 6px;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  padding: 16px;
  /* 
    TO REPLACE WITH A REAL PHOTO:
    Remove this .gallery-placeholder div entirely.
    Add an <img src="images/YOUR_PHOTO.jpg" alt="description" style="width:100%;height:100%;object-fit:cover;" />
  */
}

.gallery-placeholder span { font-size: 0.7rem; opacity: 0.5; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-item.hidden { display: none; }

/* ===== INSTAGRAM ===== */
.instagram-section { background: var(--off-white); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.ig-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition);
  cursor: pointer;
  /* Replace these with real Instagram post images */
}

.ig-placeholder:hover { transform: scale(1.04); }

.ig-cta { text-align: center; }

/* ===== REVIEWS ===== */
.reviews-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  overflow: hidden;
}

.reviews-section .section-title { color: var(--white); }
.reviews-section .section-eyebrow { color: var(--gold); }

.reviews-carousel {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.review-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

.review-event {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover { background: var(--teal); border-color: var(--teal); }

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== FORMS ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-label span { color: var(--teal); }

.form-input {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,184,184,0.1);
}

.form-input.error { border-color: #e55353; }
.form-textarea { resize: vertical; min-height: 120px; }

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ===== QUOTE SECTION ===== */
.quote-section { background: var(--off-white); }

.quote-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.quote-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.quote-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.quote-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.quote-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}

.quote-steps li span {
  background: var(--teal);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.quote-contact-mini {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-contact-mini p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
}

.quote-contact-mini a { color: var(--teal); }
.quote-contact-mini a:hover { color: var(--gold); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.services-fieldset { border: none; padding: 0; }
.services-fieldset legend { margin-bottom: 10px; }

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-minimum-note {
  background: var(--teal-light);
  border: 1px solid rgba(0,184,184,0.3);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.form-success span { font-size: 3rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--charcoal); }
.form-success p { color: var(--text-light); font-size: 0.95rem; max-width: 400px; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}

a.contact-value:hover { color: var(--teal); }

.service-areas-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-areas-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 12px;
  position: relative;
}

.service-areas-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
}

.social-links { margin-top: 4px; }

.social-icons { display: flex; gap: 10px; margin-top: 10px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition);
}

.social-icon:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  padding: 24px;
  /* 
    TO EMBED GOOGLE MAPS:
    1. Go to maps.google.com
    2. Search your address
    3. Click Share > Embed a map
    4. Copy the iframe src URL
    5. Replace this div with:
    <iframe src="YOUR_MAP_SRC" width="100%" height="100%" style="border:0;" loading="lazy"></iframe>
  */
}

.map-placeholder span { font-size: 3rem; }
.map-placeholder p { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.map-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.map-areas { font-size: 0.75rem; color: var(--teal); margin-top: 8px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); }

.footer-top { padding: 72px 0 48px; }

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

.footer-brand { max-width: 280px; }

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.footer-areas span {
  background: rgba(0,184,184,0.15);
  border: 1px solid rgba(0,184,184,0.25);
  color: var(--teal);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-seo-note { color: rgba(255,255,255,0.2) !important; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover { background: var(--charcoal); transform: translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }
[data-animate-delay="6"] { transition-delay: 0.6s; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .quote-layout { grid-template-columns: 280px 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-layout { gap: 48px; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .map-container { aspect-ratio: 16/9; }
  .review-card { min-width: calc(50% - 12px); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-info-card { position: static; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  :root { --nav-height: 64px; }
  .section { padding: 64px 0; }

  /* Nav Mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 32px 24px;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 12px 24px; width: 100%; text-align: center; }
  .nav-link.nav-cta { margin: 8px 0 0; width: auto; }

  /* Hero Mobile */
  .hero-title { font-size: 2.4rem; }
  .availability-inner { flex-direction: column; }
  .availability-form { flex-direction: column; }
  .avail-input, .avail-btn { width: 100%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-badges { flex-direction: column; align-items: center; }

  /* Grid Mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }

  /* About Mobile */
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-img-frame { aspect-ratio: 3/2; }
  .about-content .section-title { font-size: 1.8rem; }
  .about-img-accent { display: none; }

  /* Calculator Mobile */
  .calculator-card { padding: 24px; }
  .calc-grid { grid-template-columns: 1fr; }

  /* Quote Mobile */
  .quote-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }

  /* LED Mobile */
  .led-features { flex-direction: column; align-items: center; }

  /* Reviews Mobile */
  .review-card { min-width: calc(100% - 0px); }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { padding: 48px 0 32px; }

  /* Services CTA Mobile */
  .services-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  .events-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* =============================================
   BOOZIE BOOST — UPDATE v2 ADDITIONS
   ============================================= */

/* ===== TOP CONTACT BAR ===== */
.top-contact-bar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(0,184,184,0.2);
  padding: 7px 0;
  font-size: 0.72rem;
}

.top-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.top-contact-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-contact-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.top-contact-link:hover { color: var(--gold); }

.top-social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.top-social-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.top-social-link:hover { color: var(--teal); }

/* Nav height compensation for top bar */
.site-header {
  top: 0;
  height: auto;
}

.nav-container {
  height: var(--nav-height);
}

/* ===== NAV FIXES ===== */
.site-header.scrolled .top-contact-bar {
  display: none;
}

/* ===== SECTION CTA ROW ===== */
.section-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ===== ABOUT PHOTO PLACEHOLDER (v2 enhanced) ===== */
.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border: 2px dashed rgba(0,184,184,0.4);
  border-radius: var(--radius-xl);
}

.placeholder-icon { font-size: 2.5rem; }
.placeholder-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.placeholder-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}
.placeholder-hint strong { color: var(--teal); }

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ===== LED FEATURE TEXT FIX (accessibility) ===== */
.led-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 12px 22px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.led-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.led-feature-text {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* ===== PRICING GUIDANCE (replaces calculator) ===== */
.pricing-guidance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}

.pricing-guidance-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.pricing-guidance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-guidance-card--wedding {
  border-color: #c8960a;
  background: linear-gradient(135deg, #8a6200 0%, #c8960a 100%);
}
.pricing-guidance-card--wedding h3 { color: #ffffff; }
.pricing-guidance-card--wedding .pricing-guidance-tagline { color: #fff3b0; font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; }
.pricing-guidance-card--wedding .pricing-guidance-desc { color: rgba(255,255,255,0.92); }

.pricing-guidance-card--private {
  background: linear-gradient(135deg, #8a6200 0%, #c8960a 100%);
  border-color: #c8960a;
}
.pricing-guidance-card--private h3 { color: #ffffff; }
.pricing-guidance-card--private .pricing-guidance-tagline { color: #fff3b0; font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; }
.pricing-guidance-card--private .pricing-guidance-desc { color: rgba(255,255,255,0.92); }

.pricing-guidance-icon { font-size: 2.5rem; margin-bottom: 12px; }

.pricing-guidance-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.pricing-guidance-tagline {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  font-style: italic;
}

.pricing-guidance-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pricing-disclaimer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

/* ===== REVIEW CARD CONTRAST FIX ===== */
.review-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 400;
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.review-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  display: block;
}

.review-event {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== SOCIAL SECTION ===== */
.social-section { background: var(--white); }

.social-cta-bar {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.social-cta-btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.social-cta-btn--ig:hover { opacity: 0.9; transform: translateY(-2px); }

.social-cta-btn--tk {
  background: #010101;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.social-cta-btn--tk:hover { background: #333; transform: translateY(-2px); }

.social-cta-btn--fb {
  background: #1877f2;
  color: #fff;
}
.social-cta-btn--fb:hover { background: #166fe5; transform: translateY(-2px); }

.ig-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}
.ig-note a { color: var(--teal); }

/* ===== CONTACT CARDS GRID (replaces contact-layout with map) ===== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal); }

.contact-card-icon { font-size: 2rem; margin-bottom: 10px; }

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  word-break: break-word;
  transition: color var(--transition);
}
a.contact-card-value:hover { color: var(--teal); }

.contact-areas-list {
  list-style: none;
  text-align: center;
}
.contact-areas-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 2px 0;
}
.contact-areas-list li::before { display: none; }

.contact-social-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}
.contact-social-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== CONTACT CTA STRIP ===== */
.contact-cta-strip {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}

.contact-cta-strip p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  font-style: italic;
}

.contact-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta-strip .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.contact-cta-strip .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ===== QUOTE SOCIAL MINI ===== */
.quote-social-mini {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.quote-social-mini a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.quote-social-mini a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ===== GALLERY FILTER — updated category names ===== */
/* No structural changes needed, filter-btn styles stay the same */

/* ===== FOOTER AREAS — remove inland empire ===== */
/* (handled via HTML update) */

/* ===== RESPONSIVE UPDATES v2 ===== */
@media (max-width: 1024px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-guidance-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .top-contact-bar { padding: 6px 0; }
  .top-contact-inner { flex-direction: column; gap: 6px; }
  .top-contact-links { flex-direction: column; gap: 4px; }
  .top-social-links { gap: 10px; justify-content: center; }
  .top-social-link span { display: none; } /* hide text labels on tiny screens */
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
  .social-cta-bar { flex-direction: column; align-items: center; }
  .social-cta-btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact-cta-btns { flex-direction: column; align-items: center; }
  .contact-cta-btns .btn { width: 100%; max-width: 280px; }
  .section-cta-row { flex-direction: column; align-items: center; }
  .section-cta-row .btn { width: 100%; max-width: 280px; }
  .services-cta { flex-direction: column; align-items: center; }
  .services-cta .btn { width: 100%; max-width: 280px; }
}

@media (max-width: 400px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
}
