/* (Claude) — UI components: warm palette #BC412A + #ECB218, 3D animations */

/* ── Frosted-glass sections (show parallax bg behind content) ─── */
.site-main {
  position: relative;
  z-index: 1;
}

/* Each content section has a translucent warm-white background */
.home-section,
.video-section,
.about-section,
.contact-section,
.portfolio-section,
.page-hero {
  position: relative;
  background: rgba(255, 252, 250, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Subtle warm top-border separator between sections and parallax bg */
.home-section::before,
.video-section::before,
.about-section::before,
.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(188,65,42,0.15), transparent);
}

/* Header ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s, box-shadow 0.5s;
}

body:not(.has-hero-header) .site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(188, 65, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.site-logo { display: flex; align-items: center; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  transition: color var(--transition);
}

.has-hero-header .site-header.scrolled .logo-text,
body:not(.has-hero-header) .logo-text {
  color: var(--accent);
}

.logo-text:hover { color: var(--gold) !important; }

.site-logo img { height: 36px; width: auto; }

.site-nav .nav-list {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.site-nav .nav-list a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
}

.has-hero-header .site-header.scrolled .site-nav .nav-list a,
body:not(.has-hero-header) .site-nav .nav-list a {
  color: var(--text-muted);
}

.site-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.site-nav .nav-list a:hover,
.site-nav .nav-list .current-menu-item > a {
  color: var(--gold) !important;
}

.site-nav .nav-list a:hover::after,
.site-nav .nav-list .current-menu-item > a::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Music player button ──────────────────────────────────────── */
.music-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition), background var(--transition);
}

.has-hero-header .site-header.scrolled .music-btn,
body:not(.has-hero-header) .music-btn {
  color: var(--text-muted);
}

.music-btn:hover { color: var(--gold); background: var(--gold-dim); }

.music-icon { display: flex; align-items: center; justify-content: center; }

.music-bars {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.music-bars span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: musicBar 1s ease-in-out infinite alternate;
}

.music-bars span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.music-bars span:nth-child(4) { height: 6px;  animation-delay: 0.45s; }

@keyframes musicBar {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

.music-btn.playing .music-icon { display: none; }
.music-btn.playing .music-bars { display: flex; }
.music-btn.playing { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
}

.hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: #FFFFFF;
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background var(--transition);
  transform-origin: center;
}

.has-hero-header .site-header.scrolled .hamburger span,
body:not(.has-hero-header) .hamburger span {
  background: var(--accent);
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
}

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: var(--container-px);
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.mobile-menu-close:hover { color: var(--accent); }

.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color var(--transition), letter-spacing var(--transition);
}

.mobile-nav-list a:hover {
  color: var(--accent);
  letter-spacing: 0.04em;
}

.mobile-socials {
  display: flex;
  gap: 1.5rem;
}

.mobile-socials a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.mobile-socials a:hover { color: var(--accent); }

/* ── Hero (dark island with 3D animations) ────────────────────── */
/* ── Hero — luxury 3D split layout ──────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-color: #1A120A;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Gradient: left readable → right transparent (shows character) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(18,12,5,0.78) 0%,
      rgba(18,12,5,0.50) 38%,
      rgba(18,12,5,0.12) 60%,
      transparent 80%
    ),
    linear-gradient(to bottom,
      rgba(18,12,5,0.50) 0%,
      transparent 25%,
      transparent 75%,
      rgba(18,12,5,0.55) 100%
    );
}

/* Pixar character image — right side of hero */
.hero-char {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 97svh;
  width: auto;
  max-width: 55%;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(-30px 0 50px rgba(201,168,76,0.18));
}

@media (max-width: 900px) {
  .hero { justify-content: center; }
  .hero-char { height: 65svh; right: -8%; opacity: 0.45; }
  .hero-content { text-align: center; max-width: 100%; padding-inline: var(--container-px); }
}

@media (max-width: 600px) {
  .hero-char { height: 55svh; opacity: 0.30; }
}

.hero:not([style*="background-image"]) {
  background-image: none;
  background: radial-gradient(ellipse 90% 70% at 30% 40%, rgba(188,65,42,0.35) 0%, rgba(26,8,5,0.95) 70%),
              radial-gradient(ellipse 60% 60% at 80% 70%, rgba(236,178,24,0.20) 0%, transparent 60%),
              #1A0805;
}

/* Hero content — left-aligned, champagne text */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: calc(var(--header-h) + 3rem) clamp(2rem, 8vw, 7rem) 6rem;
  max-width: 52%;
  animation: heroFloat 9s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin-bottom: 2.5rem;
  color: #FFFFFF;
  text-shadow:
    0 2px 30px rgba(26,8,5,0.60),
    2px 3px 0 rgba(188,65,42,0.40),
    0 0 60px rgba(236,178,24,0.20);
  animation: heroNameFloat 9s ease-in-out infinite;
}

.hero-name .blur-word { display: inline-block; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(236,178,24,0.5);
  padding-bottom: 3px;
  transition: color var(--transition), letter-spacing var(--transition), border-color var(--transition);
}

.hero-cta:hover {
  color: var(--gold);
  letter-spacing: 0.22em;
  border-color: var(--gold);
}

/* Arrow bounces */
.hero-cta .cta-arrow {
  display: inline-block;
  animation: bounceRight 1.8s ease-in-out infinite;
}

/* ── Floating particles in hero ────────────────────────────────── */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: particleFloat linear infinite;
}

/* 3D floating decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  transform-style: preserve-3d;
}

/* Gold rotating cube */
.hero-shape--1 {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 6px;
  top: 18%; left: 8%;
  opacity: 0.40;
  animation: rotateCube 9s ease-in-out infinite;
}

/* Red diamond */
.hero-shape--2 {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 4px;
  top: 65%; right: 10%;
  opacity: 0.45;
  animation: rotateCube 7s ease-in-out infinite reverse;
  animation-delay: -3s;
}

/* Large floating gold ring (CSS circle) */
.hero-shape--3 {
  width: 90px; height: 90px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  top: 25%; right: 14%;
  opacity: 0.30;
  animation: spinRing 14s linear infinite;
}

/* Small accent square */
.hero-shape--4 {
  width: 20px; height: 20px;
  background: #FFFFFF;
  border-radius: 3px;
  bottom: 20%; left: 15%;
  opacity: 0.25;
  animation: floatOrbit 11s ease-in-out infinite;
  animation-delay: -5s;
}

/* Medium gold float */
.hero-shape--5 {
  width: 60px; height: 60px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  bottom: 30%; left: 5%;
  opacity: 0.25;
  animation: floatOrbitSlow 16s ease-in-out infinite;
  animation-delay: -8s;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section header: animated gold underline on title ───────────── */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.section-header.in-view .section-title::after,
.in-view .section-title::after {
  transform: scaleX(1);
}

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-inline: var(--container-px);
  max-width: var(--max-width);
  margin-inline: auto;
}

.page-hero--small { padding-top: calc(var(--header-h) + 3.5rem); }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
}

.page-subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Masonry photo grid with 3D breathing ────────────────────── */
.grid-masonry {
  columns: 2;
  column-gap: 12px;
  padding-inline: var(--container-px);
  max-width: var(--max-width);
  margin-inline: auto;
  counter-reset: grid-item-counter;
}

.grid-masonry--large { columns: 3; }

@media (max-width: 900px) { .grid-masonry--large { columns: 2; } }
@media (max-width: 560px) { .grid-masonry, .grid-masonry--large { columns: 1; } }

.grid-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: none;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: cardBreath 5s ease-in-out infinite;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  counter-increment: grid-item-counter;
}

/* Stagger the breathing per position */
.grid-item:nth-child(2) { animation-delay: -1.2s; }
.grid-item:nth-child(3) { animation-delay: -2.4s; }
.grid-item:nth-child(4) { animation-delay: -0.6s; }
.grid-item:nth-child(5) { animation-delay: -1.8s; }
.grid-item:nth-child(6) { animation-delay: -3.0s; }

.grid-item:hover {
  box-shadow:
    0 24px 60px rgba(188, 65, 42, 0.22),
    0 0 0 1.5px rgba(236,178,24,0.40);
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}

/* GFD-style sequential number watermark */
.grid-item::before {
  content: "0" counter(grid-item-counter);
  position: absolute;
  bottom: 0.6rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0);
  z-index: 4;
  pointer-events: none;
  transition: color 0.4s var(--ease-out);
}
.grid-item:hover::before { color: rgba(255, 255, 255, 0.30); }

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}

.grid-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,5,0.82) 0%, rgba(188,65,42,0.30) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.grid-item-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s var(--ease-out) 0.05s, transform 0.3s var(--ease-out) 0.05s;
}

.grid-item-title {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.07s, transform 0.3s 0.07s;
}

.grid-item:hover .grid-item-overlay { opacity: 1; }
.grid-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.82) saturate(1.1);
}
.grid-item:hover .grid-item-icon { opacity: 1; transform: scale(1); }
.grid-item:hover .grid-item-title { opacity: 1; transform: translateY(0); }

/* Gold glow ring that expands on hover */
.grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, var(--accent), var(--gold)) border-box;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 3;
}

.grid-item:hover::after { opacity: 1; }

/* ── Lightbox ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 3, 2, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-content {
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.lightbox.open .lightbox-content img { opacity: 1; transform: scale(1); }

.lightbox-caption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: rgba(255,255,255,0.5);
  font-size: 1.6rem;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
  z-index: 2;
}

.lightbox-close { top: 1.5rem; right: 2rem; font-size: 1.4rem; }
.lightbox-prev  { left: 2rem; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }
.lightbox-next  { right: 2rem; top: 50%; transform: translateY(-50%); font-size: 2.5rem; }

.lightbox-close:hover { color: var(--gold); }
.lightbox-prev:hover  { color: var(--gold); transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover  { color: var(--gold); transform: translateY(-50%) translateX(3px); }

/* ── Home sections — tighter padding for visual flow ─────────── */
.home-section { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }

/* ── Video grid ─────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-inline: var(--container-px);
  max-width: var(--max-width);
  margin-inline: auto;
}

.video-grid--full { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .video-grid, .video-grid--full { grid-template-columns: 1fr; }
}

.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(188, 65, 42, 0.14), 0 0 0 1px rgba(236,178,24,0.25);
}

.video-card:hover .video-thumb img,
.video-card:hover .video-thumb { filter: brightness(0.85); }

.video-card:hover .video-play-btn {
  transform: scale(1.18);
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(188,65,42,0.15);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-3) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-no-thumb { color: var(--text-dim); }

.video-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(188, 65, 42, 0.88);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), background 0.3s;
  backdrop-filter: blur(4px);
}

.video-play-btn svg { transform: translateX(2px); }
.video-card:hover .video-play-btn { transform: scale(1.1); background: var(--accent); }

.video-info { padding: 1.25rem 1.5rem 1.5rem; }

.video-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.video-desc {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 55ch;
}

.video-section { padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3.5rem); }
.video-watch-btn { margin-top: 0.75rem; }

/* ── Video modal ─────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 3, 2, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.video-modal.open { opacity: 1; pointer-events: all; }

.video-modal-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  z-index: 2;
  transition: color var(--transition);
}

.video-modal-close:hover { color: var(--gold); }

.video-modal-inner { width: min(90vw, 1100px); }

.video-embed-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

/* Portrait wrapper for Instagram Reels (9:16) */
.video-modal-inner:has(.video-embed-wrapper.is-portrait) {
  width: auto;
}
.video-embed-wrapper.is-portrait {
  aspect-ratio: 9/16;
  max-height: 82vh;
  width: calc(82vh * 9 / 16);
  max-width: 90vw;
  margin: 0 auto;
}

.video-modal.open .video-embed-wrapper { opacity: 1; transform: scale(1); }

.video-embed-wrapper iframe,
.video-embed-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Portfolio section ────────────────────────────────────────── */
.portfolio-section { padding-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ── Category filter ─────────────────────────────────────────── */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.cat-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.22s var(--ease-out), border-color 0.22s, color 0.22s;
}

.cat-btn:hover { border-color: var(--accent); color: var(--accent); }
.cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Hidden category items (JS toggled) */
.cat-hidden { display: none !important; }

/* Category badge on grid items */
.grid-item-cat {
  display: inline-block;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.85);
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  margin-top: 0.3rem;
}

/* Category badge on video cards */
.video-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(10,3,2,0.72);
  backdrop-filter: blur(6px);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* ── Contact split layout ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.contact-portrait {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.contact-portrait-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(10,3,2,0.22), 0 0 0 1px var(--border);
}

.contact-portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease-out);
  display: block;
}

.contact-portrait-inner:hover img { transform: scale(1.04); }

.contact-portrait-tag {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-portrait-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5cb85c;
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(92,184,92,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(92,184,92,0); }
}

.contact-form-side { display: flex; flex-direction: column; gap: 1.5rem; }

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-portrait {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }
}

/* ── Video placeholder (no thumbnail) ────────────────────────── */
.video-thumb--placeholder {
  background: linear-gradient(135deg, #1A0805 0%, #2c1a10 60%, rgba(188,65,42,0.2) 100%);
  position: relative;
}

.video-thumb--placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(236,178,24,0.06) 0%, transparent 70%);
}

.video-placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.7;
}

.video-play-btn--large {
  width: 80px !important;
  height: 80px !important;
  background: rgba(236, 178, 24, 0.15) !important;
  border: 1.5px solid rgba(236,178,24,0.5) !important;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-out), background 0.3s, border-color 0.3s !important;
}

.video-thumb--placeholder:hover .video-play-btn--large {
  background: rgba(236,178,24,0.3) !important;
  border-color: var(--gold) !important;
  transform: scale(1.12) !important;
}

.video-title--placeholder {
  color: var(--text-muted);
  font-style: italic;
}

/* ── n8n chatbot widget — mobile optimizations ────────────────── */
@media (max-width: 768px) {
  /* Scale down the widget button and reposition */
  #n8n-chat .chat-window-button,
  [id^="n8n-chat"] .chat-window-button,
  .n8n-chat-window-button {
    transform: scale(0.82) !important;
    transform-origin: bottom right !important;
    bottom: 10px !important;
    right: 10px !important;
  }

  /* Hide tooltip bubble on mobile — too invasive */
  .n8n-chat-window-button .tooltip,
  [class*="tooltip"],
  [class*="bubble-text"],
  [class*="chat-bubble"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* Also target the n8n CDN widget specifically */
@media (max-width: 768px) {
  body > div[style*="position: fixed"][style*="bottom"],
  body > div[style*="position:fixed"][style*="bottom"] {
    --chat-btn-size: 44px;
  }
}

/* ── About section ────────────────────────────────────────────── */
.about-section { padding: clamp(3rem, 6vw, 6rem) 0 clamp(5rem, 10vw, 9rem); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-image { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1.5px solid var(--border);
  border-radius: calc(var(--radius-lg) + 4px);
  pointer-events: none;
}

.about-name { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.5rem; color: var(--text); }

.about-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.about-text { color: var(--text-muted); line-height: 1.85; margin-bottom: 2.5rem; }
.about-text p { max-width: 55ch; }
.about-socials { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 2.5rem; }

/* ── Contact section ──────────────────────────────────────────── */
.contact-section { padding: clamp(2rem, 4vw, 4rem) 0 clamp(5rem, 10vw, 9rem); }
.contact-intro { color: var(--text-muted); line-height: 1.8; margin-bottom: 3rem; }

.contact-success {
  padding: 1.5rem 2rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent-2);
  font-size: 0.9rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.btn-submit { margin-top: 0.5rem; }

.contact-or {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.social-links-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── UGC Services Section ──────────────────────────────────────── */
.ugc-services { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ugc-grid { grid-template-columns: 1fr; } }

.ugc-card {
  background: rgba(255, 255, 255, 0.90);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

/* Top accent bar */
.ugc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

/* Bottom-right corner accent (GFD corner reveal) */
.ugc-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 32px 32px;
  border-color: transparent transparent rgba(236,178,24,0.22) transparent;
  transition: border-width 0.35s var(--ease-out);
}

.ugc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(188, 65, 42, 0.14);
  border-color: rgba(188, 65, 42, 0.28);
  background: rgba(255, 255, 255, 0.97);
}

.ugc-card:hover::before { transform: scaleX(1); }
.ugc-card:hover::after  { border-width: 0 0 48px 48px; border-color: transparent transparent rgba(236,178,24,0.35) transparent; }

.ugc-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
  display: inline-block;
  line-height: 1;
  transition: transform 0.4s var(--ease-out);
}

.ugc-card:hover .ugc-icon { transform: scale(1.3) rotate(-8deg); }

.ugc-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ugc-card-desc {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
  max-width: none;
}

/* UGC Stats bar */
.ugc-stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 560px) { .ugc-stats { flex-wrap: wrap; gap: 1.25rem; } }

.ugc-stat { text-align: center; }

.ugc-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  transition: color 0.4s var(--ease-out);
}

.ugc-stat.in-view .ugc-stat-num {
  color: var(--gold-2);
}

.ugc-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Contact: collab type tags ──────────────────────────────────── */
.contact-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.collab-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(188, 65, 42, 0.20);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.03em;
  transition: background var(--transition), border-color var(--transition);
}

.collab-tag:hover {
  background: rgba(188, 65, 42, 0.18);
  border-color: var(--accent);
}

/* ── Home CTA section — full-bleed dark luxury panel ─────────── */
.home-cta {
  margin: 0;
  max-width: none;
  padding: clamp(5rem, 10vw, 8rem) var(--container-px);
  background: linear-gradient(160deg, #180A04 0%, #2D1303 45%, #1C0E05 100%);
  border: none;
  border-radius: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Top gold shimmer rule */
.home-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(212,175,55,0.4) 20%,
    var(--gold) 50%,
    rgba(212,175,55,0.4) 80%,
    transparent 100%
  );
}

/* Radial warm glow */
.home-cta::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center,
    rgba(188,65,42,0.22) 0%,
    rgba(236,178,24,0.08) 45%,
    transparent 100%
  );
  pointer-events: none;
}

.home-cta-inner {
  position: relative;
  z-index: 1;
}

.home-cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(236,178,24,0.15);
}

.home-cta-inner p {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1.5px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  background: rgba(255, 238, 230, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.footer-brand { grid-column: 1; }

.footer-logo-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer-logo-link:hover { color: var(--gold-2); }

.footer-tagline { color: var(--text-muted); font-size: 0.78rem; max-width: none; }

.footer-nav { display: flex; flex-direction: column; gap: 0.9rem; }

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.04em;
}

.footer-nav a:hover { color: var(--accent); }

.footer-socials { display: flex; gap: 1rem; align-items: center; justify-content: flex-end; }

.footer-socials a {
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
}

.footer-socials a:hover { color: var(--accent); transform: translateY(-2px); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 0.72rem; color: var(--text-dim); max-width: none; }

.footer-powered a { color: var(--text-muted); transition: color var(--transition); }
.footer-powered a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-socials { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ── Prices page ─────────────────────────────────────────────── */
.prices-section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.prices-intro {
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: 1.05rem;
  color: var(--text-muted);
}

.prices-intro strong { color: var(--text); }

/* Pricing grid — 2-col on desktop, 1-col on mobile */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.price-card {
  position: relative;
  background: rgba(255, 252, 250, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(188, 65, 42, 0.12);
}

.price-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(236, 178, 24, 0.18);
  background: rgba(255, 252, 250, 0.97);
}

.price-card--featured:hover {
  box-shadow: 0 20px 60px rgba(236, 178, 24, 0.28);
}

.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card-header {
  margin-bottom: 1.5rem;
}

.price-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.15em;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 0.5em;
  margin-top: 0.5em;
  color: var(--text-muted);
}

.price-original {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  align-self: center;
  margin-left: 0.25rem;
}

.price-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.6;
}

.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.price-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}

.price-cta:hover {
  background: var(--accent);
  color: #fff;
}

.price-cta--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

.price-cta--gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--text);
}

/* Add-ons */
.addons-section {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: 2.5rem;
  background: rgba(255, 252, 250, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.addons-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
  text-align: center;
}

.addons-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: none;
  margin-bottom: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.addon-item {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 250, 0.7);
  transition: border-color var(--transition), transform var(--transition);
}

.addon-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.addon-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.addon-item h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.addon-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.5;
}

/* FAQ */
.prices-faq {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 252, 250, 0.92);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  gap: 1rem;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer p { max-width: none; }

/* Responsive */
@media (max-width: 900px) {
  .prices-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .prices-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
  .addons-section { padding: 1.5rem; }
}

@media (max-width: 420px) {
  .addons-grid { grid-template-columns: 1fr; }
}

/* ── Section eyebrow numbers (01 / 02 / 03) ──────────────────── */
.section-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.5s var(--ease-out) 0.1s, transform 0.5s var(--ease-out) 0.1s;
}

.section-header.in-view .section-num {
  opacity: 1;
  transform: translateX(0);
}

/* ── Marquee band ─────────────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  padding: 1rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation-play-state: paused; }
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  padding: 0 1.5rem;
}

.marquee-track .dot {
  color: var(--accent);
  margin: 0 0.2em;
}


/* RESPONSIVE OVERRIDES */
html { overflow-x: hidden; }
.hero-char--video {
  position: absolute; right: 0; bottom: 0; height: 97svh; width: auto; max-width: 55%;
  object-fit: contain; pointer-events: none; z-index: 1;
  filter: drop-shadow(-30px 0 50px rgba(201,168,76,0.18));
}
@media (max-width: 900px) {
  .hero-char--video { height: 65svh; right: -8%; opacity: 0.5; }
  .hero-content { max-width: 100% !important; text-align: center; padding-inline: var(--container-px); padding-bottom: 4rem; }
}
@media (max-width: 600px) {
  .hero-char--video { height: 55svh; opacity: 0.28; }
}
@media (max-width: 560px) {
  .hero-content { padding-top: calc(var(--header-h) + 3.5rem); }
  .hero-name { font-size: clamp(2.8rem, 14vw, 4rem) !important; white-space: nowrap; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.1em; flex-wrap: wrap; justify-content: center; gap: 0.4rem; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 14px; }
  .hero-shape { display: none !important; }
  .hero-cta { font-size: 0.7rem; letter-spacing: 0.12em; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .home-section { padding: 1.25rem 0; }
  .home-cta { padding: clamp(3rem, 8vw, 5rem) var(--container-px); }
}
@media (max-width: 480px) {
  .ugc-stat-num { font-size: clamp(2.4rem, 9vw, 3.5rem) !important; }
  .ugc-stats { gap: 1.25rem; padding: 1.5rem 0; }
  .brand-collab-track { gap: clamp(1.5rem, 4vw, 2rem); }
  .brand-logo-img { height: 30px; max-width: 120px; }
  .brand-logo-img--text { height: 24px; }
  .ugc-card { padding: 1.25rem 1rem; }
  .ugc-grid { gap: 0.85rem; }
  .prices-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }
}
@media (max-width: 600px) {
  .video-modal-inner { width: 94vw; }
  .video-modal-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}
.marquee-band:hover .marquee-inner, .marquee-band:focus-within .marquee-inner { animation-play-state: paused; }
@media (max-width: 900px) { .contact-layout { gap: 1.5rem; } }
@media (max-width: 900px) and (min-width: 769px) { .about-grid { grid-template-columns: 1fr 1.3fr; gap: 3rem; } }
/* ── Video language flag badge ───────────────────────────────── */
.video-lang-flag {
  position: absolute;
  top: 0.65rem; right: 0.7rem;
  font-size: 1.35rem; line-height: 1; z-index: 3;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.45));
  pointer-events: none;
  transition: transform 0.3s var(--ease-out);
}
.video-card:hover .video-lang-flag { transform: scale(1.15); }

/* ── Brand Collaborations ─────────────────────────────────────── */
.brand-collab { padding: clamp(2.5rem, 5vw, 4rem) 0; text-align: center; }
.brand-collab-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--text-dim);
  margin: 0 auto 2.5rem; max-width: none;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.brand-collab-label::before, .brand-collab-label::after {
  content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--border);
}
.brand-collab-track {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.brand-logo-item {
  opacity: 0.45; filter: grayscale(1);
  transition: opacity 0.4s var(--ease-out), filter 0.4s var(--ease-out), transform 0.35s var(--ease-out);
}
.brand-logo-item:hover { opacity: 1; filter: grayscale(0); transform: scale(1.06); }
.brand-logo-img { height: 44px !important; width: auto !important; max-width: 160px !important; object-fit: contain; display: block; }
.brand-logo-img--text { height: 32px !important; }
@media (max-width: 480px) {
  .brand-logo-img { height: 30px !important; max-width: 120px !important; }
  .brand-logo-img--text { height: 24px !important; }
}