/* ═══════════════════════════════════════════
   MAGNETIZM — GLOBAL STYLES
   ═══════════════════════════════════════════ */

.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--magenta);
  color: #fff;
  padding: 12px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 99999;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --magenta:      #E8177A;
  --magenta-dark: #C2135F;
  --gold:         #F0A500;
  --black:        #0A0A0A;
  --white:        #FFFFFF;
  --off-white:    #F7F6F3;
  --text-muted:   #666666;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --nav-h:        64px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img, video {
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--magenta {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}

.btn--magenta:hover {
  background: var(--magenta-dark);
  border-color: var(--magenta-dark);
}

/* ═══════════════════════════════════════════
   NAV — hidden until scroll
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: var(--black);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.visible {
  transform: translateY(0);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 24px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: color 0.2s;
}

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

.nav__cta {
  background: var(--magenta) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  white-space: nowrap;
  border: 2px solid var(--magenta) !important;
  transition: background 0.2s, border-color 0.2s !important;
}

.nav__cta:hover {
  background: var(--magenta-dark) !important;
  border-color: var(--magenta-dark) !important;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--black);
  padding: 2rem 4vw;
  gap: 1.5rem;
  z-index: 99;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}

.mobile-menu__cta {
  color: var(--magenta) !important;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__video--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero__video--desktop {
    display: none;
  }

  .hero__video--mobile {
    display: block;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5vw;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__accent {
  color: var(--magenta);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  background: var(--white);
  padding: 120px 5vw;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.about__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 2rem;
}

.about__accent {
  color: var(--gold);
}

.about__body {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 1.25rem;
  max-width: 520px;
}

.about__body:last-of-type {
  margin-bottom: 2.5rem;
}

.about__photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 1 / 1;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ═══════════════════════════════════════════
   WORK / PORTFOLIO
   ═══════════════════════════════════════════ */
.work {
  background: var(--black);
  padding: 100px 0 80px;
}

.work__header {
  text-align: center;
  padding: 0 5vw;
  margin-bottom: 56px;
}

.work__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.work__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}

.work__slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

.work__player-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.work__iframe,
#ytPlayer,
#ytPlayer iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.work__info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 20px;
  max-width: 320px;
  border-left: 3px solid var(--magenta);
}

.work__info-client {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 4px;
}

.work__info-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.work__counter {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.work__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}

.work__arrow:hover {
  background: var(--magenta);
  border-color: var(--magenta);
}

.work__arrow--prev { left: 12px; }
.work__arrow--next { right: 12px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    display: flex;
    flex-direction: column;
  }

  .about__text {
    display: contents;
  }

  .about__headline {
    order: 1;
  }

  .about__body {
    order: 2;
  }

  .about__photo-wrap {
    order: 3;
    max-width: 480px;
    margin: 0 auto;
  }

  .about__text .btn--magenta {
    order: 4;
    margin-top: 16px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .work__slider {
    padding: 0 48px;
  }

  .work__arrow {
    width: 36px;
    height: 36px;
  }

  .work__info {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    padding: 6px 12px;
    border-left: none;
    border-top: 3px solid var(--magenta);
  }

  .work__info-client {
    font-size: 0.75rem;
  }

  .work__info-desc {
    font-size: 0.65rem;
    line-height: 1.3;
    margin-top: 1px;
  }
}

/* ═══════════════════════════════════════════
   HANDWRITTEN ANNOTATIONS
   ═══════════════════════════════════════════ */

.about__photo-wrap {
  position: relative;
  padding-top: 90px;
  background: var(--white);
}

/* Row sitting above the two photos */
.annotations-row {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 10px;
  pointer-events: none;
}

.annotation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.annotation--megi {
  flex-direction: row; /* name then arrow */
  align-items: flex-start;
}

.annotation--mili {
  flex-direction: row-reverse; /* arrow then name */
  align-items: flex-start;
}

/* Handwritten name */
.annotation__name {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2rem;
  color: var(--magenta);
  line-height: 1;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.annotation--megi.visible .annotation__name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.annotation--mili.visible .annotation__name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Arrow SVG */
.annotation__arrow {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

/* All paths start invisible */
#megiCurve, #megiHead, #miliCurve, #miliHead {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
}

/* Megi: curve draws first, then arrowhead */
.annotation--megi.visible #megiCurve {
  animation: drawPath 0.8s ease forwards;
  animation-delay: 0.3s;
}
.annotation--megi.visible #megiHead {
  animation: drawPath 0.3s ease forwards;
  animation-delay: 1.1s;
}

/* Mili: starts after Megi */
.annotation--mili.visible #miliCurve {
  animation: drawPath 0.8s ease forwards;
  animation-delay: 0.8s;
}
.annotation--mili.visible #miliHead {
  animation: drawPath 0.3s ease forwards;
  animation-delay: 1.6s;
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════
   REELS / STOP THE SCROLL
   ═══════════════════════════════════════════ */
.reels {
  background: var(--off-white);
  padding: 100px 5vw;
}

.reels__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.reels__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.reels__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.reels__underline {
  position: relative;
  display: inline-block;
}

.reels__underline-svg {
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 8px;
  overflow: visible;
}

.reels__underline-svg path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
}

.reels__underline.in-view .reels__underline-svg path {
  animation: drawPath 0.8s ease forwards;
  animation-delay: 0.3s;
}

.reels__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reel-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--black);
}

.reel-item__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-item__num {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.reel-item {
  cursor: none;
}

.reel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
  pointer-events: none;
}

.reel-item:hover::after {
  background: rgba(0,0,0,0.35);
}

.reel-item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.reel-item:hover .reel-item__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 900px) {
  .reels__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .reels__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════
   REEL LIGHTBOX MODAL
   ═══════════════════════════════════════════ */
.reel-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.reel-modal.open {
  display: flex;
}

.reel-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

.reel-modal__box {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reel-modal__video {
  max-height: 82vh;
  aspect-ratio: 9 / 16;
  width: auto;
  border-radius: 12px;
  background: #000;
  display: block;
}

.reel-modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 0;
}

.reel-modal__close:hover {
  opacity: 1;
}

.reel-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}

.reel-modal__arrow:hover {
  background: var(--magenta);
  border-color: var(--magenta);
}

.reel-modal__arrow--prev { left: -68px; }
.reel-modal__arrow--next { right: -68px; }

.reel-modal__counter {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 640px) {
  .reel-modal__video {
    max-height: 75vh;
  }

  .reel-modal__close {
    top: -36px;
    right: 0;
  }

  .reel-modal__arrow--prev { left: -44px; }
  .reel-modal__arrow--next { right: -44px; }

  .reel-modal__arrow {
    width: 36px;
    height: 36px;
  }
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  background: var(--white);
  padding: 100px 5vw;
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.services__sub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
  opacity: 1;
}

/* Grid */
.services__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Card */
.service-card {
  background: var(--white);
  padding: 36px 28px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
  border-left: 3px solid var(--magenta);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.service-card__num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--black);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}

.service-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--magenta);
}

.service-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__body p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #333;
}

.services__footer {
  text-align: center;
  margin-top: 56px;
}

.btn--dark {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
  font-size: 1rem;
  padding: 16px 48px;
}

.btn--dark:hover {
  background: var(--magenta-dark);
  border-color: var(--magenta-dark);
}

/* Card entrance animation */
.service-card--anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.service-card--anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-card--anim:nth-child(1) { transition-delay: 0s; }
.service-card--anim:nth-child(2) { transition-delay: 0.15s; }
.service-card--anim:nth-child(3) { transition-delay: 0.3s; }
.service-card--anim:nth-child(4) { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  background: var(--off-white);
  padding: 120px 5vw;
}

.testimonials__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.testimonials__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.testimonials__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.testimonials__slider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.testimonials__track {
  flex: 1;
  min-width: 0;
  position: relative;
  transition: height 0.4s ease;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.85;
  color: var(--black);
  margin-bottom: 2rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: normal;
  font-weight: 900;
  color: var(--magenta);
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 4px;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.testimonials__arrow:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testimonials__dot.active {
  background: var(--magenta);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonials__slider {
    gap: 12px;
  }

  .testimonials__arrow {
    width: 36px;
    height: 36px;
  }

  .testimonial-card__quote {
    font-size: 0.9375rem;
  }
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: 120px 5vw;
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact__header {
  text-align: center;
  margin-bottom: 64px;
}

.contact__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.contact__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.contact__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  max-width: 520px;
  margin: 0 auto;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

.contact__field input,
.contact__field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  border-radius: 4px;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--magenta);
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact__submit {
  align-self: flex-start;
  font-size: 0.9375rem;
  padding: 16px 48px;
}

.contact__success {
  display: none;
  font-size: 0.875rem;
  color: var(--magenta);
  letter-spacing: 0.04em;
}

.contact__success.visible {
  display: block;
}

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  border-top: 2px solid var(--magenta);
  padding: 20px 5vw;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  flex: 1;
  min-width: 260px;
}

.cookie-banner__text a {
  color: var(--magenta);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__decline {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-banner__decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-banner__accept {
  background: var(--magenta);
  border: 1px solid var(--magenta);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-banner__accept:hover {
  background: var(--magenta-dark);
  border-color: var(--magenta-dark);
}

.work__cookie-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  padding: 40px 20px;
}

.work__cookie-msg p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.work__cookie-msg button {
  background: none;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.work__cookie-msg button:hover {
  background: var(--magenta);
  color: var(--white);
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 5vw;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo-img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--magenta);
}

/* Responsive */
@media (max-width: 600px) {
  .contact__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
