/* ============================================================
   GARY KEYZ — Urban · Artistic · Minimal · Premium
   Fonts: Bebas Neue (titles) · Space Grotesk (UI) · DM Sans (body)
   Palette: #0a0a0a dark · #c9a84c gold · #ffffff white · #888 silver
============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0a0a0a;
  color: #f0ede8;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ===== TOKENS ===== */
:root {
  --gold:      #c9a84c;
  --gold-l:    #e8c96a;
  --gold-d:    #9a7a30;
  --white:     #ffffff;
  --off:       #f0ede8;
  --silver:    #888888;
  --muted:     #555555;
  --dark:      #0a0a0a;
  --dark2:     #111111;
  --dark3:     #181818;
  --dark4:     #222222;

  --f-title:   'Bebas Neue', sans-serif;
  --f-ui:      'Space Grotesk', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  --sp:        clamp(72px, 10vw, 130px);
  --wrap:      1280px;
  --r:         3px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: block;
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--f-title);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.italic-accent {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.75em;
  color: var(--gold);
  letter-spacing: 0;
}

.section-sub {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--silver);
  max-width: 500px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.section-header .section-sub { margin-inline: auto; }

.rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-block: 28px;
}

/* ===== SEPARATOR LINES ===== */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.2), transparent);
}
.section-sep.top  { margin-bottom: var(--sp); }
.section-sep.bottom { margin-top: var(--sp); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-l);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,168,76,.35); }
.btn-primary span, .btn-primary > * { position: relative; z-index: 1; }
.btn-primary.large { padding: 16px 52px; font-size: 12px; }
.btn-primary.block-btn { width: 100%; justify-content: center; margin-top: 24px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 38px;
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.35s var(--ease);
}
.btn-outline:hover { background: rgba(201,168,76,.1); border-color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 38px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.35s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.04); transform: translateY(-2px); }
.btn-ghost.large { padding: 16px 52px; font-size: 12px; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 13px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.35s var(--ease);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,.3); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal-fade, .reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition:
    opacity  0.85s var(--ease),
    transform 0.85s var(--ease);
}
.reveal-fade  { transform: translateY(18px); }
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }
.reveal-scale { transform: scale(0.93) translateY(18px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== GLOBAL PARTICLES CANVAS ===== */
#globalParticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Ensure all content sits above the particle canvas */
#navbar       { z-index: 1000; }
#hero         { z-index: 1; }
#about        { position: relative; z-index: 1; }
#services     { position: relative; z-index: 1; }
#gallery      { position: relative; z-index: 1; }
#videos       { position: relative; z-index: 1; }
#clients      { position: relative; z-index: 1; }
#contact      { position: relative; z-index: 1; }
#cta          { position: relative; z-index: 1; }
#footer       { position: relative; z-index: 1; }

/* ===== CURSOR GLOW ===== */
#cursorGlow {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.12s linear, top 0.12s linear;
  left: -500px;
  top: -500px;
}

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease);
}
#navbar.scrolled {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201,168,76,.12);
}

.nav-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 22px clamp(20px,5vw,60px);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
/* Isotipo white PNG — already white on transparent, render as-is */
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s;
}
.logo-img:hover { opacity: .7; }
.logo-text-fallback {
  display: none;
  font-family: var(--f-title);
  font-size: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-book-btn {
  margin-left: 20px;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--f-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.nav-book-btn:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch a {
  padding: 6px 10px;
  font-family: var(--f-ui);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  transition: background 0.25s, color 0.25s;
}
.lang-switch a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.lang-switch a.active { color: var(--gold); background: rgba(201,168,76,.1); }
.lang-switch span {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Mobile language switcher */
.mobile-lang-switch {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-lang-switch a {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  transition: all 0.25s;
}
.mobile-lang-switch a:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.mobile-lang-switch a.active { color: var(--gold); border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.08); }

/* Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  padding-top: 88px;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 32px clamp(20px,6vw,60px) 48px;
  gap: 4px;
}
.mobile-link {
  display: block;
  padding: 18px 0;
  font-family: var(--f-title);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-book-btn {
  display: block;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  border-radius: var(--r);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
}

/* old hero canvas removed — using #globalParticles instead */

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 75% 55% at 50% 30%, rgba(201,168,76,.07) 0%, transparent 65%),
    linear-gradient(180deg, transparent 55%, rgba(10,10,10,.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px clamp(20px,5vw,60px) 80px;
  max-width: 960px;
  width: 100%;
}

.hero-logo-wrap { margin-bottom: 40px; }

/* Hero logo — mix-blend-mode: screen removes black bg from non-transparent PNGs.
   On a dark background, black pixels become invisible; white/colored pixels show through. */
.hero-logo {
  height: clamp(180px, 28vw, 300px);
  width: auto;
  max-width: 760px;
  object-fit: contain;
  margin-inline: auto;
  mix-blend-mode: screen;
  filter: none;
  opacity: 1;
}
.hero-logo-fallback {
  display: none;
  font-family: var(--f-title);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.15em;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--f-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: 'Sedgwick Ave Display', cursive;
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title .title-line { display: block; }
.hero-title .title-white {
  color: var(--white);
  text-shadow: 0 2px 32px rgba(255,255,255,.06);
}
.hero-title .title-gold  {
  color: var(--gold);
  text-shadow:
    0 0 25px rgba(212,175,55,.75),
    0 0 60px rgba(212,175,55,.4),
    0 0 110px rgba(212,175,55,.18);
}
.hero-title .title-sub {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 2.8vw, 2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 12px;
}

.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: rgba(240,237,232,.65);
  line-height: 1.85;
  margin-bottom: 52px;
  max-width: 520px;
  margin-inline: auto;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.6s ease-in-out infinite;
}
.scroll-cue .scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--gold));
}
.scroll-cue span {
  font-family: var(--f-ui);
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* ===== ABOUT ===== */
#about {
  padding-block: var(--sp);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .9s var(--ease);
}
.about-img-wrap:hover .about-img { transform: scale(1.04); }

.about-img-border {
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 2px;
  pointer-events: none;
}

.about-stat {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.stat-number {
  font-family: var(--f-title);
  font-size: 2.2rem;
  color: var(--dark);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-label {
  font-family: var(--f-ui);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.4;
}

.about-lead {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--off);
  line-height: 1.85;
  margin-bottom: 40px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pillar:last-child { border-bottom: none; padding-bottom: 0; }

.pillar-glyph {
  font-size: 1.3rem;
  width: 34px;
  flex-shrink: 0;
  text-align: center;
  color: var(--gold);
  margin-top: 2px;
}
.pillar-text strong {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.pillar-text p {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
#services {
  padding-block: var(--sp);
  background: var(--dark2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  padding: 34px 26px 30px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 4px;
  background: rgba(255,255,255,.018);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.03);
}
.service-card:hover .card-line { transform: scaleX(1); }

.card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 16px 2px rgba(201,168,76,.4);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: var(--f-ui);
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.service-card p {
  font-size: .82rem;
  color: var(--silver);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
#gallery { padding-block: var(--sp); }

.gallery-masonry {
  columns: 3;
  column-gap: 10px;
}

.g-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform .7s var(--ease);
}
.g-item:hover img { transform: scale(1.05); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s var(--ease);
}
.g-overlay span {
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--white);
  opacity: 0;
  transform: scale(.5);
  transition: all .4s var(--ease);
}
.g-item:hover .g-overlay { background: rgba(0,0,0,.45); }
.g-item:hover .g-overlay span { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lb-close, .lb-arrow {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: all .3s var(--ease);
}
.lb-close { top: 24px; right: 24px; font-size: 1.7rem; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lb-close:hover, .lb-arrow:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ===== VIDEOS ===== */
#videos { padding-block: var(--sp); background: var(--dark2); }

.video-featured { margin-bottom: 20px; }

.v-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dark3);
}
.featured-thumb { aspect-ratio: 16/9; }
.video-card .v-thumb { aspect-ratio: 16/9; }

.v-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--ease), filter .55s var(--ease);
}
.v-thumb:hover img { transform: scale(1.04); filter: brightness(.55); }

.v-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.2);
  transition: background .4s var(--ease);
}
.v-thumb:hover .v-overlay { background: rgba(0,0,0,.45); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all .35s var(--ease);
  cursor: pointer;
}
.play-btn svg { width: 20px; height: 20px; margin-left: 3px; }
.v-thumb:hover .play-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 30px rgba(201,168,76,.5);
}

.v-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--f-ui);
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  z-index: 2;
  letter-spacing: .06em;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

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

/* Video Modal */
.v-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.v-modal.open { opacity: 1; pointer-events: all; }

.v-modal-inner {
  position: relative;
  width: min(920px, 94vw);
}
.v-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.v-modal-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.v-modal-frame {
  aspect-ratio: 16/9;
  background: var(--dark4);
  border-radius: 4px;
  overflow: hidden;
}
.v-modal-frame iframe { width: 100%; height: 100%; }

/* ===== CLIENTS ===== */
#clients { padding-block: var(--sp); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px 20px 20px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: all .4s var(--ease);
  text-align: center;
}
.client-logo:hover {
  border-color: rgba(201,168,76,.35);
  background: rgba(255,255,255,.04);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px rgba(201,168,76,.1), 0 16px 40px rgba(0,0,0,.5);
}

/* Fixed image container — all logos occupy the exact same bounding box */
.client-logo-img-wrap {
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-logo img {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .72;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  display: block;
}
.client-logo:hover img {
  opacity: 1;
  transform: scale(1.06);
}

/* Partner name label */
.client-name {
  font-family: var(--f-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  line-height: 1.5;
  transition: color .4s var(--ease);
}
.client-name small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .05em;
  color: rgba(255,255,255,.2);
  text-transform: none;
}
.client-logo:hover .client-name { color: var(--gold); }
.client-logo:hover .client-name small { color: rgba(201,168,76,.55); }

/* ===== CONTACT ===== */
#contact { padding-block: var(--sp); background: var(--dark2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.contact-body {
  font-size: .95rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-list { display: flex; flex-direction: column; gap: 14px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  background: rgba(255,255,255,.02);
  transition: all .35s var(--ease);
}
.contact-row:hover {
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.04);
  transform: translateX(6px);
}
.c-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.c-label {
  display: block;
  font-family: var(--f-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.c-val {
  display: block;
  font-size: .9rem;
  color: var(--off);
}

.social-block {
  padding: 36px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  background: rgba(255,255,255,.02);
}
.social-heading {
  font-family: var(--f-ui);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.social-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  background: rgba(255,255,255,.02);
  transition: all .35s var(--ease);
}
.s-icon { width: 20px; height: 20px; flex-shrink: 0; transition: color .3s; }
.s-name { font-family: var(--f-ui); font-size: .88rem; font-weight: 500; color: var(--white); flex: 1; }
.s-handle { font-size: .78rem; color: var(--muted); }

.social-row.instagram:hover { border-color: rgba(228,64,95,.4); background: rgba(228,64,95,.06); }
.social-row.instagram:hover .s-icon { color: #e4405f; }
.social-row.tiktok:hover   { border-color: rgba(100,212,209,.4); background: rgba(100,212,209,.06); }
.social-row.tiktok:hover .s-icon   { color: #64d4d1; }
.social-row.youtube:hover  { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.06); }
.social-row.youtube:hover .s-icon  { color: var(--gold); }

/* ===== CTA ===== */
#cta {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

.cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(201,168,76,.07) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-block: var(--sp);
}

.cta-title {
  font-family: var(--f-title);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-sub {
  font-size: .95rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 580px;
  margin-inline: auto;
  display: block;
  margin-bottom: 48px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
#footer { background: var(--dark); padding-bottom: 40px; }

.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.25), transparent);
  margin-bottom: 52px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

/* Footer logo — mix-blend-mode removes black bg from logo-7.PNG */
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: none;
  opacity: 1;
  margin-bottom: 10px;
}
.footer-logo-fallback {
  display: none;
  font-family: var(--f-title);
  font-size: 1.6rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .07em;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.footer-socials a svg { width: 15px; height: 15px; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .videos-grid   { grid-template-columns: repeat(3, 1fr); }
  .clients-grid  { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links, .nav-book-btn { display: none; }
  .nav-toggle { display: flex; }
  .lang-switch { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 4/3; max-width: 460px; }
  .about-stat { right: 0; bottom: -16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-socials { justify-content: flex-start; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-thumb { aspect-ratio: 16/9; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-buttons { gap: 10px; }
  .btn-primary, .btn-outline, .btn-ghost { padding: 12px 26px; }
}

@media (max-width: 520px) {
  .gallery-masonry { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(3.5rem, 17vw, 6rem); }
  .social-block { padding: 24px 18px; }
  #footer { padding-bottom: 28px; }
}
