/*
 * ═══════════════════════════════════════════════════════════════════════════
 * Viva Agency Productions — style.css
 * Creative Studio / Full-Service Production Agency
 * ─────────────────────────────────────────────────────────────────────────
 *  1. CSS Custom Properties (Design Tokens)
 *  2. Reset & Base
 *  3. Typography
 *  4. Utilities & Layout
 *  5. Preloader
 *  6. Cookie Banner
 *  7. Header & Navigation
 *  8. Hero Section
 *  9. About Section
 * 10. Services Section — Tab Component
 * 11. Gallery Section
 * 12. Testimonials Section
 * 13. Contact Section
 * 14. FAQ Section
 * 15. Footer
 * 16. Back-to-Top Button
 * 17. Scroll Reveal Animations
 * 18. Reduced Motion
 * 19. Language Switcher
 * ═══════════════════════════════════════════════════════════════════════════
 */

/* ─────────────────────────────────────────────────────────────────────────────
 * 1. CSS Custom Properties
 * ───────────────────────────────────────────────────────────────────────── */
:root {
  /* ── Dark base palette ── */
  --black:         #080808;
  --black-soft:    #0e0e0e;
  --black-mid:     #141414;
  --black-light:   #1c1c1c;
  --black-card:    #181818;

  /* ── Gold ── */
  --gold:          #c9a84c;
  --gold-light:    #e3c06a;
  --gold-dark:     #9a7530;

  /* ── Purple-to-Pink gradient accent ── */
  --pink:          #671767;          /* dominant purple — used as solid fallback */
  --pink-light:    #3E0D3E;          /* lighter purple */
  --pink-dark:     #3E0D3E;          /* deep purple */
  --pink-muted:    #671767;
  /* gradient: purple → hot pink */
  --grad-pink:     linear-gradient(135deg, #3E0D3E 0%, #3E0D3E 60%, #671767 100%);
  --grad-pink-h:   linear-gradient(135deg, #3E0D3E 0%, #3E0D3E 60%, #3E0D3E 100%);

  /* ── Text alphas ── */
  --white:         #ffffff;
  --white-90:      rgba(255,255,255,0.90);
  --white-70:      rgba(255,255,255,0.70);
  --white-60:      rgba(255,255,255,0.60);
  --white-40:      rgba(255,255,255,0.40);
  --white-30:      rgba(255,255,255,0.30);
  --white-20:      rgba(255,255,255,0.20);
  --white-10:      rgba(255,255,255,0.10);
  --white-06:      rgba(255,255,255,0.06);

  /* ── Gold alphas ── */
  --gold-20:       rgba(201,168,76,0.20);
  --gold-12:       rgba(201,168,76,0.12);
  --gold-08:       rgba(201,168,76,0.08);

  /* ── Pink/purple alphas ── */
  --pink-20:       rgba(124,58,237,0.22);
  --pink-12:       rgba(124,58,237,0.14);
  --pink-08:       rgba(124,58,237,0.08);

  /* ── Borders ── */
  --border-gold:   rgba(201,168,76,0.18);
  --border-pink:   rgba(155,31,232,0.35);
  --border-subtle: rgba(255,255,255,0.07);

  /* ── Typography — tight, elegant system ── */
  /* Headings: Cormorant Garamond — refined, high-contrast, luxury editorial */
  --font-display: 'Cormorant Garamond', 'Playfair Display', sans-serif, serif;
  /* Body: Inter — crisp, tight, modern */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  /* Mono/label: JetBrains Mono — precise, minimal */
  --font-mono:    'JetBrains Mono', 'DM Mono', 'Courier New', monospace;

  /* ── Spacing — tighter vertical rhythm ── */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* ── Sizing ── */
  --max-w:       1200px;
  --header-h:    80px;
  --header-h-sm: 58px;

  /* ── Radii ── */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* ── Easing ── */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Durations ── */
  --dur-fast:  0.18s;
  --dur-med:   0.30s;
  --dur-slow:  0.60s;

  /* ── Transitions ── */
  --transition:       0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Shadows ── */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.30);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.40);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.50);
  --shadow-gold:  0 4px 20px rgba(201,168,76,0.18);
  --shadow-pink:  0 4px 20px rgba(212,84,122,0.22);
}

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

html {
  scroll-behavior: smooth;
  font-size: 20px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white-90);
  background: var(--black);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─────────────────────────────────────────────────────────────────────────────
 * 3. Typography
 * ───────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Headline scale — refined, tight, elegant */
h1 { font-size: clamp(2.8rem, 4vw, 5.2rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 2vw, 3.2rem); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 500; }
h4 { font-size: 0.95rem; font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.01em; }

em  { font-style: italic; color: var(--gold); font-family: var(--font-mono); }
p   { max-width: 65ch; }

/* ─────────────────────────────────────────────────────────────────────────────
 * 4. Utilities & Layout
 * ───────────────────────────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}
@media (max-width: 480px) { .container { width: 92%; } }

.section { padding-block: var(--space-3xl); }

@media (max-width: 1024px) { .section { padding-block: 5rem; } }
@media (max-width: 768px)  { .section { padding-block: 3.5rem; } }
@media (max-width: 480px)  { .section { padding-block: 2.5rem; } }

.bg-dark { background: var(--black-soft); }

/* ── Section headers ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

/* Ruled eyebrow variant — horizontal line through label */
.section-eyebrow--ruled {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.section-eyebrow--ruled::before,
.section-eyebrow--ruled::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  max-width: 48px;
}

.section-title {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .section-sub { font-size: 0.95rem; margin-bottom: 2rem; }
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
}

/* Primary CTA — gold fill */
.btn--pink {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
  font-weight: 700;
}
.btn--pink:hover,
.btn--pink:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Gold — secondary */
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #080808;
  font-weight: 700;
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Outline — gradient border, used for "Let's Talk" CTA */
.btn--outline {
  background: transparent;
  color: var(--white-70);
  border-color: transparent;
  position: relative;
}
.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  padding: 1px;
  background: var(--grad-pink);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  color: var(--white);
  background: var(--pink-08);
  border-color: transparent;
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--white-60);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--white); }

.btn--sm   { padding: 0.6rem 1.25rem; font-size: 0.7rem; }
.btn--lg   { padding: 1.05rem 2.5rem; font-size: 0.8rem; }
.btn--full { width: 100%; justify-content: center; }

/* Focus ring */
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Honeypot */
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ─────────────────────────────────────────────────────────────────────────────
 * 5. Preloader
 * ───────────────────────────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.preloader-inner img {
  width: 72px;
  height: auto;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.preloader-bar {
  width: 100px;
  height: 1px;
  background: var(--white-10);
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  animation: load 1.8s ease-in-out forwards;
}
@keyframes load { 0%{width:0} 100%{width:100%} }

/* ─────────────────────────────────────────────────────────────────────────────
 * 6. Cookie Banner
 * ───────────────────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black-light);
  border-top: 1px solid var(--border-subtle);
  z-index: 5000;
  padding: 1.25rem 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
}
.cookie-banner[hidden] { display: none; }

.cookie-banner__inner {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.875rem;
  color: var(--white-60);
  margin: 0;
  max-width: none;
}
.cookie-banner__inner a { color: var(--gold); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

@media (max-width: 560px) {
  .cookie-banner__inner { gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 7. Header & Navigation
 * ───────────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(8,8,8,0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8,8,8,0.97);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.navbar__logo img {
  height: 42px;
  width: auto;
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.navbar__cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover, .hamburger:focus-visible { background: var(--white-06); outline: none; }
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white-70);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translateY(calc(-100% - 100px));
  transition: transform var(--transition-slow);
  z-index: 999;
  pointer-events: none;
  padding: 0.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu.open { transform: translateY(0); pointer-events: auto; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-inline: auto;
}
.mobile-menu .nav-link {
  display: block;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0;
  color: var(--white-60);
}
.mobile-menu .nav-link:last-child { border-bottom: none; }
.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active { color: var(--white); padding-left: 0.4rem; }
.mobile-menu .btn { display: none; }

@media (max-width: 1100px) { .nav-link { padding: 0.4rem 0.5rem; font-size: 0.64rem; } }

@media (max-width: 900px) {
  .site-header { height: var(--header-h-sm); }
  .mobile-menu { top: var(--header-h-sm); }
  .hamburger     { display: flex; }
  .navbar__cta   { display: none; }
  .navbar__links { display: none; }
  .navbar > .lang-switcher { display: none; }
}
@media (max-width: 480px) {
  .navbar__logo img { height: 34px; }
  .mobile-menu { padding-bottom: 2.5rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 8. Hero Section
 * ───────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.46;
  z-index: 0;
}

/* Multi-layered overlay — lighter to let the video breathe */
.hero__overlay {
  position: absolute;
  inset: 0;
  /*background:
    linear-gradient(
      160deg,
      rgba(8,8,8,0.78) 0%,
      rgba(8,8,8,0.40) 55%,
      rgba(8,8,8,0.22) 100%
    );*/
  z-index: 1;
}

/* Subtle warm atmospheric haze */
.hero__atmosphere {
  position: absolute;
  top: -10%; right: -5%;
  width: 50vw; height: 70vh;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.05) 0%, transparent 85%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle dot-grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  max-width: 820px;
}
@media (max-width: 900px) {
  .hero__content { padding-top: var(--header-h-sm); padding-bottom: 4rem; }
}
@media (max-width: 480px) {
  .hero__content { padding-bottom: 5rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* Hero eyebrow label — gradient, monospaced */
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Pill tag replaces plain eyebrow */
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white-06);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.3rem 0.85rem 0.3rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.hero__headline {
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--white-60);
  line-height: 1.80;
  margin-bottom: 2.75rem;
  max-width: 50ch;
  font-weight: 300;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Floating service pills row */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white-06);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color var(--transition), color var(--transition);
}
.hero__pill i { color: var(--gold); font-size: 0.55rem; }
.hero__pill:hover { border-color: var(--border-gold); color: var(--white-70); }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--black-mid);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 2rem;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border-subtle);
  text-align: center;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__item .stat__num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}
@media (max-width: 640px) {
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item:nth-child(2) { border-right: none; }
  .stats-strip__item:nth-child(3) { border-right: 1px solid var(--border-subtle); }
  .stats-strip__item { padding-block: 1rem; }
}
@media (max-width: 380px) {
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
}

/* ── Marquee Section ── */
.marquee-section {
  background: var(--black-soft);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  padding-block: 1.1rem;
}
.marquee-track {
  display: flex;
  overflow: hidden;
  cursor: default;
  user-select: none;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-30);
  padding-inline: 2rem;
  transition: color var(--transition);
}
.marquee-item i { color: var(--gold); font-size: 0.4rem; }
.marquee-item:hover { color: var(--white-70); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner { animation: none; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: bounceDown 2.2s ease-in-out infinite;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--white-20));
}
.scroll-indicator__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 4px;
}
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 9. About Section
 * ───────────────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

/* Offset framing — visual tension */
.about__visual {
  position: relative;
}
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  outline: 2px solid var(--pink);
  outline-offset: 0;
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
  /* Golden metallic filter */
  filter: sepia(0.20) contrast(1.1) saturate(1.0) brightness(.93);
}
.about__img-wrap:hover img {
  transform: scale(1.03);
  filter: sepia(0.10) contrast(1.04) saturate(0.95) brightness(1.02);
}

/* Offset pink border frame — editorial tension */
.about__visual::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--border-pink);
  border-radius: calc(var(--radius-lg) + 10px);
  pointer-events: none;
  opacity: 0.7;
}

.about__badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--black);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  text-align: center;
}
.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}
.about__badge-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 0.3rem;
  max-width: none;
}

.about__copy .section-eyebrow { display: block; }

.about__lead {
  font-size: 1.1rem;
  color: var(--white-90);
  line-height: 1.80;
  margin-bottom: 1rem;
  font-weight: 400;
}
.about__body {
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.85;
  font-weight: 300;
}

/* Horizontal rule stats row */
.about__stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat__num {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-top: 0.4rem;
  max-width: none;
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about__visual::before { display: none; }
  .about__stats { justify-content: flex-start; }
}
@media (max-width: 480px) { .about__stats { gap: var(--space-md); } }

/* ─────────────────────────────────────────────────────────────────────────────
 * 10. Services Section — Tab Component
 * ───────────────────────────────────────────────────────────────────────── */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr;   /* tabs on top, panels below */
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Pink border on service tab component wrapper */
.svc-layout { outline: 1px solid var(--border-pink); outline-offset: -1px; }

/* Horizontal tab strip — always */
.svc-tabs {
  position: relative;
  display: flex;
  flex-direction: row;          /* always horizontal */
  background: var(--black-mid);
  border-bottom: 1px solid var(--border-subtle);
  border-right: none;
  padding: 5px;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }

.svc-tabs__pill {
  position: absolute;
  top: 5px;
  left: 8px;
  height: calc(100% - 10px);
  width: auto;
  background: var(--pink-12);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  transition: left 0.38s var(--ease), width 0.38s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.svc-tab {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;               /* don't stretch horizontally */
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-40);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
}
.svc-tab:hover { color: var(--white-70); }
.svc-tab--active { color: var(--gold-light); }

.svc-tab__num {
  font-family: var(--font-mono);
  font-size: 0.60rem;
  color: var(--white-20);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 16px;
  transition: color 0.2s;
}
.svc-tab--active .svc-tab__num { color: var(--gold-dark); }

.svc-tab__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.svc-tab__icon {
  font-size: 0.85rem;
  width: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s var(--ease-spring);
}
.svc-tab--active .svc-tab__icon { transform: scale(1.15); }
.svc-tab__label { overflow: hidden; text-overflow: ellipsis; }

.svc-tab__arrow {
  font-size: 0.58rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.2s, transform 0.25s;
  flex-shrink: 0;
}
.svc-tab--active .svc-tab__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

/* Panel wrapper — no min-height needed; panels stack below strip */
.svc-panels { position: relative; }

.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  animation: svcSlideIn 0.44s var(--ease) both;
}
.svc-panel--active { display: grid; }

@keyframes svcSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.svc-panel__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2.75rem 2.25rem 2.75rem 2.75rem;
}

.svc-panel__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: none;
  animation: svcFadeUp 0.36s 0.04s both;
}

.svc-panel__title {
  font-family: var(--font-mono);
  font-size: clamp(1.7rem, 1vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  animation: svcFadeUp 0.38s 0.10s both;
  letter-spacing: -0.02em;
}

.svc-panel__desc {
  font-size: 0.93rem;
  line-height: 1.80;
  color: var(--white-60);
  animation: svcFadeUp 0.38s 0.16s both;
  max-width: none;
  font-weight: 300;
}

.svc-panel__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  animation: svcFadeUp 0.38s 0.22s both;
}
.svc-panel__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--white-60);
  max-width: none;
  font-weight: 400;
}
.svc-panel__features li i {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  background: var(--gold-12);
  border-radius: 50%;
  width: 16px; height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-panel__cta {
  align-self: flex-start;
  margin-top: 0.4rem;
  animation: svcFadeUp 0.38s 0.28s both;
}

/* Media column */
.svc-panel__media-col {
  position: relative;
  overflow: hidden;
  border-left: 2px solid transparent;
  border-image: var(--grad-pink) 1;
  animation: svcImgReveal 0.52s 0.06s var(--ease) both;
}
.svc-panel__media-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
  /* Golden metallic filter */
  filter: sepia(0.20) contrast(1.1) saturate(1.0) brightness(.93);
}
.svc-panel__media-col:hover img,
.svc-panel__media-col:focus-visible img {
  transform: scale(1.04);
  filter: sepia(0.10) contrast(1.04) saturate(0.90) brightness(1.02);
}
.svc-panel__media-col:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

@keyframes svcImgReveal {
  from { opacity: 0; clip-path: inset(0 100% 0 0); }
  to   { opacity: 1; clip-path: inset(0 0% 0 0); }
}

.svc-media__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.svc-panel__media-col:hover .svc-media__overlay,
.svc-panel__media-col:focus-visible .svc-media__overlay { opacity: 1; }

.svc-media__overlay i {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
}

.svc-media__badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--black);
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  animation: svcBadgePop 0.42s 0.28s var(--ease-spring) both;
}

@keyframes svcFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes svcBadgePop {
  from { opacity: 0; transform: scale(0.6) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Responsive — panels go 2-col on large, 1-col on small */
@media (max-width: 1024px) {
  .svc-panel__copy { padding: 2rem 1.75rem 2rem 2rem; }
}
@media (max-width: 700px) {
  /* Stack copy + media vertically */
  .svc-panel { grid-template-columns: 1fr; }
  .svc-panel__media-col {
    order: -1;
    aspect-ratio: 16/9;
    border-left: none;
    border-bottom: 1px solid var(--border-subtle);
  }
  .svc-panel__copy { padding: 1.75rem 1.5rem; }
  /* Hide number/arrow labels — icon + label is enough */
  .svc-tab__num  { display: none; }
  .svc-tab__arrow { display: none; }
}
@media (max-width: 480px) {
  .svc-tab__label { display: none; }
  .svc-tab { padding: 0.6rem 0.7rem; }
  .svc-panel__copy { padding: 1.5rem 1rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 11. Gallery Section
 * ───────────────────────────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-40);
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Grid — 2 columns, editorial scale */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; gap: 1rem; } }

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-mid);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), outline-color var(--transition);
  position: relative;
  outline: 2px solid var(--pink);
  outline-offset: 0;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  outline-color: var(--pink-light);
}
.gallery-item.is-hidden { display: none; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Golden metallic cinematic filter */
  filter: sepia(0.20) contrast(1.1) saturate(1.0) brightness(.93);
  transition: transform var(--transition-slow), filter var(--transition-slow);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: sepia(0.10) contrast(1.04) saturate(0.88) brightness(1.04);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.gallery-item__overlay i {
  font-size: 1.5rem;
  color: var(--gold-light);
}
.gallery-item--video .gallery-item__overlay i { font-size: 2.6rem; }
.gallery-item__overlay span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-70);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.94);
}
.gallery-modal[hidden] { display: none; }

.gallery-modal__inner {
  position: relative;
  z-index: 1;
  background: var(--black-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: min(820px, 100%);
  overflow: hidden;
  animation: modalIn 0.26s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gallery-modal__close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  z-index: 2;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--white-20);
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.gallery-modal__close:hover {
  background: var(--gold);
  border-color: transparent;
  color: var(--black);
}

.gallery-modal__media {
  width: 100%;
  max-height: 70vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-modal__media img,
.gallery-modal__media video {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}
/* YouTube iframe — 16:9 responsive inside the modal */
.gallery-modal__media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  display: block;
  border: none;
}

.gallery-modal__info {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.gallery-modal__info h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.gallery-modal__info p {
  font-size: 0.85rem;
  color: var(--white-60);
  margin: 0;
  max-width: none;
  font-weight: 300;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 12. Testimonials Section
 * ───────────────────────────────────────────────────────────────────────── */
.testimonial-slider { position: relative; overflow: hidden; margin-top: 1rem; }
.testimonial-track  { display: flex; transition: transform 0.52s var(--ease); }
.testimonial-slide  { min-width: 100%; padding: 0.5rem; }

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 760px;
  margin-inline: auto;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--border-gold); }

@media (max-width: 600px) { .testimonial-card { padding: 1.5rem; } }
@media (max-width: 480px) { .testimonial-card { padding: 1.25rem 1rem; } }

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--white-90);
  margin-bottom: 1.5rem;
  max-width: none;
}

.testimonial-card__author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card__author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}
.testimonial-card__author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-card__author span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--white-40);
  letter-spacing: 0.06em;
  max-width: none;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  color: var(--white-40);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.testimonial-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-08);
}
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white-20);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 13. Contact Section
 * ───────────────────────────────────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--black-card);
  border: 1px solid var(--pink-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 4px 24px rgba(124,58,237,0.28);
}

.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--pink-12);
  outline: 2px solid var(--pink-dark);
  outline-offset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 0 auto 1.1rem;
  transition: background var(--transition), transform var(--transition);
}
/* Gradient icon colour via nested span wrapping the <i> */
.contact-card__icon i {
  background: var(--gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-card:hover .contact-card__icon {
  background: var(--pink-20);
  transform: scale(1.06);
}

.contact-card__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.contact-card__value {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: none;
  margin: 0;
  font-weight: 300;
}
.contact-card__value a {
  color: var(--white-60);
  transition: color var(--transition);
  word-break: break-word;
}
.contact-card__value a:hover { color: var(--white); }

/* CTA strip */
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.contact-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white-70);
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .contact-cta { flex-direction: column; gap: 1.25rem; padding: 1.5rem 1.25rem; }
  .contact-cta .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; gap: 0.875rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 14. FAQ Section
 * ───────────────────────────────────────────────────────────────────────── */
.faq__inner { max-width: 680px; }

.accordion { display: flex; flex-direction: column; margin-top: 1.5rem; }

.accordion-item { border-bottom: 1px solid var(--border-subtle); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white-70);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.accordion-trigger:hover { color: var(--white); }
.accordion-trigger[aria-expanded="true"] { color: var(--gold-light); }

.accordion-icon {
  font-size: 0.75rem;
  color: var(--white-30);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.accordion-panel { padding-bottom: 1.25rem; }
.accordion-panel[hidden] { display: none; }
.accordion-panel p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.80;
  margin: 0;
  max-width: none;
  font-weight: 300;
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 15. Footer
 * ───────────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-subtle);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-block: 4rem;
}
@media (max-width: 1024px) { .footer__grid { gap: 2rem; padding-block: 3rem; } }

.footer__brand p {
  font-size: 0.875rem;
  color: var(--white-40);
  margin-bottom: 1.5rem;
  max-width: 26ch;
  line-height: 1.7;
  font-weight: 300;
}
.footer__brand .navbar__logo { margin-bottom: 1rem; }

.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-08);
}

.footer__nav h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 1.25rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a {
  font-size: 0.875rem;
  color: var(--white-60);
  transition: color var(--transition);
  font-weight: 300;
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--white-30);
  margin: 0;
  max-width: none;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; padding-block: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; padding-block: 1.25rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 16. Back-to-Top Button
 * ───────────────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
}
.back-to-top:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top[hidden] { display: flex; opacity: 0; pointer-events: none; transform: translateY(8px); }
.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 17. Scroll Reveal Animations
 * ───────────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.20s; }
.reveal--delay-3 { transition-delay: 0.30s; }
.reveal--delay-4 { transition-delay: 0.40s; }
.reveal.visible  { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────────────────────
 * 18. Reduced Motion
 * ───────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────────────────────────────────────────────────────────────────────
 * 19. Language Switcher
 * ───────────────────────────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}
.lang-switcher__sep {
  color: var(--white-20);
  font-size: 0.65rem;
  user-select: none;
}
.lang-btn {
  background: none;
  border: none;
  padding: 0.22rem 0.38rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white-30);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover { color: var(--white); }
.lang-btn--active {
  color: var(--pink);
  background-image: var(--grad-pink);
  background-color: var(--pink-08);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lang-btn:focus-visible { outline: 1px solid var(--pink); outline-offset: 2px; }

.lang-switcher--mobile {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  justify-content: flex-start;
  gap: 0.3rem;
}
.lang-switcher--mobile .lang-btn { font-size: 0.75rem; padding: 0.3rem 0.55rem; }

@media (max-width: 900px) { .navbar > .lang-switcher { display: none; } }
