/* ============================================================
   GCK PRODUCTIONS · 2026
   Palette (inspired by the logo's cyan→magenta soundwave):
     --ink           #0a0a12   (near-black)
     --ink-deep      #050509
     --surface       #12121c
     --cyan          #00d4ff
     --magenta       #ff2d9a
     --purple        #8b3dff
     --gray          #c5cad4
     --gray-soft     #f2f3f7
============================================================ */

:root {
  --ink: #0a0a12;
  --ink-deep: #050509;
  --surface: #12121c;
  --surface-2: #1a1a28;
  --cyan: #00d4ff;
  --magenta: #ff2d9a;
  --purple: #8b3dff;
  --gray: #c5cad4;
  --gray-soft: #f2f3f7;
  --white: #ffffff;
  --muted: #6b7180;

  --grad: linear-gradient(90deg, var(--cyan) 0%, var(--purple) 50%, var(--magenta) 100%);
  --grad-rev: linear-gradient(90deg, var(--magenta) 0%, var(--purple) 50%, var(--cyan) 100%);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 450ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.01em;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 15px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--grad);
  background-size: 200% 100%;
  color: var(--white);
  box-shadow: 0 8px 28px -6px rgba(255, 45, 154, 0.5), 0 4px 16px -4px rgba(0, 212, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); background-position: 100% 0; box-shadow: 0 14px 40px -8px rgba(139, 61, 255, 0.7); }

.btn-ghost { color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--cyan); color: var(--cyan); }
.btn-ghost .arrow { transition: transform var(--dur) var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--ink-deep);
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; }
.topbar-item { display: flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 10px var(--cyan); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 50% { opacity: 0.4; } }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-link { transition: color var(--dur) var(--ease); }
.topbar-link:hover { color: var(--magenta); }
.topbar-sep { opacity: 0.3; }
@media (max-width: 720px) { .topbar-item { display: none; } .topbar-inner { justify-content: center; } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 18, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--dur) var(--ease);
}
.nav.scrolled { background: rgba(10, 10, 18, 0.96); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }

/* Gradient soundwave logo (CSS replica of the brand mark) */
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-wave { display: inline-flex; align-items: center; gap: 2px; height: 36px; }
.logo-wave span {
  display: block; width: 3px; border-radius: 2px;
  background: var(--grad); background-size: 100% 200%; background-position: 0 50%;
}
.logo-wave span:nth-child(1) { height: 18%; }
.logo-wave span:nth-child(2) { height: 32%; }
.logo-wave span:nth-child(3) { height: 50%; }
.logo-wave span:nth-child(4) { height: 70%; }
.logo-wave span:nth-child(5) { height: 100%; }
.logo-wave span:nth-child(6) { height: 70%; }
.logo-wave span:nth-child(7) { height: 50%; }
.logo-wave span:nth-child(8) { height: 32%; }
.logo-stack { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--font-sans); font-weight: 900; font-size: 18px; letter-spacing: -0.02em; }
.logo-sub { font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); margin-top: 3px; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--grad);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 32px; height: 32px; align-items: center; justify-content: center; }
.nav-burger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink-deep);
  color: var(--white);
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) 0 clamp(60px, 8vw, 120px);
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat;
  filter: saturate(1.25) contrast(1.08);
  opacity: 0.42;
  transform: scale(1.05);
}
.hero-photo-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,9,0.45) 0%, rgba(5,5,9,0.75) 55%, rgba(5,5,9,0.98) 100%),
    linear-gradient(90deg, rgba(255,45,154,0.12) 0%, transparent 50%, rgba(0,212,255,0.12) 100%);
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.6;
  animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 620px; height: 620px; background: var(--magenta); top: -200px; right: -150px; }
.orb-2 { width: 520px; height: 520px; background: var(--cyan); bottom: -200px; left: -120px; animation-delay: -7s; }
.orb-3 { width: 440px; height: 440px; background: var(--purple); top: 30%; left: 40%; animation-delay: -4s; opacity: 0.4; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.12); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner { position: relative; z-index: 2; max-width: 1080px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  color: var(--gray);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.pulse { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); animation: pulse 2s infinite; }
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7.5vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero-title .italic { color: var(--gray); }

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--gray);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 760px;
}
.stat-num { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 52px); font-weight: 500; letter-spacing: -0.02em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat-num span { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }
.stat-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-top: 8px; }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); opacity: 0.6; z-index: 2; }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--cyan), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.5); } }

/* ---------- Artist Marquee ---------- */
.clients { padding: 56px 0; background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.clients-label { text-align: center; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 32px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 40px; animation: scroll 55s linear infinite; width: max-content; }
@keyframes scroll { to { transform: translateX(-50%); } }
.client-logo {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2.3vw, 34px);
  color: var(--white); letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.client-logo:hover { opacity: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.client-dot { width: 6px; height: 6px; background: var(--grad); border-radius: 50%; flex: none; }

/* ---------- Section Heads ---------- */
.eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; margin-bottom: 18px; }
.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.section-head.small { margin-bottom: 40px; }
.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title.sm { font-size: clamp(28px, 3.5vw, 44px); }
.section-sub { font-size: 17px; color: var(--muted); max-width: 580px; margin: 0 auto; }

/* ---------- Services Bento ---------- */
.services { padding: clamp(80px, 10vw, 140px) 0; background: var(--gray-soft); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento-card {
  grid-column: span 2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  border: 1px solid rgba(10, 10, 18, 0.08);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.bento-card::before { content: ''; position: absolute; inset: 0; padding: 1px; background: var(--grad); border-radius: var(--radius-lg); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity var(--dur) var(--ease); pointer-events: none; }
.bento-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(139, 61, 255, 0.35); }
.bento-card:hover::before { opacity: 1; }

.bento-card.feature { grid-column: span 3; grid-row: span 2; background: linear-gradient(135deg, var(--ink-deep), var(--surface-2)); color: var(--white); border: 0; }
.bento-card.feature::after { content: ''; position: absolute; top: -60px; right: -60px; width: 260px; height: 260px; background: var(--magenta); opacity: 0.3; border-radius: 50%; filter: blur(80px); }
.bento-card.dark { grid-column: span 3; background: linear-gradient(135deg, var(--ink), var(--surface)); color: var(--white); border: 0; }
.bento-card.accent { grid-column: span 3; background: var(--grad); color: var(--white); border: 0; }

.bento-num {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  opacity: 0.55; letter-spacing: 0.1em;
  margin-bottom: 16px;
  position: relative;
}
.bento-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 12px; position: relative; }
.bento-card.feature h3 { font-size: 40px; line-height: 1.05; }
.bento-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); position: relative; }
.bento-card.feature p, .bento-card.dark p { color: var(--gray); }
.bento-card.accent p { color: rgba(255,255,255,0.92); }
.bento-icon { position: absolute; right: 28px; bottom: 28px; width: 48px; height: 48px; color: var(--cyan); opacity: 0.8; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card, .bento-card.feature, .bento-card.dark, .bento-card.accent { grid-column: span 1; grid-row: auto; }
}
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

/* ---------- Experiences ---------- */
.experiences { padding: clamp(80px, 10vw, 140px) 0; background: linear-gradient(180deg, rgba(5,5,9,0.97) 0%, rgba(5,5,9,0.92) 100%), url('images/home.jpg') center 55% / 180% no-repeat; color: var(--white); position: relative; overflow: hidden; }
.experiences::before { content: ''; position: absolute; top: 20%; left: -200px; width: 500px; height: 500px; background: var(--purple); opacity: 0.2; border-radius: 50%; filter: blur(140px); }
.experiences::after { content: ''; position: absolute; bottom: 10%; right: -200px; width: 500px; height: 500px; background: var(--magenta); opacity: 0.15; border-radius: 50%; filter: blur(140px); }
.experiences .container { position: relative; z-index: 1; }
.experiences .section-title { color: var(--white); }

.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .exp-grid { grid-template-columns: 1fr; } }

.exp-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white);
  transition: transform var(--dur) var(--ease);
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.08);
}
.exp-bg { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; z-index: -1; transition: transform 800ms var(--ease); filter: saturate(1.2) contrast(1.05); }
.exp-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5, 5, 9, 0.95) 0%, rgba(5, 5, 9, 0.3) 55%, rgba(5, 5, 9, 0.15) 100%); z-index: -1; }
.exp-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.exp-card:hover .exp-bg { transform: scale(1.08); }
.exp-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; margin-bottom: auto; }
.exp-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 8px; }
.exp-card p { font-size: 14px; color: var(--gray); }

/* ---------- About ---------- */
.about { padding: clamp(80px, 10vw, 140px) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.about .section-head { text-align: left; margin: 0; }
.about-copy .section-title { text-align: left; }
.about .lead { font-size: 20px; line-height: 1.55; color: var(--ink); margin-bottom: 20px; font-weight: 400; }
.about p { color: var(--muted); font-size: 16px; margin-bottom: 28px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { padding: 8px 16px; border-radius: 999px; background: var(--gray-soft); color: var(--ink); font-size: 13px; font-weight: 500; border: 1px solid rgba(10, 10, 18, 0.08); }

.about-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.metric { background: linear-gradient(135deg, var(--ink-deep), var(--surface-2)); color: var(--white); padding: 36px 28px; border-radius: var(--radius-lg); position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.metric::before { content: ''; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; filter: blur(50px); opacity: 0.55; }
.metric:nth-child(1)::before { background: var(--cyan); }
.metric:nth-child(2)::before { background: var(--magenta); }
.metric:nth-child(3)::before { background: var(--purple); }
.metric:nth-child(4)::before { background: var(--cyan); }
.metric-num { font-family: var(--font-display); font-weight: 500; font-size: 48px; line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; position: relative; }
.metric-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); position: relative; }

/* ---------- Case Studies ---------- */
.work { padding: clamp(80px, 10vw, 140px) 0; background: var(--gray-soft); }
.case-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

.case { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(10, 10, 18, 0.08); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); display: flex; flex-direction: column; }
.case:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(255, 45, 154, 0.35); }
.case-img { aspect-ratio: 16/10; position: relative; display: flex; align-items: flex-start; padding: 20px; }
.case-lg .case-img { aspect-ratio: 4/3; }
.case-tag { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: var(--white); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; border: 1px solid rgba(255,255,255,0.3); }
.case-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.case-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 10px; }
.case-body p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; flex: 1; line-height: 1.55; }
.case-link { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; font-size: 14px; transition: gap var(--dur) var(--ease); display: inline-flex; gap: 6px; }
.case-link:hover { gap: 12px; }

/* ---------- Testimonial ---------- */
.testimonial { padding: clamp(80px, 10vw, 140px) 0; background: linear-gradient(180deg, rgba(5,5,9,0.94) 0%, rgba(5,5,9,0.82) 50%, rgba(5,5,9,0.96) 100%), url('images/gallery.jpg') center 8% / 150% no-repeat; color: var(--white); text-align: center; position: relative; overflow: hidden; }
.testimonial::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: var(--purple); opacity: 0.15; border-radius: 50%; filter: blur(140px); }
.testimonial::after { content: ''; position: absolute; top: 30%; right: 10%; width: 300px; height: 300px; background: var(--magenta); opacity: 0.2; border-radius: 50%; filter: blur(100px); }
.testimonial .container { position: relative; z-index: 1; max-width: 960px; }
.quote-mark { font-family: var(--font-display); font-size: 180px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.5; height: 90px; }
.testimonial blockquote { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 4vw, 56px); line-height: 1.15; letter-spacing: -0.02em; margin: 20px 0 40px; }
.attr-name { font-weight: 600; font-size: 16px; }
.attr-role { font-size: 13px; color: var(--gray); letter-spacing: 0.05em; margin-top: 4px; }

/* ---------- Team ---------- */
.team { padding: clamp(80px, 10vw, 140px) 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--gray-soft); border-radius: var(--radius-lg); padding: 20px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); border: 1px solid rgba(10, 10, 18, 0.06); }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(139, 61, 255, 0.3); }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius); margin-bottom: 18px; display: grid; place-items: center; color: var(--white); font-family: var(--font-display); font-size: 44px; font-weight: 500; letter-spacing: -0.02em; }
.team-role { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; margin-bottom: 6px; }
.team-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.team-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Brands Strip ---------- */
.locations { padding: clamp(60px, 8vw, 100px) 0; background: var(--gray-soft); }
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc { background: var(--white); padding: 28px 24px; border-radius: var(--radius); border: 1px solid rgba(10, 10, 18, 0.08); transition: all var(--dur) var(--ease); }
.loc:hover { border-color: transparent; background: linear-gradient(var(--white), var(--white)) padding-box, var(--grad) border-box; border: 1px solid transparent; transform: translateY(-2px); }
.loc-more { background: linear-gradient(135deg, var(--ink-deep), var(--surface-2)); color: var(--white); border: 0; }
.loc-city { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 4px; }
.loc-more .loc-city { color: var(--white); }
.loc-tag { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.loc-more .loc-tag { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }

/* ---------- CTA ---------- */
.cta { padding: clamp(80px, 10vw, 140px) 0; background: var(--white); }
.cta-card { background: linear-gradient(135deg, var(--ink-deep) 0%, var(--surface) 60%, var(--surface-2) 120%); color: var(--white); border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 80px); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.cta-card::before { content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; background: var(--magenta); opacity: 0.35; border-radius: 50%; filter: blur(120px); }
.cta-card::after { content: ''; position: absolute; bottom: -120px; left: -120px; width: 420px; height: 420px; background: var(--cyan); opacity: 0.3; border-radius: 50%; filter: blur(120px); }
@media (max-width: 900px) { .cta-card { grid-template-columns: 1fr; } }
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 20px; }
.cta-copy p { color: var(--gray); font-size: 16px; margin-bottom: 32px; }
.cta-contact { display: flex; flex-direction: column; gap: 8px; }
.cta-phone { font-family: var(--font-display); font-size: 28px; font-weight: 500; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.01em; }
.cta-email { color: var(--gray); font-size: 15px; transition: color var(--dur) var(--ease); }
.cta-email:hover { color: var(--cyan); }

.cta-form { background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); padding: 32px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form label { display: flex; flex-direction: column; gap: 6px; }
.cta-form label span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); font-weight: 600; }
.cta-form input, .cta-form select, .cta-form textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.05); color: var(--white);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm);
  font: inherit; font-size: 14px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: 0; border-color: var(--cyan); background: rgba(0, 212, 255, 0.06); }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.cta-form select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2300d4ff' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.cta-form select option { background: var(--ink-deep); }
.cta-form textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.cta-success { display: none; align-items: center; gap: 8px; padding: 12px; background: rgba(0, 212, 255, 0.15); border: 1px solid var(--cyan); border-radius: var(--radius-sm); color: var(--cyan); font-size: 14px; font-weight: 500; }
.cta-success span { width: 20px; height: 20px; background: var(--cyan); color: var(--ink-deep); border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: var(--gray); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); display: grid; place-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.footer-social a:hover { background: var(--grad); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 12px; color: var(--muted); letter-spacing: 0.03em; gap: 20px; flex-wrap: wrap; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
