/* ==========================================================================
   HER FLY PRODUCTIONS - CINEMATIC MODERN DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette - Obsidian Slate & Warm Champagne Gold */
  --bg-primary: #0a0c10;
  --bg-secondary: #12151c;
  --bg-tertiary: #191e28;
  --bg-card: rgba(22, 27, 36, 0.85);
  --bg-glass: rgba(18, 22, 30, 0.75);
  --bg-card-hover: rgba(30, 36, 48, 0.95);
  
  --gold-primary: #e2b774;
  --gold-secondary: #c99b53;
  --gold-light: #f5d8a0;
  --gold-glow: rgba(226, 183, 116, 0.25);
  --gold-glow-strong: rgba(226, 183, 116, 0.45);

  --text-main: #f5f5f7;
  --text-muted: #a1a7b5;
  --text-dim: #6b7280;
  --text-light: #ffffff;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(226, 183, 116, 0.35);
  --border-gold-solid: #e2b774;

  --accent-red: #e05252;
  --accent-green: #3ecf8e;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Depth */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 32px var(--gold-glow);

  /* Layout & Transitions */
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #151a24 0%, var(--bg-primary) 70%);
  min-height: 100vh;
  line-height: 1.6;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
}

/* Typography Utility Classes */
.serif { font-family: var(--font-serif); }
.display-font { font-family: var(--font-display); letter-spacing: 0.05em; }
.gold-text { color: var(--gold-primary); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-light);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.top-ticker {
  background: linear-gradient(90deg, #10141b 0%, #1c2331 50%, #10141b 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

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

.ticker-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.ticker-links a {
  margin-left: 18px;
  color: var(--gold-light);
  font-weight: 500;
}

.ticker-links a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 12, 16, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(226, 183, 116, 0.2);
}

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

.brand-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
  color: #0b0d11;
  box-shadow: 0 4px 18px rgba(226, 183, 116, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f7d89b 0%, var(--gold-primary) 100%);
  box-shadow: 0 6px 26px var(--gold-glow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(226, 183, 116, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

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

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(1.2) contrast(1.1);
  transform: scale(1.05);
  animation: slow-zoom 20s infinite alternate ease-in-out;
}

@keyframes slow-zoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(10, 12, 16, 0.4) 0%, var(--bg-primary) 85%),
              linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(226, 183, 116, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-pill svg {
  color: var(--gold-primary);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero-title span {
  font-style: italic;
  color: var(--gold-primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Showcase Card */
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-smooth);
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}

.hero-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.hero-card:hover .hero-card-media img {
  transform: scale(1.06);
}

.hero-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 6px;
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(226, 183, 116, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d11;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(226, 183, 116, 0.6);
  transition: all var(--transition-fast);
}

.play-button-overlay:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ffffff;
  color: #000;
}

.hero-card-body {
  padding: 24px;
  background: linear-gradient(180deg, rgba(22, 27, 36, 0.7) 0%, rgba(15, 18, 24, 0.95) 100%);
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.hero-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FEATURED SHOWREEL & SPOTLIGHT SECTION
   ========================================================================== */

.spotlight-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.spotlight-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.spotlight-tab-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.spotlight-tab-btn:hover {
  border-color: var(--gold-primary);
  color: var(--text-light);
}

.spotlight-tab-btn.active {
  background: var(--gold-primary);
  color: #0b0d11;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px var(--gold-glow);
}

.spotlight-display {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.spotlight-video-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow-md);
}

.spotlight-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.spotlight-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 16px;
}

.spotlight-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.spotlight-meta-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}

.spotlight-meta-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.spotlight-meta-item span {
  font-size: 0.9rem;
  color: var(--text-main);
}

/* ==========================================================================
   PORTFOLIO GALLERY (FILTERABLE)
   ========================================================================== */

.portfolio-section {
  padding: 100px 0;
  position: relative;
}

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-light);
  border-color: var(--border-gold);
}

.filter-btn.active {
  background: var(--gold-primary);
  color: #0a0c10;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 16px var(--gold-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 32px;
}

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

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

.portfolio-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d1017;
}

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

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

.portfolio-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid var(--border-subtle);
}

.portfolio-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px;
  height: 56px;
  background: rgba(226, 183, 116, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d11;
  font-size: 1.25rem;
  opacity: 0;
  transition: all var(--transition-fast);
}

.portfolio-card:hover .portfolio-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
  margin-bottom: 12px;
}

.portfolio-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.portfolio-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.watch-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.portfolio-card:hover .watch-link {
  gap: 10px;
  color: var(--gold-light);
}

/* ==========================================================================
   SERVICES MATRIX SECTION
   ========================================================================== */

.services-section {
  padding: 110px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.service-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(226, 183, 116, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.service-features-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features-list li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.service-card-btn {
  width: 100%;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.service-card:hover .service-card-btn {
  background: var(--gold-primary);
  color: #0b0d11;
  border-color: var(--gold-primary);
}

/* ==========================================================================
   INTERACTIVE PACKAGE & INVESTMENT ESTIMATOR
   ========================================================================== */

.estimator-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, #151a24 0%, var(--bg-primary) 100%);
  position: relative;
}

.estimator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 50px);
  box-shadow: var(--shadow-lg);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.estimator-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.option-group-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}

.choice-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  user-select: none;
}

.choice-card:hover {
  border-color: var(--border-gold);
  background: rgba(226, 183, 116, 0.05);
}

.choice-card.selected {
  border-color: var(--gold-primary);
  background: rgba(226, 183, 116, 0.12);
  box-shadow: 0 0 16px var(--gold-glow);
}

.choice-card h4 {
  font-size: 0.925rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.choice-card p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* Addons checklist */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-item:hover {
  border-color: var(--border-gold);
}

.addon-item.selected {
  border-color: var(--gold-primary);
  background: rgba(226, 183, 116, 0.08);
}

.addon-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d11;
  font-size: 0.8rem;
  background: transparent;
  transition: all var(--transition-fast);
}

.addon-item.selected .custom-checkbox {
  background: var(--gold-primary);
}

.addon-text h5 {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.addon-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Estimator Summary Box */
.estimator-summary-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}

.summary-header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.summary-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

.summary-details-list {
  list-style: none;
  margin-bottom: 24px;
}

.summary-details-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.summary-details-list li span:last-child {
  color: var(--text-light);
  font-weight: 600;
}

.summary-price-box {
  background: rgba(10, 12, 16, 0.8);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.price-box-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.price-box-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-light);
}

.price-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ==========================================================================
   FOUNDER SPOTLIGHT: VANESSA JEAN-LOUIS
   ========================================================================== */

.founder-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, #11141b 50%, var(--bg-primary) 100%);
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

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

.founder-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: contrast(1.05);
}

.founder-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(16, 20, 28, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  max-width: 260px;
}

.floating-badge-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.floating-badge-subtitle {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.founder-content {
  display: flex;
  flex-direction: column;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
  margin: 20px 0 28px;
  line-height: 1.6;
}

.founder-story-p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.founder-accolades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.accolade-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.accolade-card h5 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.accolade-card p {
  font-size: 0.775rem;
  color: var(--gold-primary);
}

.founder-signoff {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-primary);
  margin-top: 10px;
}

/* ==========================================================================
   TESTIMONIALS & IMPACT QUOTES
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.testimonial-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-smooth);
}

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

.quote-stars {
  color: var(--gold-primary);
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(226, 183, 116, 0.2);
  border: 1px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.author-meta h5 {
  font-size: 0.9rem;
  color: var(--text-light);
}

.author-meta p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* ==========================================================================
   VIP BOOKING STUDIO / CONTACT FORM
   ========================================================================== */

.booking-section {
  padding: 110px 0;
  position: relative;
  background: radial-gradient(circle at 50% 100%, #171d29 0%, var(--bg-primary) 80%);
}

.booking-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 60px);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

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

.form-group-full {
  grid-column: span 2;
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(226, 183, 116, 0.04);
  box-shadow: 0 0 0 3px var(--gold-glow);
  outline: none;
}

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

.form-submit-row {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

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

/* Form Success Notification State */
.form-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 70px;
  height: 70px;
  background: rgba(62, 207, 142, 0.15);
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  color: var(--accent-green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.form-success-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 24px;
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */

.video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.video-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: scale(0.92);
  transition: transform var(--transition-smooth);
}

.video-modal-backdrop.open .video-modal-container {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
}

.video-modal-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.video-modal-iframe-box {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect */
  height: 0;
  background: #000;
}

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

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

.site-footer {
  background: #06080b;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--gold-primary);
  color: #0b0d11;
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

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

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .spotlight-display {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .estimator-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-floating-badge {
    right: 10px;
    bottom: 10px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .top-ticker {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-gold);
    gap: 20px;
    transform: translateY(-120%);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions .btn-sm {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

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

  .form-submit-row {
    grid-column: span 1;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
