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

:root {
  /* Cores principais */
  --night:     #07080f;
  --dark:      #0d0f1e;
  --mid:       #131627;
  --card:      #181b2e;
  --border:    #252848;
  --muted:     #5a5f8a;
  --text:      #b8bde0;
  --white:     #f0eeff;

  /* Acentos */
  --gold:      #ffd166;
  --gold-lt:   #ffe59a;
  --coral:     #ff7c6e;
  --purple:    #9b72cf;
  --purple-lt: #c4a6ef;
  --teal:      #4ecdc4;
  --pink:      #f472b6;

  /* Gradientes */
  --grad-hero:    linear-gradient(135deg, #0d0f1e 0%, #1a1040 50%, #0d0f1e 100%);
  --grad-gold:    linear-gradient(135deg, var(--gold), var(--coral));
  --grad-magic:   linear-gradient(135deg, var(--purple), var(--teal));

  --font-round: 'Nunito', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--night);
  color: var(--text);
  font-family: var(--font-round);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ─── Stars canvas ─── */
.stars-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

/* ─── Typography ─── */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.label::before {
  content: '✦ ';
  opacity: .7;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.text-center { text-align: center; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 8rem 0; position: relative; z-index: 1; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  font-family: var(--font-round);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--grad-gold);
  color: var(--night);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255,209,102,.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(155,114,207,.4);
}
.btn--ghost:hover {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(155,114,207,.15);
}
.btn--full { width: 100%; justify-content: center; border-radius: 12px; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: background .5s, padding .5s, backdrop-filter .5s;
}
.nav.scrolled {
  background: rgba(7,8,15,.88);
  backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -.01em;
  transition: transform .3s var(--bounce);
}
.nav__logo:hover { transform: scale(1.05); }
.nav__logo span { color: var(--gold); margin-left: 2px; }

.nav__links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav__links a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text);
  transition: color .3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: rgba(255,209,102,.12) !important;
  border: 1.5px solid rgba(255,209,102,.35) !important;
  color: var(--gold) !important;
  padding: .5rem 1.3rem;
  border-radius: 100px;
  transition: all .3s !important;
}
.nav__cta:hover { background: var(--gold) !important; color: var(--night) !important; }
.nav__cta::after { display: none !important; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 200; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.2rem 0; }
.mobile-menu ul li a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color .3s;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

/* YouTube background */
.hero__yt-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  opacity: .45;
  pointer-events: none;
}
.hero__yt {
  position: absolute;
  top: 50%; left: 50%;
  /* mantém 16:9 e cobre qualquer viewport */
  width: max(100%, 177.78vh);
  height: max(56.25vw, 100%);
  transform: translate(-50%, -50%);
  border: none;
}

/* Overlay de contraste sobre o vídeo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(7,8,15,.9) 0%, rgba(7,8,15,.65) 55%, rgba(7,8,15,.4) 100%),
    linear-gradient(to top,   rgba(7,8,15,.85) 0%, transparent 55%);
  pointer-events: none;
}

/* Glows ambientais */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .28;
  pointer-events: none;
  z-index: 2;
}
.hero__glow--gold {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,209,102,.6), transparent 70%);
  top: -10%; right: -5%;
  animation: glowDrift1 14s ease-in-out infinite alternate;
}
.hero__glow--purple {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155,114,207,.5), transparent 70%);
  bottom: 0%; left: 5%;
  animation: glowDrift2 18s ease-in-out infinite alternate;
}
.hero__glow--coral {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,124,110,.4), transparent 70%);
  top: 40%; left: 40%;
  animation: glowDrift3 22s ease-in-out infinite alternate;
}
@keyframes glowDrift1 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-40px, 60px) scale(1.1); } }
@keyframes glowDrift2 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(50px,-40px) scale(1.15); } }
@keyframes glowDrift3 { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-30px,30px) scale(.9); } }

/* Elementos flutuantes */
.hero__floats { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.float {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255,209,102,.3);
  animation: floatUp 20s linear infinite;
}
.float--star  { left: 8%;  bottom: -10%; animation-duration: 16s; font-size: 1.2rem; }
.float--star2 { left: 15%; bottom: -10%; animation-duration: 22s; animation-delay: -8s; color: rgba(155,114,207,.4); }
.float--planet{ left: 78%; bottom: -10%; animation-duration: 25s; animation-delay: -5s; font-size: 1rem; }
.float--moon  { left: 88%; bottom: -10%; animation-duration: 19s; animation-delay: -12s; font-size: 1.4rem; color: rgba(196,166,239,.35); }
.float--spark { left: 55%; bottom: -10%; animation-duration: 17s; animation-delay: -3s; font-size: .9rem; color: rgba(78,205,196,.4); }
.float--dot   { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; left: 30%; bottom: -5%; animation-duration: 12s; }
.float--dot2  { width: 3px; height: 3px; background: var(--purple); border-radius: 50%; left: 62%; bottom: -5%; animation-duration: 15s; animation-delay: -6s; }
.float--dot3  { width: 5px; height: 5px; background: var(--coral); border-radius: 50%; left: 45%; bottom: -5%; animation-duration: 11s; animation-delay: -2s; }

@keyframes floatUp {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 3rem;
  margin-top: 5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,209,102,.08);
  border: 1px solid rgba(255,209,102,.2);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  transition-delay: .1s;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  transition-delay: .2s;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  transition-delay: .35s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  transition-delay: .5s;
}

.hero__awards {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--muted);
  transition-delay: .65s;
}
.hero__awards .sep { color: var(--border); }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(155,114,207,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  margin: 0 auto;
}
.hero__scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ─── About ─── */
.about { background: var(--dark); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.about__visual { position: relative; }
.about__img-wrap {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img-bg {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(155,114,207,.25), rgba(255,209,102,.1) 60%, transparent 80%);
  border: 1px solid rgba(155,114,207,.15);
  position: relative;
}
.about__img-bg::before {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: rgba(255,209,102,.15);
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }

.about__img-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  font-size: .82rem;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: cardFloat 6s ease-in-out infinite;
}
.about__img-card span { font-size: 1.4rem; }
.about__img-card p { font-weight: 600; color: var(--white); line-height: 1.3; }

.about__img-card--1 { top: 10%; left: -5%; animation-delay: 0s; }
.about__img-card--2 { bottom: 20%; right: -8%; animation-delay: -2s; }
.about__img-card--3 { bottom: 5%;  left: 5%; animation-delay: -4s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.about__text { font-size: .95rem; color: var(--text); margin-bottom: 1.2rem; line-height: 1.8; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat__num {
  display: inline;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__plus { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.stat__label {
  display: block;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* ─── Services ─── */
.services { background: var(--night); }
.services__sub { color: var(--text); font-size: .95rem; margin-bottom: 4rem; margin-top: -.5rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,114,207,.06), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  border-radius: 20px;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155,114,207,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(155,114,207,.1);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon { font-size: 2rem; margin-bottom: 1.2rem; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .7rem;
}
.service-card > p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.service-card__list li {
  font-size: .8rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.service-card__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: .5rem;
  color: var(--gold);
  top: .3em;
}

.service-card__tag {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--mid);
  border: 1px solid var(--border);
  padding: .2rem .7rem;
  border-radius: 100px;
}

.service-card--highlight {
  background: linear-gradient(135deg, #1a1040, #251050);
  border-color: rgba(255,209,102,.25);
}
.service-card--highlight::before {
  background: linear-gradient(135deg, rgba(255,209,102,.08), transparent 60%);
  opacity: 1;
}
.service-card--highlight h3 { color: var(--gold); }
.service-card--highlight .service-card__tag { border-color: rgba(255,209,102,.3); color: var(--gold); }

/* ─── Work ─── */
.work { background: var(--dark); }
.work .container { margin-bottom: 2.5rem; }

.work__filters {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.filter {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--font-round);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s;
}
.filter.active, .filter:hover {
  background: rgba(255,209,102,.1);
  border-color: rgba(255,209,102,.4);
  color: var(--gold);
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  auto-rows: 280px;
  gap: 4px;
  padding: 0 1rem;
  grid-auto-flow: dense;
}

.work__loading {
  grid-column: span 3;
  text-align: center;
  padding: 4rem;
  color: var(--muted);
  font-size: .9rem;
}

.work-item { overflow: hidden; position: relative; border-radius: 2px; aspect-ratio: 4/3; }
.work-item--wide { grid-column: span 2; }
.work-item--tall { grid-row: span 2; aspect-ratio: auto; }

.work-item__img {
  width: 100%; height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform .8s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-item:hover .work-item__img { transform: scale(1); }

.work-item__art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.art-char { font-size: 5rem; opacity: .25; filter: blur(2px); }

.art-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
  animation: artPulse 6s ease-in-out infinite alternate;
}
.art-circle--1 { width: 200px; height: 200px; background: var(--purple); top: 20%; left: 20%; }
.art-circle--2 { width: 120px; height: 120px; background: var(--gold); bottom: 20%; right: 20%; animation-delay: -3s; }
.art-circle--3 { width: 180px; height: 180px; background: var(--teal); top: 30%; left: 30%; }
.art-circle--4 { width: 150px; height: 150px; background: var(--coral); top: 10%; right: 15%; animation-delay: -2s; }
.art-circle--5 { width: 200px; height: 200px; background: var(--gold); bottom: 10%; left: 20%; animation-delay: -4s; }
.art-circle--6 { width: 160px; height: 160px; background: var(--purple); top: 30%; left: 25%; }
.art-circle--7 { width: 120px; height: 120px; background: var(--gold); top: 15%; left: 15%; }
.art-circle--8 { width: 220px; height: 220px; background: var(--pink); bottom: 5%; right: 10%; opacity: .1; animation-delay: -5s; }
@keyframes artPulse { 0% { transform: scale(1); } 100% { transform: scale(1.3); } }

.work-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(7,8,15,.9) 0%, rgba(7,8,15,.3) 50%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.work-item:hover .work-item__overlay { opacity: 1; transform: translateY(0); }

.work-item__cat {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.work-item__overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: .25rem;
}
.work-item__overlay p { font-size: .8rem; color: rgba(200,200,200,.6); margin-bottom: .6rem; }
.work-item__award {
  font-size: .72rem;
  color: var(--gold);
  background: rgba(255,209,102,.1);
  border: 1px solid rgba(255,209,102,.2);
  padding: .2rem .7rem;
  border-radius: 100px;
  display: inline-block;
}

/* ─── Process ─── */
.process { background: var(--night); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.process-step {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background .3s;
}
.process-step:hover { background: var(--card); }
.process-step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,209,102,.12);
  line-height: 1;
  margin-bottom: 1.2rem;
  transition: color .3s;
}
.process-step:hover .process-step__num { color: rgba(255,209,102,.25); }
.process-step__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.process-step__body p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ─── Testimonials ─── */
.testimonials { background: var(--dark); }

.partners-panel {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 24px 60px rgba(7, 10, 18, .24);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonials__grid--logos {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.partner-logo {
  background: #fff;
  border: 1px solid rgba(13, 16, 28, .08);
  border-radius: 20px;
  min-height: 120px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 168, 51, .28);
  box-shadow: 0 16px 30px rgba(13, 16, 28, .12);
}

.partner-logo img {
  width: 100%;
  max-width: 160px;
  max-height: 64px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ─── Media Page ─── */
body.media-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 209, 102, .14), transparent 30%),
    radial-gradient(circle at top right, rgba(155, 114, 207, .12), transparent 28%),
    linear-gradient(180deg, #090b14 0%, #0d0f1e 45%, #08090f 100%);
}

.media-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 15, .76);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.media-topbar__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.media-topbar__brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.media-topbar__brand span { color: var(--gold); }

.media-topbar__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.media-topbar__nav a {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.media-topbar__nav a:not(.nav__cta) {
  color: var(--text);
}

.media-topbar__nav a:not(.nav__cta):hover {
  color: var(--white);
}

.media-hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.media-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.media-hero__content {
  padding: 0;
}

.media-hero__text {
  max-width: 58ch;
  color: var(--text);
  font-size: 1rem;
}

.media-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.media-clippings__intro {
  max-width: 56ch;
  margin: 0 auto 3rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.media-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.75rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,244,251,.96));
  border: 1px solid rgba(13, 16, 28, .08);
  box-shadow: 0 18px 40px rgba(4, 7, 15, .18);
}

.media-card--wide {
  grid-column: span 2;
}

.media-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.media-card__source {
  color: #6e5e28;
  font-weight: 800;
}

.media-card__meta time {
  color: #6e738f;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.media-card h3 {
  font-size: 1.22rem;
  line-height: 1.35;
  color: #101322;
}

.media-card p {
  color: #505777;
  line-height: 1.7;
}

.media-card a {
  margin-top: auto;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a6212;
}

.media-card a:hover {
  color: #5e420b;
}

.media-cta {
  padding-top: 0;
}

.media-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.25rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  flex-wrap: wrap;
}

.media-cta__inner .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Cookie Consent ─── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, rgba(13, 15, 30, 0.95), rgba(19, 22, 39, 0.95));
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.cookie-consent.visible {
  max-height: 300px;
}

.cookie-consent__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-consent__content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cookie-consent__content p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.cookie-consent__content a {
  color: var(--gold);
  transition: color 0.3s;
}

.cookie-consent__content a:hover {
  color: var(--gold-lt);
}

.cookie-consent__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn--ghost.btn--sm {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--ghost.btn--sm:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--primary.btn--sm {
  background: var(--grad-gold);
  color: var(--night);
}

.btn--primary.btn--sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 209, 102, 0.3);
}

@media (max-width: 900px) {
  .cookie-consent__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cookie-consent__actions {
    justify-content: stretch;
  }
  
  .btn--sm {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .cookie-consent {
    padding: 1rem;
  }
  
  .cookie-consent.visible {
    max-height: 400px;
  }
  
  .cookie-consent__content h3 {
    font-size: 1rem;
  }
  
  .cookie-consent__content p {
    font-size: 0.8rem;
  }
  
  .cookie-consent__actions {
    gap: 0.5rem;
  }
  
  .btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

/* ─── Privacy ─── */
.privacy-content {
  padding: 5rem 0;
}

.privacy-content__wrapper {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.privacy-nav {
  position: sticky;
  top: 100px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 1.75rem;
  height: fit-content;
}

.privacy-nav__label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.privacy-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.privacy-nav a {
  font-size: .9rem;
  color: var(--text);
  transition: color .3s;
  position: relative;
  padding-left: .8rem;
}

.privacy-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.privacy-nav a:hover {
  color: var(--white);
}

.privacy-article {
  line-height: 1.8;
}

.privacy-article h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.privacy-article h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.privacy-article p {
  color: var(--text);
  margin-bottom: 1.2rem;
}

.privacy-article ul {
  list-style: none;
  margin: 1.2rem 0 1.2rem 1.6rem;
}

.privacy-article li {
  margin-bottom: .8rem;
  padding-left: 1.2rem;
  color: var(--text);
  position: relative;
}

.privacy-article li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.privacy-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, .04);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.privacy-contact div {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.privacy-contact strong {
  color: var(--white);
  font-size: .9rem;
}

.privacy-contact a {
  color: var(--gold);
  transition: color .3s;
}

.privacy-contact a:hover {
  color: var(--gold-lt);
}

/* ─── Contact ─── */
.contact { background: var(--night); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc { font-size: .95rem; color: var(--text); margin-bottom: 2rem; line-height: 1.8; }

.contact__info { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.contact__info-item { display: flex; align-items: center; gap: .8rem; font-size: .9rem; color: var(--text); }
.contact__info-item span { font-size: 1.1rem; }

.contact__socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: .45rem 1rem;
  border-radius: 100px;
  transition: all .3s;
}
.social-link:hover { color: var(--purple-lt); border-color: rgba(155,114,207,.4); }

/* Form */
.contact__form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-round);
  font-size: .9rem;
  font-weight: 400;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: none;
  appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(155,114,207,.1);
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: .5rem; }

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0 3rem;
}
.footer__logo {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .8rem;
}
.footer__logo span { color: var(--gold); }
.footer__brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.footer__nav h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__nav ul li a { font-size: .88rem; color: var(--text); transition: color .3s; }
.footer__nav ul li a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .78rem; color: var(--muted); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: .78rem; color: var(--muted); transition: color .3s; }
.footer__links a:hover { color: var(--gold); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .media-hero__grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-card--wide { grid-column: span 2; }
  .privacy-content__wrapper { grid-template-columns: 1fr; }
  .privacy-nav { position: static; margin-bottom: 2rem; }
}

@media (max-width: 900px) {
  .media-topbar__inner,
  .media-cta__inner { flex-direction: column; align-items: center; justify-content: center; text-align: center; }
  .media-grid { grid-template-columns: 1fr; }
  .media-card--wide { grid-column: span 1; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .work-item--wide { grid-column: span 2; }
  .work-item--tall { grid-row: span 1; }
  .testimonials__grid--logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: .8rem 1.5rem; }
  .hero__content { padding: 0 1.5rem; }
  .section { padding: 5rem 0; }
  .media-topbar__inner { min-height: auto; padding: 1rem 0; }
  .media-topbar__nav { width: 100%; flex-wrap: wrap; }
  .media-hero { padding-top: 3rem; }
  .media-hero__content,
  .media-card,
  .media-cta__inner { padding: 1.4rem; }
  .partners-panel { padding: 1.25rem; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid--logos { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work-item--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 1; }
  .privacy-content { padding: 3rem 0; }
  .privacy-article h2 { font-size: 1.4rem; margin: 1.8rem 0 .8rem; }
  .privacy-contact { grid-template-columns: 1fr; }
}
