/* ============================================
   SHENANDOAH ENTERTAINMENT
   Landing Page — "Living Stage Light" Aesthetic
   Mobile-First Responsive Design
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-deep: #08080c;
  --bg-primary: #0c0c14;
  --bg-surface: #13131e;
  --bg-card: #1a1a28;
  --bg-card-hover: #201f30;

  --accent: #ff6b2c;
  --accent-light: #ff8f5c;
  --accent-dark: #d44f10;
  --accent-gold: #ffc857;
  --accent-glow: rgba(255, 107, 44, 0.25);
  --accent-glow-strong: rgba(255, 107, 44, 0.5);

  --text-primary: #f0f0f4;
  --text-secondary: #9494a8;
  --text-muted: #8d8da2; /* >=4.5:1 on the #0c0c14 background (WCAG AA); was #5c5c72 at ~2.9:1 */

  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(255, 107, 44, 0.2);
  --border-accent-hover: rgba(255, 107, 44, 0.5);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --section-padding: 5rem 1.5rem;
  --card-padding: 2rem;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-deep);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

/* --- Typography --- */
.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.text-accent {
  color: var(--accent);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--accent-glow-strong);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn--sm {
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

.btn--sm:hover {
  background: var(--accent-light);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

.btn__arrow {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}


/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}

.nav__logo:hover {
  color: var(--accent);
}

.nav__links {
  display: none;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  position: relative;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.nav__phone svg {
  width: 14px;
  height: 14px;
}

.nav__phone:hover {
  color: var(--accent);
}

.nav__cta {
  display: none;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition);
  border-radius: 1px;
}

.menu-open .nav__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-open .nav__hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-open .nav__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 8, 12, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--accent);
}


/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
  background: var(--bg-deep);
}

/* Hero background image with dark overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/mcdean-setup-2.jpg') center center / cover no-repeat;
  opacity: 0.65;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(8, 8, 12, 0.4) 0%,
    rgba(8, 8, 12, 0.25) 40%,
    rgba(8, 8, 12, 0.7) 100%);
  z-index: 0;
}

/* Floating atmospheric orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
  z-index: 1;
}

.hero__orb--1 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  opacity: 0.08;
  top: -8%;
  right: -10%;
  animation: float-orb 22s ease-in-out infinite;
}

.hero__orb--2 {
  width: 280px;
  height: 280px;
  background: #6c3ce0;
  opacity: 0.07;
  bottom: -5%;
  left: -8%;
  animation: float-orb 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: var(--accent-gold);
  opacity: 0.05;
  top: 40%;
  left: 50%;
  animation: float-orb 25s ease-in-out infinite;
  animation-delay: -10s;
}

/* Light beam effects */
.hero__beam {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 44, 0.03), transparent);
  z-index: 1;
}

.hero__beam--1 {
  width: 300px;
  height: 180%;
  top: -40%;
  right: 5%;
  transform: rotate(-18deg);
  animation: beam-drift 30s ease-in-out infinite;
}

.hero__beam--2 {
  width: 200px;
  height: 160%;
  top: -30%;
  left: 10%;
  transform: rotate(12deg);
  opacity: 0.6;
  animation: beam-drift 25s ease-in-out infinite reverse;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.9;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 14vw, 8rem);
  color: var(--text-primary);
}

.hero__title-line--accent {
  font-size: clamp(2.2rem, 9vw, 5.2rem);
  background: linear-gradient(135deg, var(--accent), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* Stats bar */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.hero__stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Availability / urgency note */
.hero__availability {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  margin-top: 1rem;
  opacity: 0.85;
  animation: pulse-subtle 3s ease-in-out infinite;
}

@keyframes pulse-subtle {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.55; }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}


/* ========================================
   SERVICES
   ======================================== */

.services {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

/* Subtle top divider glow */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Service cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-padding);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 70%);
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px var(--accent-glow);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.card__icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
}

.card__icon svg {
  width: 32px;
  height: 32px;
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-secondary);
}


/* Package includes strip */
.services__included {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.services__included-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.services__included-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.services__included-dot {
  color: var(--text-muted);
  opacity: 0.4;
}

.services__bilingual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-align: center;
}

.services__bilingual svg {
  flex-shrink: 0;
}


/* ========================================
   PACKAGES
   ======================================== */

.packages {
  padding: var(--section-padding);
  background: var(--bg-deep);
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  align-items: start;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.package-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.06) 0%, var(--bg-card) 50%);
  transform: scale(1.04);
  z-index: 1;
}

.package-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--accent);
}

.package-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.package-card__header {
  margin-bottom: 1.25rem;
}

.package-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

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

.package-card__price {
  margin-bottom: 0.5rem;
}

.package-card__amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.package-card--featured .package-card__amount {
  color: var(--accent);
}

.package-card__period {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 0.25rem;
}

.package-card__value {
  display: inline-block;
  background: rgba(255, 107, 44, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: fit-content;
}

.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.package-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.package-card__feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

/* Outline button variant */
.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 107, 44, 0.05);
}

.btn--full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.packages__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive: stack package cards on mobile */
@media (max-width: 768px) {
  .packages__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .package-card--featured {
    transform: none;
    order: -1;
  }
  .package-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  padding: var(--section-padding);
  background: var(--bg-deep);
}

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

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 400px;
  margin: 0 auto;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.about__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.about__bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.about__bio:last-of-type {
  margin-bottom: 2rem;
}

.about__credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.about__credential svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Ownership badges */
.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 147, 51, 0.08);
  border: 1px solid rgba(255, 147, 51, 0.25);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.about__badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}


/* ========================================
   GALLERY
   ======================================== */

.gallery {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 12, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__caption-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-primary);
}

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


/* ========================================
   EXPERIENCE (legacy — replaced by Gallery)
   ======================================== */

.experience {
  padding: var(--section-padding);
  background: var(--bg-deep);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Video player */
.video-player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-player__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: radial-gradient(ellipse at center, rgba(255, 107, 44, 0.06) 0%, var(--bg-card) 70%);
}

.video-player__play {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.12);
  color: var(--accent);
  transition: all var(--transition);
}

.video-player__play svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-player__play:hover {
  background: rgba(255, 107, 44, 0.25);
  transform: scale(1.08);
}

.video-player__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

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

/* Audio cards */
.experience__audio-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.audio-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
  cursor: pointer;
}

.audio-card:last-child {
  margin-bottom: 0;
}

.audio-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.audio-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.1);
  color: var(--accent);
}

.audio-card__icon svg {
  width: 20px;
  height: 20px;
}

.audio-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.audio-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

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


/* ========================================
   VENUES
   ======================================== */

.venues {
  padding: 4rem 1.5rem;
  background: var(--bg-deep);
  text-align: center;
}

.venues__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.venues__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.25rem;
  margin-bottom: 1.25rem;
}

.venues__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.venues__divider {
  color: var(--accent);
  opacity: 0.5;
  font-size: 0.6rem;
}

.venues__count {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

/* Decorative quote mark */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
}

.testimonial__stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-style: normal;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

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

/* WeddingWire badge */
.testimonials__badge {
  text-align: center;
  margin-top: 2.5rem;
}

.testimonials__ww-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.testimonials__ww-link:hover {
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.testimonials__ww-link svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.testimonials__ww-link strong {
  color: var(--accent-gold);
}


/* ========================================
   FAQ
   ======================================== */

.faq {
  padding: var(--section-padding);
  background: var(--bg-deep);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__item[open] .faq__question {
  color: var(--accent);
}

.faq__question:hover {
  color: var(--accent-light);
}

.faq__answer {
  padding: 0 0 1.25rem;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}


/* ========================================
   PROCESS (How It Works)
   ======================================== */

.process {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.process__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.process__step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  transition: all var(--transition);
}

.process__step:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.process__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

.process__connector {
  color: var(--accent);
  opacity: 0.4;
  transform: rotate(90deg);
}

.process__connector svg {
  width: 32px;
  height: 12px;
}

@media (min-width: 768px) {
  .process__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: none;
  }

  .process__step {
    flex: 1;
  }

  .process__connector {
    transform: none;
    margin-top: 3rem;
  }
}


/* ========================================
   BOOKING
   ======================================== */

.booking {
  padding: 6rem 1.5rem;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

/* Background glow behind booking */
.booking__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.04;
  filter: blur(120px);
  pointer-events: none;
}

.booking .section-header {
  position: relative;
  z-index: 1;
}

.booking__form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

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

.booking__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking__field input,
.booking__field select,
.booking__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking__field input::placeholder,
.booking__field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 255, 140, 50), 0.15);
}

.booking__field select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.booking__field--full {
  margin-top: 1.25rem;
}

.booking__submit {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.booking__submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.booking__submit:hover svg {
  transform: translateX(4px);
}

.booking__form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Success state */
.booking__success {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.booking__success-icon {
  width: 72px;
  height: 72px;
  color: #4ade80;
}

.booking__success-icon svg {
  width: 100%;
  height: 100%;
}

.booking__success h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
}

.booking__success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 400px;
}

/* Responsive: stack form fields on mobile */
@media (max-width: 600px) {
  .booking__form-grid {
    grid-template-columns: 1fr;
  }
  .booking__form-wrapper {
    padding: 1.5rem 1.25rem;
  }
}

/* Booking alternatives — multi-channel lead capture */
.booking__alternatives {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2rem;
}

.booking__alt-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.booking__alt-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.booking__alt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.booking__alt-link:hover {
  color: var(--accent);
}

.booking__alt-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .booking__alt-links {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

/* Trust badges */
.booking__trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 4rem 1.5rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__logo:hover {
  color: var(--accent);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 300px;
  margin-bottom: 1.25rem;
}

/* Social links */
.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__links a,
.footer__contact a,
.footer__contact p {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--accent);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

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


/* ========================================
   MOBILE FLOATING CTA
   ======================================== */

.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.floating-cta--visible {
  transform: translateY(0);
}

.floating-cta__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.floating-cta__btn:hover {
  box-shadow: 0 6px 30px var(--accent-glow-strong);
}


/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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


/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

@keyframes beam-drift {
  0%, 100% { transform: rotate(-18deg) translateX(0); opacity: 1; }
  50% { transform: rotate(-14deg) translateX(40px); opacity: 0.5; }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 24px; }
}


/* ========================================
   RESPONSIVE — TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
  :root {
    --section-padding: 6rem 2rem;
    --card-padding: 2.25rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about__grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }

  .about__image {
    max-width: none;
  }

  .about__credentials {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }

  .hero__stats {
    gap: 2.5rem;
  }

  /* Hide floating CTA on tablet+ */
  .floating-cta {
    display: none;
  }
}


/* ========================================
   RESPONSIVE — DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
  :root {
    --section-padding: 7rem 2rem;
  }

  /* Show desktop nav */
  .nav__links {
    display: flex;
  }

  .nav__phone {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience__grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
  }
}


/* ========================================
   RESPONSIVE — WIDE (1400px+)
   ======================================== */

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero__orb--1 {
    width: 500px;
    height: 500px;
  }

  .hero__orb--2 {
    width: 400px;
    height: 400px;
  }
}


/* ========================================
   REDUCED MOTION
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__scroll-line {
    animation: none;
  }
}


/* ========================================
   UTILITY
   ======================================== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================
   DESIGN POLISH PASS — 2026-08-28
   Four targeted elevations over the existing
   "Living Stage Light" system (direction unchanged):
   1) Hero title spacing/legibility
   2) Section rhythm + fixed-nav anchor offset
   3) Card + testimonial refinement (gold accent)
   4) Gallery grade so dated photos read intentional
   ============================================ */

/* --- 1. Hero title: tighten the two lines, add depth over the photo --- */
.hero__title {
  line-height: 0.82;
  margin-bottom: 1.75rem;
}
.hero__title-line {
  text-shadow: 0 2px 30px rgba(8, 8, 12, 0.55);
}
.hero__title-line--accent {
  display: block;
  margin-top: -0.12em;
  text-shadow: 0 2px 45px rgba(255, 107, 44, 0.28);
}
.hero__eyebrow {
  margin-bottom: 1.25rem;
}
.hero__tagline {
  margin-top: 0.25rem;
  margin-bottom: 2.75rem;
}
/* Two-button hero row: keep centered + wrap gracefully */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.hero__actions .hero__availability {
  flex-basis: 100%;
  margin-top: 0.75rem;
}

/* --- 2. Section rhythm + anchor offset (fixed nav no longer clips headings) --- */
section[id] {
  scroll-margin-top: 88px;
}
.section-header {
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  :root {
    --section-padding: 8rem 2rem;
  }
}

/* --- 3. Cards: gradient top-edge on hover + slightly stronger resting border --- */
.card {
  border-color: rgba(255, 255, 255, 0.08);
}
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.card:hover::after {
  opacity: 1;
}

/* --- 3b. Testimonials: gold hairline on hover + warmer lift --- */
.testimonial::after {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.testimonial:hover::after {
  opacity: 0.7;
}
.testimonial:hover {
  border-color: var(--border-accent-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* --- 4. Gallery: unified cinematic grade at rest, full color on hover --- */
.gallery__item {
  border-color: rgba(255, 255, 255, 0.08);
}
.gallery__item img {
  filter: saturate(0.8) brightness(0.9) contrast(1.06);
  transition: transform var(--transition-slow), filter var(--transition-slow);
}
.gallery__item:hover img {
  filter: saturate(1.05) brightness(1.02) contrast(1.06);
}
