/* ==========================================================================
   KARMAA WEDDING PRODUCTIONS - SEQUENTIAL LINE-BY-LINE FOMO HERO DESIGN
   ========================================================================== */

:root {
  --bg-main: #ffffff;
  --bg-soft: #faf9f6;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfaf5;
  --black-primary: #0a0a0a;
  --black-secondary: #1a1a1a;
  --gold-primary: #c59b27;
  --gold-light: #dfb84c;
  --gold-dark: #987515;
  --rose-accent: #d48b7b;
  --text-main: #111111;
  --text-muted: #333333;
  --border-gold: rgba(197, 155, 39, 0.3);
  --border-glass: rgba(0, 0, 0, 0.08);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-main);
}

/* Background Ambient Lighting */
.ambient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 15% 20%, rgba(197, 155, 39, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(212, 139, 123, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography Utilities */
.font-serif { font-family: var(--font-serif); }
.font-mono { font-family: monospace; letter-spacing: 0.15em; }

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-icon {
  color: var(--gold-primary);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  padding: 16px 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, padding 0.3s ease;
  will-change: transform;
  transform: translateY(0);
}

.site-header.header-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black-primary);
}

.header-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(197, 155, 39, 0.4));
  transition: transform 0.3s ease;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(197, 155, 39, 0.4));
  transition: transform 0.3s ease;
}

.brand-logo:hover .header-logo-img {
  transform: scale(1.08);
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--black-primary);
}

.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

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

.btn-header-gold {
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-header-gold:hover {
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.4);
  transform: translateY(-1px);
}

.btn-text-compact {
  display: none;
}

.btn-text-full {
  display: inline;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black-primary);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-phone-link:hover {
  background: rgba(197, 155, 39, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

@media (max-width: 576px) {
  .header-phone-link {
    padding: 5px 8px;
    font-size: 0.65rem;
  }
  .header-phone-text {
    display: none;
  }
}

/* Universal — strip underline from ALL anchor-based buttons */
a.btn-hero-black-solid,
a.btn-hero-white-outline,
a.btn-header-gold,
a.scroll-explore-btn,
a[class*="btn-"] {
  text-decoration: none;
}

/* HERO SECTION (SEQUENTIAL LINE-BY-LINE FOMO READING EXPERIENCE) */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 130px 24px 80px;
  overflow: hidden;
  background-color: var(--bg-main);
}

/* 4 Vertical Portrait Video Columns */
.hero-video-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 1;
}

.video-column {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: lineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.video-column.col-1 { animation-delay: 0.1s; }
.video-column.col-2 { animation-delay: 0.4s; }
.video-column.col-3 { animation-delay: 0.7s; }
.video-column.col-4 { animation-delay: 1.0s; }

@keyframes lineReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.portrait-video.bright-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.15) saturate(1.15);
  transition: transform 1.2s ease, filter 0.6s ease;
}

/* Centered Text Halo Overlay (High Contrast Desktop Vignette for Crisp Text Readability) */
.hero-light-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.64) 45%, rgba(255, 255, 255, 0.2) 80%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.8s ease;
}

/* HERO DYNAMIC CONTENT CONTAINER & SLIDE TRANSITIONS */
.hero-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  pointer-events: none;
}

.hero-slide.active {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Line-by-Line Animations inside Active Slide */
.hero-slide.active .hero-line {
  opacity: 0;
  transform: translateY(12px);
  animation: slideLineFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-slide.active .line-1 { animation-delay: 0.1s; }
.hero-slide.active .line-2 { animation-delay: 0.25s; }
.hero-slide.active .line-3 { animation-delay: 0.4s; }
.hero-slide.active .line-4 { animation-delay: 0.55s; }

@keyframes slideLineFadeUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide Dots Navigation */
.hero-slide-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
}

.slide-dot.active {
  width: 28px;
  border-radius: 12px;
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.4);
}

/* Line 1: Atelier Badge (Clean Floating Text - No Box, No Emojis) */
.hero-badge-clean {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 2px 0;
}

/* Line 2: Headline Serif Title */
.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-primary);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 0 24px rgba(255, 255, 255, 0.85);
  padding: 4px 0;
  margin: 0;
}

/* Line 3: Calligraphy Script Line */
.script-gold-accent {
  font-family: var(--font-script);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 400;
  display: block;
  background: linear-gradient(135deg, #8a650a 0%, #b88a1b 40%, #dcae3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  padding: 4px 10px;
  margin: 2px 0;
  overflow: visible;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.9));
}

/* Line 4: Story Subtitle */
.hero-subtitle {
  font-size: 0.98rem;
  color: var(--black-primary);
  max-width: 660px;
  margin: 4px auto 0;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.95), 0 0 16px rgba(255, 255, 255, 0.85);
}

/* Line 5: CTA Group */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.btn-hero-black-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  border: 1px solid var(--black-primary);
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-hero-black-solid:hover {
  transform: translateY(-2px);
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.3);
}

.btn-hero-white-outline {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--black-primary);
  color: var(--black-primary);
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-hero-white-outline:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

/* HERO BOTTOM BAR */
.hero-bottom-bar {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.scroll-explore-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--black-primary);
  transition: color 0.3s ease;
  font-weight: 700;
}

.scroll-explore-btn:hover {
  color: var(--gold-primary);
}

.arrow-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--black-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-primary);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-explore-btn:hover .arrow-circle {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.scroll-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.sound-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--black-primary);
  padding: 6px 16px;
  border-radius: 20px;
  color: var(--black-primary);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sound-toggle-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

/* MARQUEE SECTION */
.marquee-wrapper {
  background: var(--bg-soft);
  border-y: 1px solid var(--border-gold);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: 200%;
  animation: marquee var(--marquee-dur, 28s) linear infinite;
  animation-direction: var(--marquee-dir, normal);
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--black-primary);
  font-family: var(--font-serif);
  font-weight: 600;
}

.marquee-divider {
  color: var(--gold-primary);
  font-weight: 700;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION CONTAINERS */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  color: var(--gold-dark);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black-primary);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
}

/* HIGH-FASHION EDITORIAL ATELIER SHOWCASE SECTION (NO BOX CONTAINERS) */
.atelier-editorial-section {
  padding: 60px 0 20px;
  background: transparent;
  position: relative;
  border: none;
}

.editorial-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.editorial-top-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}

.editorial-sec-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  color: var(--black-primary);
  margin-top: 12px;
  line-height: 1.2;
}

.editorial-sec-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.editorial-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.editorial-grid-layout.service-block {
  margin-bottom: 36px;
}

.editorial-grid-layout.service-block:last-child {
  margin-bottom: 0;
}

.editorial-section-divider {
  width: 100%;
  max-width: 1000px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-gold) 50%, transparent 100%);
  margin: 36px auto;
  opacity: 0.7;
}

/* LEFT SIDE: FREELY FLOATING PORTRAIT VIDEO (NO BOX CONTAINER) */
.editorial-video-frame {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.free-portrait-video {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  display: block;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  border: none;
  background: var(--black-primary);
}

/* SERVICE 4: 35MM PHOTO SLIDESHOW (ONE BY ONE TRANSITION) */
.film-slideshow-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  background: var(--black-primary);
}

.film-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease;
  transform: scale(1.05);
}

.film-slide.active {
  opacity: 1;
  transform: scale(1);
}

.film-slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.f-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.f-dot.active {
  background: var(--gold-primary);
  width: 20px;
  border-radius: 10px;
}

/* RIGHT SIDE: ELEGANT COUTURE TYPOGRAPHY */
.editorial-typography-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.editorial-badge {
  margin-bottom: 2px;
}

.editorial-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: var(--black-primary);
  line-height: 1.2;
  margin: 4px 0 0;
}

.editorial-script-line {
  margin: 2px 0 6px;
}

.editorial-body-text {
  font-size: 1rem;
  color: #444444;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 8px;
}

/* TWO-COLUMN EDITORIAL CONTRAST PARADIGM */
.editorial-contrast-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin: 16px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  width: 100%;
}

.contrast-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contrast-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}

.bad-col .contrast-col-title {
  color: #994444;
}

.good-col .contrast-col-title {
  color: var(--gold-dark);
}

.contrast-col-desc {
  font-size: 0.88rem;
  color: var(--black-primary);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}

.contrast-divider-line {
  width: 1px;
  background: var(--border-gold);
  height: 100%;
  opacity: 0.6;
}

.editorial-features-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 6px 0 16px;
  flex-wrap: wrap;
}

.bar-sep {
  color: rgba(0, 0, 0, 0.25);
}

.editorial-action-row {
  display: flex;
  margin-top: 4px;
}

.concept-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.concept-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(197, 155, 39, 0.15);
}

.concept-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.concept-content {
  padding: 24px;
}

.card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--black-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* SOUND & VIBE STUDIO MIXER */
.vibe-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.vibe-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.vibe-card.active, .vibe-card:hover {
  background: rgba(197, 155, 39, 0.06);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(197, 155, 39, 0.12);
}

.vibe-icon {
  margin-bottom: 16px;
}

.vibe-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--black-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.vibe-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.studio-console-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.console-title {
  display: flex;
  flex-direction: column;
}

#active-vibe-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--black-primary);
  font-weight: 600;
}

.console-status {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.btn-console-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
}

.btn-console-play:hover {
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.4);
}

#studio-spectrum-canvas {
  width: 100%;
  height: 100px;
  display: block;
  background: var(--bg-soft);
  border-radius: 12px;
}

/* VISUAL GALLERY GRID */
.visual-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  grid-column: span 4;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.gallery-item.item-large {
  grid-column: span 8;
  grid-row: span 2;
}

.gallery-item.item-wide {
  grid-column: span 8;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  font-weight: 600;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 500;
}

/* PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--black-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* KEEPSAKES GRID */
.keepsakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.keepsakes-two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* PORTRAIT VIDEO ROW — KEEPSAKES */
.keepsakes-portrait-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.keepsake-portrait-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.keepsake-portrait-video {
  width: 340px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  display: block;
}

.keepsake-portrait-label {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.keepsake-label-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black-primary);
  letter-spacing: 0.01em;
}

.keepsake-label-desc {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.keepsake-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.keepsake-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.keepsake-video-frame {
  position: relative;
  overflow: hidden;
}

.keepsake-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.keepsake-content {
  padding: 24px;
}

.keepsake-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--black-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.keepsake-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* INQUIRY WIZARD BACKGROUND IMAGE */
.inquiry-bg-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.inquiry-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 0;
}

.inquiry-bg-section > * {
  position: relative;
  z-index: 1;
}

.inquiry-bg-section .section-tag {
  color: var(--gold-light);
}

.inquiry-bg-section .section-title,
.inquiry-bg-section .section-desc {
  color: #ffffff;
}

/* INQUIRY WIZARD BOX */
.wizard-box {
  background: rgba(10, 8, 5, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}


.wizard-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 600;
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.option-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-card.active, .option-card:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.opt-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: #ffffff;
}

.opt-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.form-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.input-field label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.input-field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 16px;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-sans);
  outline: none;
}

.input-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-field input:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.14);
}

.wizard-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-wizard-prev {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-wizard-prev:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(197, 155, 39, 0.12);
}

.btn-wizard-next, .btn-wizard-submit {
  background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
  color: #ffffff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.wizard-success-card {
  text-align: center;
  padding: 40px 20px;
}

.wizard-success-card h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 16px 0 8px;
  color: var(--black-primary);
}

/* FOOTER */
.site-footer {
  background: var(--black-primary);
  color: #ffffff;
  border-top: 1px solid var(--border-gold);
  padding: 60px 24px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-name {
  color: #ffffff;
}

.footer-motto {
  font-size: 0.85rem;
  color: #999999;
  margin-top: 12px;
}

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

.footer-links a {
  text-decoration: none;
  color: #cccccc;
  font-size: 0.88rem;
  transition: color 0.3s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: #cccccc;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #ffffff;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: var(--gold-light);
}

/* FOOTER SEO DIRECTORY */
.footer-seo-directory {
  max-width: 1200px;
  margin: 40px auto 30px;
  padding-top: 30px;
  border-top: 1px dashed rgba(212, 175, 55, 0.25);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.seo-dir-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-dir-title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding-bottom: 6px;
}

.seo-dir-link {
  font-size: 0.76rem;
  color: #888888;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.25s ease, transform 0.2s ease;
  display: inline-block;
}

.seo-dir-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.78rem;
  color: #888888;
}

/* INTEGRATED HEADER SOUND WAVE BUTTON (OPTION 1) */
.header-sound-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50px;
  padding: 6px 14px;
  color: #cccccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  outline: none;
  white-space: nowrap;
}

.header-sound-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: #ffffff;
}

.header-sound-btn.playing {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
}

/* ==========================================================================
   MASTER MOBILE-FIRST & RESPONSIVE ENGINE (320px - 992px)
   ========================================================================== */

/* 1. TABLETS & SMALL LAPTOPS (max-width: 992px) */
@media (max-width: 992px) {
  .header-container {
    padding: 0 20px;
  }
  
  .hero-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-container {
    padding: 0 20px;
  }

  .editorial-grid-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .editorial-typography-content {
    align-items: center;
    text-align: center;
  }

  .editorial-body-text {
    text-align: center;
  }

  .editorial-action-row {
    justify-content: center;
  }

  .editorial-features-bar {
    justify-content: center;
  }

  .visual-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
  }

  .gallery-item, 
  .gallery-item.item-large, 
  .gallery-item.item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .keepsakes-portrait-row {
    gap: 32px;
  }

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

/* 2. MOBILE LANDSCAPE & TABLETS PORTRAIT (max-width: 768px) */
@media (max-width: 768px) {
  .section-container {
    padding: 60px 16px;
  }

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

  .main-nav {
    display: none;
  }

  .site-header {
    width: 100vw;
    max-width: 100vw;
  }

  .header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .brand-logo {
    z-index: 2;
    gap: 8px;
    flex-shrink: 1;
  }

  .brand-name {
    font-size: 0.98rem;
    letter-spacing: 0.1em;
  }

  .brand-tag {
    font-size: 0.48rem;
    letter-spacing: 0.14em;
  }

  .header-sound-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 5px 11px;
    font-size: 0.65rem;
    border-radius: 50px;
    white-space: nowrap;
    gap: 4px;
    height: 28px;
    margin: 0;
  }

  .header-actions {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
  }

  .btn-header-gold {
    padding: 5px 12px;
    font-size: 0.68rem;
    border-radius: 50px;
    white-space: nowrap;
    height: 28px;
    box-sizing: border-box;
  }

  .hero-slider-track {
    height: auto !important;
    min-height: auto !important;
    padding: 0;
    position: relative;
    display: block;
    width: 100%;
  }

  .hero-slide,
  .hero-slide.active {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .hero-slide:not(.active) {
    display: none !important;
  }

  .hero-light-vignette {
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.12) 65%, transparent 100%);
  }

  .editorial-features-bar {
    flex-direction: column;
    gap: 8px;
  }

  .bar-sep {
    display: none;
  }

  .editorial-contrast-columns {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .contrast-divider-line {
    display: none;
  }

  .vibe-selector-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 20px;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-seo-directory {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    padding: 24px 16px 0;
  }
}

/* 3. SMARTPHONES PORTRAIT (max-width: 576px) */
@media (max-width: 576px) {
  .footer-seo-directory {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-container {
    padding: 0 12px;
  }

  .brand-logo {
    gap: 6px;
  }

  .brand-logo svg {
    width: 18px;
    height: 18px;
  }

  .brand-name {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
  }

  .brand-tag {
    font-size: 0.42rem;
    letter-spacing: 0.08em;
  }

  .header-sound-btn {
    padding: 3px 8px;
    font-size: 0.58rem;
    gap: 3px;
    height: 24px;
  }

  .btn-header-gold {
    padding: 4px 10px;
    font-size: 0.62rem;
    border-radius: 50px;
    white-space: nowrap;
    height: 24px;
    letter-spacing: 0.01em;
  }

  .btn-text-full {
    display: none;
  }

  .btn-text-compact {
    display: inline;
  }

  .hero-section {
    padding: 100px 14px 70px;
    min-height: 100vh;
  }

  .hero-video-grid {
    grid-template-columns: 1fr;
    opacity: 0.25;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 8px auto 18px;
    padding: 0 8px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: stretch;
    margin-top: 16px;
  }

  .btn-hero-black-solid,
  .btn-hero-white-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .hero-bottom-bar {
    padding: 0 16px;
    bottom: 16px;
  }

  .scroll-text {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .visual-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
    gap: 14px;
  }

  .gallery-item,
  .gallery-item.item-large,
  .gallery-item.item-wide {
    grid-column: span 1;
  }

  .query-services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .query-service-chip {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  .simple-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wizard-box.simple-form-box {
    padding: 24px 16px;
    border-radius: 16px;
  }

  /* Prevent iOS automatic input zoom on tap */
  .input-field input,
  .input-field textarea {
    font-size: 16px !important;
  }

  .free-portrait-video,
  .film-slideshow-frame {
    max-width: 100%;
    border-radius: 16px;
  }
}

/* 4. EXTRA SMALL MOBILE SCREENS (max-width: 380px) */
@media (max-width: 380px) {
  .header-container {
    padding: 0 8px;
  }

  .brand-logo svg {
    width: 15px;
    height: 15px;
  }

  .brand-name {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  .brand-tag {
    display: none;
  }

  .header-sound-btn {
    padding: 2px 6px;
    font-size: 0.54rem;
    gap: 2px;
    height: 22px;
  }

  .btn-header-gold {
    padding: 3px 8px;
    font-size: 0.58rem;
    height: 22px;
  }

  .section-container {
    padding: 44px 12px;
  }
}

/* ==========================================================================
   SCROLL REVEAL — WORD-BY-WORD CURTAIN ENGINE
   ========================================================================== */

/* Word outer — clips the word so it appears to rise from below */
.wo {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.12em;
  line-height: 1.15;
}

/* Word inner — starts hidden below, rises up */
.wi {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition:
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
  will-change: transform, opacity;
}

/* Triggered state — word rises into place */
[data-sr="words"].sr-on .wi {
  transform: translateY(0);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   FADE-UP — supporting elements (badges, body text, features, buttons)
   -------------------------------------------------------------------------- */
.sr-fade {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.sr-fade.sr-on {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   SLIDE-IN — video / media frames
   -------------------------------------------------------------------------- */
.sr-slide-left {
  opacity: 0;
  transform: translateX(-48px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.sr-slide-left.sr-on {
  opacity: 1;
  transform: translateX(0);
}

.sr-slide-right {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.sr-slide-right.sr-on {
  opacity: 1;
  transform: translateX(0);
}

/* --------------------------------------------------------------------------
   DIVIDER LINE — scales in from left
   -------------------------------------------------------------------------- */
.sr-line {
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition:
    opacity 0.6s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-line.sr-on {
  opacity: 1;
  transform: scaleX(1);
}

/* ==========================================================================
   BIDIRECTIONAL SCROLL INTERACTION LAYER
   ========================================================================== */

/* GOLD PROGRESS BAR — fixed right edge */
#scroll-progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  width: 2.5px;
  height: 0%;
  background: linear-gradient(
    to bottom,
    var(--gold-light),
    var(--gold-primary),
    var(--gold-dark)
  );
  z-index: 9999;
  box-shadow: 0 0 10px rgba(197, 155, 39, 0.6), 0 0 24px rgba(197, 155, 39, 0.2);
  pointer-events: none;
  transition: height 0.08s linear;
}

/* SPOTLIGHT — smooth scale on video/slideshow elements */
.editorial-video-frame video,
.editorial-video-frame .film-slideshow-frame {
  transition:
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.25s ease;
  transform-origin: center center;
}

/* PARALLAX wrapper — prevent overflow clip */
.editorial-video-frame {
  overflow: visible !important;
}

/* ==========================================================================
   STEP 4 — QUERY CHIPS & TEXTAREA
   ========================================================================== */

.query-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 24px;
}

.query-service-chip {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.query-service-chip:hover {
  border-color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.query-service-chip.chip-selected {
  background: rgba(197, 155, 39, 0.22);
  border-color: var(--gold-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(197, 155, 39, 0.3);
}

.query-textarea-field {
  margin-bottom: 20px;
}

.input-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 16px;
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
  line-height: 1.6;
}

.input-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.input-field textarea:focus {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   SIMPLE INQUIRY FORM
   ========================================================================== */

.simple-form-box {
  max-width: 760px;
  margin: 0 auto;
}

.simple-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.simple-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.label-optional {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
}

.btn-simple-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(197, 155, 39, 0.35);
}

.btn-simple-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 155, 39, 0.5);
}

@media (max-width: 640px) {
  .simple-form-row {
    grid-template-columns: 1fr;
  }
}
