/* 
  =========================================
  WEDDUXE — Premium Brand Design System
  =========================================
*/

:root {
  /* Brand Colors from Guidelines */
  --plum: #361C3B;
  --plum-dark: #1E0D22;
  --plum-mid: #2A1530;
  --ivory: #E8E2CD;
  --ivory-dim: #C9C2AC;
  --gold: #BCA371;
  --gold-light: #D4BA8A;
  --gold-dark: #8A7050;

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.25s ease;
  --shadow-premium: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.2);

  /* Premium Glass Variables */
  --glass-bg: rgba(42, 21, 48, 0.45);
  --glass-bg-hover: rgba(54, 28, 59, 0.6);
  --glass-border: rgba(188, 163, 113, 0.15);
  --glass-border-hover: rgba(188, 163, 113, 0.4);
  --glass-blur: blur(12px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--plum-dark);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── CINEMATIC GRAIN OVERLAY — hero section only ── */
#grain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.045;
  mix-blend-mode: screen;
}

/* ── GLASSMORPHISM BACKDROP GLOW ORBS ── */
.glass-bg-glows {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.16;
  mix-blend-mode: screen;
  animation: float-glow 25s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--gold) 0%, rgba(54, 28, 59, 0) 70%);
  animation-duration: 28s;
}

.orb-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--plum) 0%, rgba(30, 13, 34, 0) 70%);
  animation-duration: 35s;
}

.orb-3 {
  top: 40%;
  left: 30%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--gold-dark) 0%, rgba(54, 28, 59, 0) 70%);
  animation-duration: 22s;
}

@keyframes float-glow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(6vw, 6vh) scale(1.08);
  }
  100% {
    transform: translate(-4vw, -3vh) scale(0.95);
  }
}

/* ── NAVIGATION BAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 5%;
  padding-left: max(5%, env(safe-area-inset-left));
  padding-right: max(5%, env(safe-area-inset-right));
  transition: var(--transition-smooth);
}

nav.scrolled {
  background: rgba(30, 13, 34, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.1rem 5%;
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--ivory);
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo:hover {
  opacity: 0.9;
  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

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

.nav-links a:hover::after, 
.nav-links a.active::after {
  width: 70%;
}

.nav-cta {
  font-family: var(--ff-body);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  background: var(--gold);
  color: var(--plum-dark);
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
  font-weight: 700;
  border: 1px solid var(--gold);
}

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

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  display: block;
}

.hamburger:hover span {
  background: var(--gold);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile navigation menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 8, 22, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
}

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

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--gold);
  transform: scale(1.05);
}

.mobile-close {
  position: absolute;
  top: 1.8rem;
  right: 5%;
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
  color: var(--ivory);
  cursor: pointer;
  background: rgba(188, 163, 113, 0.1);
  border: 1px solid rgba(188, 163, 113, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-close:hover {
  background: var(--gold);
  color: var(--plum-dark);
  border-color: var(--gold);
}

/* ── UTILITIES & COMMON BUTTONS ── */
section {
  padding: 7.5rem 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.gold-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem auto;
}

.gold-line.left {
  margin-left: 0;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
}

/* Scroll reveal class animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.1rem 2.8rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: var(--transition-smooth);
  font-weight: 600;
  border-radius: 2px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--plum-dark);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(188, 163, 113, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(232, 226, 205, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(188, 163, 113, 0.04);
  transform: translateY(-3px);
}

/* ── HERO SECTION ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 100svh; /* Safari/Android mobile viewport address bar fix */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}

#heroBgVideo iframe {
  pointer-events: none;
}

.hero-video-poster {
  position: absolute;
  inset: 0;
  background: var(--plum-dark); /* Show normal brand color while loading */
  z-index: 2; /* Cover the video player while loading */
  transition: opacity 0.4s ease; /* Smooth fade when loaded */
}

.hero-video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

#heroBgVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  pointer-events: none;
  z-index: 1; /* Keep video at the bottom of the stack */
  opacity: 0; /* Hidden by default — hides YouTube buffering spinner */
  transition: opacity 0.4s ease; /* Smooth fade in when video starts playing */
}

#heroBgVideo.ready {
  opacity: 1; /* Reveal only when video is actually playing */
}

#heroBgVideo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3; /* Dark overlay above poster and video */
  background: linear-gradient(
    to bottom,
    rgba(30, 13, 34, 0.6) 0%,
    rgba(30, 13, 34, 0.35) 50%,
    rgba(30, 13, 34, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5; /* Text and buttons above grain canvas (z-index 4) */
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 0.3rem;
  animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s both;
}

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

.hero-tagline {
  margin: 1.8rem auto 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ivory-dim);
  letter-spacing: 0.04em;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.9s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 5; /* Keep scroll link on top */
  animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.scroll-line {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
  animation: pulse 2s ease infinite;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: rgba(42, 21, 48, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 3.5rem;
  border-right: 1px solid rgba(188, 163, 113, 0.12);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 0.6rem;
  font-weight: 400;
}

/* ── QUOTE BAND — SLIDING QUOTES ── */
#quote-band {
  background: rgba(54, 28, 59, 0.40);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 3rem 5% 2.8rem;
  text-align: center;
  overflow: hidden;
}

.quote-band-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-slider {
  position: relative;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(-80px) scale(0.98);
  transition: opacity 1.1s cubic-bezier(0.25, 1, 0.5, 1), transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.quote-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.quote-slide.exiting {
  opacity: 0;
  transform: translateX(80px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.quote-band-text {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.quote-band-text em {
  color: var(--gold);
  font-style: normal;
}

.quote-band-sub {
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.85;
}

.quote-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.quote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(188, 163, 113, 0.25);
  transition: var(--transition-fast);
  cursor: pointer;
}

.quote-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── ABOUT SECTION ── */
#about {
  background: var(--plum-dark);
}

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

.about-visual {
  position: relative;
}

.about-frame {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 640px;
  margin: 0 auto;
  background: var(--plum-mid);
  border: 1px solid rgba(188, 163, 113, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.about-frame::before,
.about-frame::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: var(--gold);
  border-style: solid;
  z-index: 2;
  opacity: 0.6;
}

.about-frame::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.about-frame::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.about-frame-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-frame-corner-tl,
.about-frame-corner-br {
  display: none; /* Decorative corners handled by ::before/::after pseudo-elements */
}
.about-video-player-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #000;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: auto;
}

.about-video-player-container.active {
  opacity: 1;
}

.about-video-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Corner Mute/Unmute Control */
.about-mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(188, 163, 113, 0.4);
  background: rgba(30, 13, 34, 0.75);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: var(--transition-smooth);
}

.about-mute-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--plum-dark);
  transform: scale(1.08);
}

.about-mute-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.about-frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(30, 13, 34, 0.75) 0%, transparent 60%);
  pointer-events: none;
}

.about-frame-play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.about-frame-play:hover {
  background: rgba(30, 13, 34, 0.2);
}

.about-frame-play-btn {
  width: 68px;
  height: 68px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  background: rgba(30, 13, 34, 0.65);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.about-frame-play:hover .about-frame-play-btn {
  transform: scale(1.15);
  background: var(--gold);
  border-color: var(--gold);
}

.about-frame-play:hover .about-frame-play-btn svg path {
  fill: var(--plum-dark);
}

.about-frame-caption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 450;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--ivory);
}

.about-text h2 em {
  color: var(--gold);
  font-style: italic;
}

.about-text p {
  color: var(--ivory-dim);
  line-height: 2;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}

.about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

.pillar {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(188, 163, 113, 0.3);
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  background: rgba(188, 163, 113, 0.02);
  transition: var(--transition-fast);
}

.pillar:hover {
  background: rgba(188, 163, 113, 0.08);
  border-color: var(--gold);
}

/* ── PORTFOLIO GRID & TABS ── */
#portfolio {
  background: var(--plum-mid);
}

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

.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.portfolio-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
}

.portfolio-heading em {
  color: var(--gold);
  font-style: italic;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(188, 163, 113, 0.18);
  width: 100%;
}

.portfolio-tab {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.2rem 2.5rem;
  cursor: pointer;
  background: transparent;
  color: var(--ivory-dim);
  border: none;
  transition: var(--transition-fast);
  font-weight: 600;
  position: relative;
}

.portfolio-tab:hover {
  color: var(--ivory);
}

.portfolio-tab.active {
  color: var(--gold);
}

.portfolio-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.35s ease, right 0.35s ease;
}

.portfolio-tab.active::after {
  left: 0;
  right: 0;
}

#yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.yt-card {
  background: rgba(30, 13, 34, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.yt-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.yt-card-category {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.6rem 1.2rem;
  background: rgba(188, 163, 113, 0.06);
  border-bottom: 1px solid rgba(188, 163, 113, 0.1);
  font-weight: 600;
}

/* Category badge overlaid on thumbnail */
.yt-category-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-dark);
  background: var(--gold);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  z-index: 3;
  pointer-events: none;
}

.yt-thumb {

  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 13, 34, 0.3);
  transition: var(--transition-fast);
}

.yt-thumb:hover .yt-play {
  background: rgba(30, 13, 34, 0.15);
}

.yt-play-btn {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(188, 163, 113, 0.35);
}

.yt-thumb:hover .yt-play-btn {
  transform: scale(1.15);
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(188, 163, 113, 0.5);
}

.yt-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--plum-dark);
  margin-left: 3px;
  transition: var(--transition-fast);
}

.yt-info {
  padding: 1.6rem;
}

.yt-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  line-height: 1.45;
}

.yt-date {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

/* Empty portfolio and loaders */
.yt-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
  color: var(--ivory-dim);
}

.yt-empty p {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}

.yt-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.yt-loading .spinner {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(188, 163, 113, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.2rem;
}

/* Modal styling */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 4, 14, 0.96);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.video-modal.open {
  display: flex;
}

.modal-inner {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  border: 1px solid rgba(188, 163, 113, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.modal-inner iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.modal-close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  font-size: 0.9rem;
  color: var(--ivory-dim);
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: 0.15em;
  font-family: var(--ff-body);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--gold);
}

.portfolio-social {
  text-align: center;
  margin-top: 4.5rem;
}

.portfolio-social p {
  color: var(--ivory-dim);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(188, 163, 113, 0.3);
  padding: 0.85rem 2rem;
  transition: var(--transition-smooth);
  font-weight: 600;
  background: rgba(188, 163, 113, 0.01);
}

.social-link:hover {
  background: var(--gold);
  color: var(--plum-dark);
}

.social-link:hover svg {
  fill: var(--plum-dark);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: var(--transition-fast);
}

/* ── WHY CHOOSE US SECTION ── */
#why {
  background: var(--plum-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 4rem;
}

.why-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  padding: 3rem 2.2rem;
  text-align: center;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.why-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-subtle);
  background: var(--glass-bg-hover);
}

.why-icon {
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(188, 163, 113, 0.08);
  border: 1px solid rgba(188, 163, 113, 0.15);
  transition: var(--transition-fast);
}

.why-card:hover .why-icon {
  background: rgba(188, 163, 113, 0.15);
  border-color: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.why-card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.9rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--ivory-dim);
  line-height: 1.85;
}

/* ── TESTIMONIALS SECTION ── */
#testimonials {
  background: var(--plum-dark);
}

.testimonials-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonials-header-row .section-header {
  text-align: left;
  margin-bottom: 0;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2.2rem;
  border: 1px solid rgba(188, 163, 113, 0.2);
  background: rgba(42, 21, 48, 0.6);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
  box-shadow: var(--shadow-subtle);
}

.rating-score {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.rating-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rating-stars {
  color: #FBBC05;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.rating-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 500;
}

/* ── TESTIMONIALS SLIDER ── */
.testimonials-slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.testimonials-track-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-slider-container .slider-btn {
  background: rgba(188, 163, 113, 0.08);
  border: 1px solid rgba(188, 163, 113, 0.25);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.testimonials-slider-container .slider-btn:hover {
  background: var(--gold);
  color: var(--plum-dark);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(188, 163, 113, 0.25);
}

.testimonials-slider-container .slider-btn svg {
  width: 22px;
  height: 22px;
}

.testimonial-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 480px;
  max-width: 90%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 2.5rem 2.2rem;
  border: 1px solid var(--glass-border);
  border-top: 2px solid rgba(188, 163, 113, 0.35);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s step-end;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.78);
  z-index: 1;
  text-align: center;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.0);
  z-index: 3;
  box-shadow: var(--shadow-premium);
  border-color: rgba(188, 163, 113, 0.35);
}

.testimonial-card.prev-card {
  opacity: 0.35;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(-360px) scale(0.82);
  z-index: 2;
  cursor: pointer;
}

.testimonial-card.next-card {
  opacity: 0.35;
  pointer-events: auto;
  transform: translate(-50%, -50%) translateX(360px) scale(0.82);
  z-index: 2;
  cursor: pointer;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.6rem;
  right: 1.5rem;
  font-family: var(--ff-display);
  font-size: 4.5rem;
  color: rgba(188, 163, 113, 0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonials-dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonials-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(188, 163, 113, 0.25);
  transition: var(--transition-fast);
  cursor: pointer;
}

.testimonials-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.review-stars {
  color: #FBBC05;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--ivory-dim);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.review-divider {
  width: 35px;
  height: 1px;
  background: rgba(188, 163, 113, 0.25);
  margin: 0 auto 1.5rem;
}

.review-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum-dark);
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviewer-info strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 400;
}

.reviewer-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.review-date {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(188, 163, 113, 0.35);
  margin-top: 0.3rem;
}

/* ── SERVICES PAGE HERO & LAYOUTS ── */
.page-hero {
  padding: 12rem 5% 6rem;
  text-align: center;
  background: linear-gradient(160deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-dark) 100%);
  border-bottom: 1px solid rgba(188, 163, 113, 0.15);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'HELLO';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: 14vw;
  font-weight: 300;
  color: rgba(188, 163, 113, 0.03);
  letter-spacing: 0.18em;
  white-space: nowrap;
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero p {
  margin: 1.6rem auto 0;
  max-width: 580px;
  color: var(--ivory-dim);
  line-height: 1.95;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.services-section {
  padding: 7rem 5%;
}

.services-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-card-main {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card-main:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-subtle);
}

.service-card-main::before {
  content: attr(data-number);
  position: absolute;
  top: -0.6rem;
  right: 1.5rem;
  font-family: var(--ff-display);
  font-size: 5.5rem;
  font-weight: 300;
  color: rgba(188, 163, 113, 0.06);
  line-height: 1;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(188, 163, 113, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(188, 163, 113, 0.05);
  transition: var(--transition-fast);
}

.service-card-main:hover .service-icon-wrap {
  border-color: var(--gold);
  background: rgba(188, 163, 113, 0.12);
}

.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.service-card-main h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.service-card-main p {
  font-size: 1rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  max-width: 95%;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  font-size: 0.92rem;
  color: var(--ivory-dim);
  line-height: 1.7;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(188, 163, 113, 0.08);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* Add-ons Section */
.addons-section {
  padding: 6rem 5%;
  background: rgba(42, 21, 48, 0.4);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: 1200px;
  margin: 4rem auto 0;
}

.addon-card {
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: var(--transition-smooth);
  background: rgba(30, 13, 34, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.addon-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-subtle);
}

.addon-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(188, 163, 113, 0.06);
  border: 1px solid rgba(188, 163, 113, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition-fast);
}

.addon-card:hover .addon-icon {
  background: rgba(188, 163, 113, 0.12);
  border-color: var(--gold);
}

.addon-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.addon-card h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.addon-card p {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

/* Process Timeline Section */
.process-section {
  padding: 7.5rem 5%;
  background: var(--plum-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  max-width: 1100px;
  margin: 4.5rem auto 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(188, 163, 113, 0.25);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--gold);
  background: var(--plum-dark);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--plum-dark);
  box-shadow: 0 0 0 8px rgba(188, 163, 113, 0.12), 0 0 24px rgba(188, 163, 113, 0.3);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  transition: var(--transition-fast);
}

.process-step:hover h4 {
  color: var(--gold);
}

.process-step p {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ── CONTACT PAGE HERO & FORM ── */
.quick-contact {
  padding: 4.5rem 5%;
  background: var(--plum-mid);
}

.quick-contact-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quick-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--glass-border);
  background: rgba(30, 13, 34, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: block;
}

.quick-card:hover {
  border-color: var(--gold);
  background: var(--glass-bg-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-subtle);
}

.quick-icon {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  transition: var(--transition-fast);
}

.quick-card:hover .quick-icon svg {
  transform: scale(1.1);
  stroke: var(--gold-light);
}

.quick-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.quick-card p {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  line-height: 1.6;
}

.quick-card .quick-value {
  font-size: 0.95rem;
  color: var(--gold);
  margin-top: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.contact-section {
  padding: 7rem 5%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.contact-info h2 em {
  color: var(--gold);
  font-style: italic;
}

.contact-info > p {
  color: var(--ivory-dim);
  line-height: 1.95;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(188, 163, 113, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(188, 163, 113, 0.04);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.info-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.info-text a, 
.info-text span {
  color: var(--ivory);
  text-decoration: none;
  font-size: 1rem;
  display: block;
  transition: var(--transition-fast);
}

.info-text a:hover {
  color: var(--gold);
}

.info-text .sub {
  font-size: 0.78rem;
  color: var(--ivory-dim);
  margin-top: 0.3rem;
}



/* Contact Form Wrap */
.contact-form-wrap {
  background: rgba(42, 21, 48, 0.55);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 3.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}

.form-title {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.form-subtitle {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  margin-bottom: 2.2rem;
  letter-spacing: 0.05em;
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(30, 13, 34, 0.75);
  border: 1px solid rgba(188, 163, 113, 0.18);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 1rem 1.2rem;
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(188, 163, 113, 0.12);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
  color: rgba(201, 194, 172, 0.35);
}

.form-group select option {
  background: var(--plum-dark);
}

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

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

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--gold);
  color: var(--plum-dark);
  border: 1px solid var(--gold);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
}

.form-submit:hover {
  background: transparent;
  color: var(--gold);
}

.form-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--plum-dark);
  transition: var(--transition-fast);
}

.form-submit:hover svg {
  fill: var(--gold);
}

.form-note {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--ivory-dim);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3.5rem;
}

.form-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.form-success h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--ivory-dim);
  line-height: 1.85;
}

/* ── CTA SECTION (Services Page) ── */
.cta-section {
  padding: 6.5rem 5%;
  background: var(--plum);
  text-align: left;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(188, 163, 113, 0.15);
}

/* ── CTA BAND (Home Page) ── */
#cta-band {
  background: var(--plum-dark);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 5%;
}

#cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#cta-band::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(188, 163, 113, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-corner-tl,
.cta-corner-br {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.35;
}

.cta-corner-tl {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}

.cta-corner-br {
  bottom: 18px;
  right: 18px;
  border-width: 0 1px 1px 0;
}

/* Shared CTA Inner Grid */
.cta-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4.5rem;
  position: relative;
  z-index: 1;
}

.cta-left {
  flex: 1;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.cta-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.cta-eyebrow-text {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.cta-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0;
  text-align: left;
}

.cta-left h2 em {
  color: var(--gold);
  font-style: italic;
}

.cta-divider {
  width: 40px;
  height: 1px;
  background: rgba(188, 163, 113, 0.3);
  margin: 1.4rem 0;
}

.cta-left p {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 300;
}

.cta-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cta-trust-text {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 194, 172, 0.55);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: flex-end;
  flex-shrink: 0;
}

.cta-right .btn {
  width: 220px;
  padding: 1.1rem 1.8rem;
  justify-content: center;
  white-space: nowrap;
}

/* ── FOOTER ── */
footer {
  background: var(--plum-dark);
  border-top: 1px solid rgba(188, 163, 113, 0.12);
  padding: 3.5rem 5% 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(188, 163, 113, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ivory-dim);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(188, 163, 113, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
}

.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col-links li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-col-links li::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.footer-col-links a {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(188, 163, 113, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 13px;
  height: 13px;
}

.footer-contact-text {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  line-height: 1.6;
}

.footer-contact-text a {
  color: var(--ivory-dim);
  text-decoration: none;
  display: block;
  transition: var(--transition-fast);
}

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

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

.footer-copy {
  font-size: 0.64rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}

.footer-made {
  font-size: 0.62rem;
  color: rgba(188, 163, 113, 0.35);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE OVERRIDES ── */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-links {
    gap: 1.6rem;
  }
}

@media (max-width: 1024px) {
  #yt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .process-steps::before {
    display: none;
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-frame {
    aspect-ratio: 16/9;
    max-width: 100%;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(188, 163, 113, 0.12);
    padding: 2rem 1.5rem;
    width: 100%;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .stats-strip {
    flex-direction: column;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .quick-contact-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .contact-form-wrap {
    padding: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  /* CTA responsive behavior */
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-right {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .cta-right .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Testimonials slider responsive */
  .testimonial-card.prev-card {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) translateX(-200px) scale(0.75);
  }
  .testimonial-card.next-card {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) translateX(200px) scale(0.75);
  }
  .testimonials-track-wrap {
    height: 380px;
  }
  .testimonial-card {
    width: 400px;
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  /* Mobile Spacing & Typography Polish */
  body {
    font-size: 0.9rem;
  }
  h2 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }
  section {
    padding: 4.5rem 5% !important; /* Reduce vertical padding on mobile */
  }
  .btn {
    letter-spacing: 0.12em !important;
    padding: 0.9rem 2rem !important; /* Compact button paddings */
  }
  .hero-title {
    font-size: clamp(2.4rem, 8.5vw, 3.6rem) !important;
  }
  .hero-tagline {
    font-size: 0.92rem !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
  }
  .hero-eyebrow {
    letter-spacing: 0.16em !important;
    margin-bottom: 1.4rem !important;
  }
  .section-label {
    letter-spacing: 0.16em !important;
  }

  #yt-grid, 
  .why-grid, 
  .services-main, 
  .addons-grid, 
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    margin-top: 3.5rem;
  }
  
  .process-step {
    text-align: left;
    padding: 1.5rem 1rem 1.5rem 4.5rem;
    position: relative;
    border-left: 1px solid rgba(188, 163, 113, 0.2);
    margin-left: 26px;
  }
  
  .process-step .step-number {
    position: absolute;
    left: -27px;
    top: 1rem;
    margin: 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .portfolio-tabs {
    border-bottom-color: rgba(188, 163, 113, 0.15);
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .portfolio-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .portfolio-tab {
    flex: 0 0 auto;
    padding: 0.9rem 1.4rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-align: center;
    white-space: nowrap;
  }
  
  .testimonials-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .rating-badge {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Testimonials slider small screen */
  .testimonials-slider-container .slider-btn {
    width: 40px;
    height: 40px;
  }
  .testimonials-slider-container {
    gap: 0.5rem;
  }
  .testimonials-track-wrap {
    height: 400px;
  }
  .testimonial-card {
    width: 330px;
    max-width: 90%;
    padding: 1.8rem 1.4rem;
  }
}

/* ── FLOATING BUTTONS ── */
.floating-btns {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 500;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition: var(--transition-smooth);
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.55);
}

.float-wa {
  background: #25D366;
}

.float-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.float-btn-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.float-label {
  position: absolute;
  right: 62px;
  background: rgba(30, 13, 34, 0.9);
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  border: 1px solid rgba(188, 163, 113, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-btn-wrap:hover .float-label {
  opacity: 1;
}

@media (max-width: 600px) {
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btns {
    bottom: 1.2rem;
    right: 1.2rem;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── LEGAL & POLICY PAGES ── */
.legal-section {
  padding: 6.5rem 5%;
}

.legal-content {
  max-width: 850px;
  margin: 0 auto;
  color: var(--ivory-dim);
  font-family: var(--ff-body);
  line-height: 1.95;
  font-size: 0.95rem;
}

.legal-content h3 {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  color: var(--ivory);
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(188, 163, 113, 0.12);
  padding-bottom: 0.6rem;
}

.legal-content p {
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.legal-content ul {
  margin-bottom: 2rem;
  padding-left: 1.6rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
  font-weight: 300;
  list-style-type: square;
  color: var(--ivory-dim);
}

.legal-content li::marker {
  color: var(--gold);
}

/* ── CUSTOM INTERACTIVE CURSOR ── */
@media (hover: hover) and (pointer: fine) {
  /* Hide default cursor globally on desktop interactive elements */
  body, a, button, select, input, textarea, [role="button"], .hamburger, .btn, .portfolio-tab, .yt-card, .quick-card {
    cursor: none !important;
  }

  .custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  }

  .custom-cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                height 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.3s ease, 
                border-color 0.3s ease,
                opacity 0.2s ease;
  }

  /* Hover state */
  .custom-cursor-hover .custom-cursor-dot {
    width: 0;
    height: 0;
  }

  .custom-cursor-hover .custom-cursor-outline {
    width: 54px;
    height: 54px;
    background-color: rgba(188, 163, 113, 0.1);
    border-color: var(--gold-light);
    border-width: 1.5px;
  }

  .cursor-ripple-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
  }
}

/* ── AUDIT: MOBILE TYPOGRAPHY & SPACING POLISH ── */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3.4rem !important;
    line-height: 1 !important;
    letter-spacing: 0.01em !important;
  }

  .hero-tagline {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
  }

  .nav-links a,
  .btn,
  .section-label {
    letter-spacing: 0.12em !important;
  }

  section {
    padding: 5rem 1.5rem !important;
  }

  .hero-video-poster {
    background: var(--plum-dark) url('https://i.ytimg.com/vi/ht9Hb7AjCgY/hqdefault.jpg') center/cover no-repeat !important;
  }

  /* Hide scroll indicator on small screens — saves vertical space */
  .hero-scroll {
    display: none !important;
  }

  /* Mobile menu font size fits all screen sizes */
  .mobile-menu a {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Ensure mobile menu uses safe area insets on notched phones */
  .mobile-menu {
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
  }
}

/* Remove iOS tap highlight on interactive elements */
a, button, [role="button"], .portfolio-tab, .quote-dot, .hamburger {
  -webkit-tap-highlight-color: transparent;
}
