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

:root {
  --white:       #ffffff;
  --off-white:   #f8f8fa;
  --silver-50:   #f4f4f6;
  --silver-100:  #ebebef;
  --silver-200:  #d8d8e0;
  --silver-300:  #b8b8c8;
  --silver-400:  #9898b0;
  --silver-500:  #787898;
  --ink:         #0f0f14;
  --ink-80:      #2a2a35;
  --ink-60:      #50505f;
  --ink-40:      #8888a0;
  --accent:      #9898b0;
  --accent-dark: #5a5a78;
  --lime:        #B6FF14;
  --lime-dark:   #8fcc00;
  --lime-muted:  rgba(182, 255, 20, 0.12);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --font-sans:   'Inter', system-ui, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;

  --nav-h:       64px;
  --section-gap: 120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--silver-50); }
::-webkit-scrollbar-thumb { background: var(--silver-300); border-radius: 3px; }

/* ── NAVIGATION ──────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(15, 15, 20, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s, background 0.3s;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--silver-100);
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.nav-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
#navbar.scrolled .nav-brand { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--ink-60); }
#navbar.scrolled .nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  background: var(--lime);
  color: var(--ink) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(182,255,20,0.3);
}
.nav-links .nav-cta:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(182,255,20,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
#navbar.scrolled .hamburger span { background: var(--ink); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(182,255,20,0.35);
}
.btn-primary:hover {
  background: var(--lime-dark);
  box-shadow: 0 8px 32px rgba(182,255,20,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }

.btn-large { padding: 16px 36px; font-size: 1rem; }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-80) 100%);
  z-index: 0;
}

/* Silver liquid texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  opacity: 0.09;
  mix-blend-mode: screen;
}

/* Subtle dark vignette to keep text crisp */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 30% 50%, transparent 40%, rgba(0,0,0,0.35) 100%);
}

.hero-grid { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(182,255,20,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(182,255,20,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(182,255,20,0.12); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}
.headline-accent {
  color: var(--lime);
  font-style: italic;
  text-shadow: 0 0 40px rgba(182,255,20,0.3);
}

.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }


.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--ink-40), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── SECTION SHARED ──────────────────────────────────────────── */
section { padding-block: var(--section-gap); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-40);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 4px;
}
.section-tag::before {
  display: none;
  content: '';
  width: 0;
  height: 0;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--ink-60);
  max-width: 520px;
  margin-inline: auto;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
#about { background: var(--white); }

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Top row: photo + bio */
.about-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

/* Photo column */
.about-photo-col {}

.about-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  position: relative;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1.5px solid rgba(182,255,20,0.3);
  pointer-events: none;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-text .section-title { margin-bottom: 20px; }

.about-bio {
  font-size: 0.97rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 16px;
}

.niche-block { margin-top: 32px; }
.niche-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-40);
  margin-bottom: 12px;
}
.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.niche-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--silver-50);
  border: 1px solid var(--silver-200);
  color: var(--ink-60);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.niche-tag:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

/* Services — full width, 2-col grid */
.about-services {
  position: relative;
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 40px 40px 32px;
  overflow: hidden;
}
.about-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
  border-radius: var(--radius-xl);
}
.services-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: opacity 0.2s;
}
.service-item:hover { opacity: 0.8; }
/* remove bottom border on last row (items 4 & 5) */
.service-item:nth-child(4),
.service-item:nth-child(5) { border-bottom: none; padding-bottom: 0; }
/* remove top padding on first row */
.service-item:nth-child(1),
.service-item:nth-child(2) { padding-top: 0; }
/* right column gets left padding for separator feel */
.service-item:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.07); }

.service-icon {
  font-size: 1rem;
  width: 34px; height: 34px;
  min-width: 34px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.service-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-top { grid-template-columns: 160px 1fr; gap: 32px; }
  .services-list { grid-template-columns: 1fr; }
  .service-item:nth-child(even) { padding-left: 0; border-left: none; }
  .service-item:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 20px; }
  .service-item:nth-child(5) { border-bottom: none; }
}

@media (max-width: 640px) {
  .about-top { grid-template-columns: 1fr; }
  .about-photo-wrap { aspect-ratio: 1 / 1; max-width: 160px; }
  .about-services { padding: 28px 24px; }
}

/* ── BRANDS ──────────────────────────────────────────────────── */
#brands {
  padding-block: 48px;
  background: var(--silver-50);
  border-top: 1px solid var(--silver-100);
  border-bottom: 1px solid var(--silver-100);
}
.brands-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 24px;
}
.brands-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.brands-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver-400);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand-sep { color: var(--silver-300); flex-shrink: 0; }

/* ── WORK ─────────────────────────────────────────────────────── */
#work { background: var(--white); }

.work-category { margin-bottom: 64px; }
.work-category:last-child { margin-bottom: 0; }

.category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.category-icon { font-size: 1.2rem; }
.category-label h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.category-count {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--ink-40);
  background: var(--silver-100);
  padding: 3px 10px;
  border-radius: 100px;
}

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

.work-card {
  background: var(--white);
  border: 1px solid var(--silver-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: pointer;
}
.work-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: var(--silver-200);
}

.card-media {
  position: relative;
  aspect-ratio: 9/12;
  background: linear-gradient(135deg, var(--silver-100) 0%, var(--silver-200) 100%);
}
/* Video cards */
.card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.work-card:hover .card-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}
.work-card:hover .card-video { cursor: pointer; }

.card-mute-btn {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 3;
}
.work-card:hover .card-mute-btn {
  opacity: 1;
  transform: scale(1);
}

.card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.placeholder-icon {
  font-size: 2rem;
  color: var(--silver-400);
}
.placeholder-label {
  font-size: 0.72rem;
  color: var(--silver-400);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-platform {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.card-platform.niche-beauty       { background: rgba(220, 80, 130, 0.82); color: #fff; }
.card-platform.niche-health       { background: rgba(16, 155, 90, 0.82);  color: #fff; }
.card-platform.niche-supplements  { background: rgba(182, 255, 20, 0.88); color: var(--ink); }
.card-platform.niche-grooming     { background: rgba(30, 160, 180, 0.82); color: #fff; }
.card-platform.niche-vpn          { background: rgba(70, 100, 220, 0.85); color: #fff; }
.card-platform.niche-sports       { background: rgba(220, 100, 20, 0.85); color: #fff; }
.card-platform.niche-lifestyle    { background: rgba(120, 80, 200, 0.82); color: #fff; }
.card-platform.niche-consumer     { background: rgba(50, 55, 80, 0.75);   color: #e0e4ff; }

.card-info { padding: 16px; }
.card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--silver-100);
  padding-top: 12px;
}
.metric {
  flex: 1;
  text-align: center;
  padding-inline: 4px;
}
.metric + .metric { border-left: 1px solid var(--silver-100); }
.metric-val {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lime-dark);
  letter-spacing: -0.01em;
}
.metric-key {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-40);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ── BEST PERFORMERS ─────────────────────────────────────────── */
#best-performers {
  background: var(--silver-100);
  border-top: 1px solid var(--silver-200);
  border-bottom: 1px solid var(--silver-200);
}

.performers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.performer-card {
  position: relative;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-80) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: box-shadow 0.25s, transform 0.25s;
  color: var(--white);
  overflow: hidden;
}
.performer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
}
.performer-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.performer-large {
  position: relative;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-80) 100%);
  color: var(--white);
  grid-column: 1;
  overflow: hidden;
}
.performer-large::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  opacity: 0.09;
  mix-blend-mode: screen;
  pointer-events: none;
}

.performer-badge {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.45);
}
.performer-large .performer-badge { color: rgba(255,255,255,0.5); }

.performer-stat {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.performer-large .performer-stat { color: var(--white); }

.performer-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.performer-large .performer-label { color: rgba(255,255,255,0.5); }

.performer-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.performer-large .performer-desc { color: rgba(255,255,255,0.7); }

.performer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.performer-large .tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

.performer-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(182,255,20,0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.performer-link:hover { border-color: var(--lime); }
.performer-large .performer-link {
  color: var(--lime);
  border-color: rgba(182,255,20,0.4);
}
.performer-large .performer-link:hover { border-color: var(--lime); }

/* ── PROCESS ──────────────────────────────────────────────────── */
#process { background: var(--silver-100); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 36px 32px;
  background: linear-gradient(145deg, var(--ink) 0%, var(--ink-80) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.process-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 24px;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.step-content p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.step-arrow { display: none; }

/* ── STATS ────────────────────────────────────────────────────── */
#stats {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
/* silver liquid texture blended into the dark background */
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
}
#stats .section-tag { color: rgba(255,255,255,0.6); border-bottom-color: var(--lime); }
#stats .section-title { color: var(--white); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  padding: 52px 40px;
  text-align: center;
  transition: background 0.25s;
}
.stat-card:hover { background: rgba(255,255,255,0.08); }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: inline;
}
.stat-unit {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--silver-400);
  display: inline;
  vertical-align: baseline;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 12px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
#testimonials {
  background: var(--silver-50);
  border-top: 1px solid var(--silver-100);
  border-bottom: 1px solid var(--silver-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--silver-100);
  border-radius: var(--radius-xl);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--lime);
  font-family: Georgia, serif;
  opacity: 0.35;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink-60);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--ink-40);
  font-weight: 500;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT ──────────────────────────────────────────────────── */
#contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-text .section-title { text-align: left; }
.contact-text .section-sub { text-align: left; margin-inline: 0; margin-bottom: 32px; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent-dark); }
.contact-link-icon {
  width: 36px; height: 36px;
  background: var(--silver-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.contact-cta-box {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  overflow: hidden;
  background: url('bg-silver.jpg.png') center / cover no-repeat;
  isolation: isolate;
}
.contact-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 14, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 0;
}
.contact-cta-box > * {
  position: relative;
  z-index: 1;
}
.cta-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.cta-box-headline {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  line-height: 1.25;
  color: var(--white);
}
.cta-box-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── FOOTER ───────────────────────────────────────────────────── */
#footer {
  background: var(--silver-50);
  border-top: 1px solid var(--silver-100);
  padding-block: 40px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.footer-title {
  font-size: 0.75rem;
  color: var(--ink-40);
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  text-decoration: none;
  color: var(--ink-60);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-40);
}

/* ── PAGE LOAD ANIMATION ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge    { animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.hero-headline { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s both; }
.hero-sub      { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
.hero-actions  { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both; }

/* ── FOOTER SOCIAL ───────────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-60);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--ink); }

/* ── REVEAL ANIMATION ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .work-grid          { grid-template-columns: repeat(2, 1fr); }
  .performers-grid    { grid-template-columns: 1fr 1fr; }
  .performer-large    { grid-column: 1 / -1; }
  .process-steps      { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .contact-inner      { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--silver-100);
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .work-grid          { grid-template-columns: 1fr 1fr; }
  .performers-grid    { grid-template-columns: 1fr; }
  .process-steps      { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-inner       { flex-direction: column; text-align: center; }
  .footer-links       { flex-wrap: wrap; justify-content: center; }
  .footer-social      { justify-content: center; }
}

@media (max-width: 480px) {
  .work-grid  { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
