/* ============================================
   VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  /* Colors — dark palette with wine/burgundy accent */
  --color-bg:        #0b0b0b;
  --color-bg-alt:    #101010;
  --color-bg-card:   #151515;
  --color-surface:   #1a1a1a;
  --color-border:    #1e1e1e;
  --color-border-lt: #282828;
  --color-text:      #d4d2cf;
  --color-text-muted:#7a7a7a;
  --color-text-dim:  #4a4a4a;
  --color-white:     #f0efed;

  /* Accent: wine / burgundy */
  --color-accent:       #8c2f39;
  --color-accent-hover: #a63a45;
  --color-accent-soft:  rgba(140, 47, 57, 0.12);

  /* Typography — Outfit (light display) + Inter (body) */
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1280px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
ul { list-style: none; }

::selection {
  background: var(--color-accent);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}


/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}


/* ============================================
   UTILITY
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-pad) 0;
}

.section__tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}


/* ============================================
   REVEAL ANIMATIONS (multiple types)
   ============================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none !important;
}

/* Default: slide up */
.reveal--up {
  transform: translateY(32px);
}

/* Fade only */
.reveal--fade {
  transform: none;
}

/* Scale in */
.reveal--scale {
  transform: scale(0.96);
}

/* Slide from left */
.reveal--left {
  transform: translateX(-40px);
}

/* Slide from right */
.reveal--right {
  transform: translateX(40px);
}

/* Grow width (for lines) */
.reveal--grow {
  transform: scaleX(0);
  transform-origin: center;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
  position: relative;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border-lt);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--full { width: 100%; }


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease-out);
}

.header.is-scrolled {
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header__logo {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav-link {
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: color 0.3s;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}

.header__nav-link:hover { color: var(--color-white); }
.header__nav-link:hover::after { width: 100%; }

.header__nav-link--cta {
  color: var(--color-white);
  background: var(--color-accent);
  padding: 8px 20px;
  border: none;
}

.header__nav-link--cta::after { display: none; }
.header__nav-link--cta:hover { background: var(--color-accent-hover); }

/* Hamburger */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 4px 0;
  z-index: 1001;
}

.header__menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}

.header__menu-btn.is-active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.header__menu-btn.is-active span:nth-child(2) { opacity: 0; }
.header__menu-btn.is-active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


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

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

.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 25% 45%, rgba(140, 47, 57, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 35%, rgba(140, 47, 57, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #0b0b0b 0%, #0e0e0e 50%, #0b0b0b 100%);
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.55);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
}

.hero__role {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero__name-line {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 36px;
}

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

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: var(--color-border-lt);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}


/* ============================================
   ABOUT
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__centered {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about__centered .section__title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  white-space: normal;
}

.about__content--centered .about__details {
  justify-content: center;
}

.about__content--centered .about__detail {
  text-align: center;
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 36px;
}

.about__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

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

.about__detail-label {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  min-width: 110px;
  flex-shrink: 0;
}

.about__detail-value {
  font-size: 0.84rem;
  color: var(--color-text);
  font-weight: 300;
}


/* ============================================
   SHOWREEL
   ============================================ */
.reel { background: var(--color-bg-alt); }

.reel__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.reel__description {
  color: var(--color-text-muted);
  font-weight: 300;
  font-size: 0.88rem;
}

.reel__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.reel__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.reel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background:
    radial-gradient(ellipse at center, rgba(140, 47, 57, 0.04) 0%, transparent 70%),
    var(--color-surface);
}

.reel__play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: all 0.4s var(--ease-out);
}

.reel__play-btn svg { width: 16px; height: 16px; margin-left: 2px; }

.reel__play-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.06);
}

.reel__placeholder-text {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}


/* ============================================
   WORK / PORTFOLIO — 4 columns
   ============================================ */
.work__header { margin-bottom: 48px; text-align: center; }

/* Filter buttons */
.work__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.work__filter {
  padding: 8px 22px;
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border-lt);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.work__filter:hover {
  color: var(--color-white);
  border-color: var(--color-text-muted);
}

.work__filter.is-active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.work__grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.work__grid--active {
  display: grid;
  opacity: 1;
}

/* Video thumbnail in card — slight zoom to crop letterbox/pillarbox bars */
.work__card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
  display: block;
}

.work__card {
  cursor: pointer;
  transition: transform 0.45s var(--ease-out);
}

.work__card:hover { transform: translateY(-3px); }

.work__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.work__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    hsl(var(--hue, 220) 12% 12%) 0%,
    hsl(var(--hue, 220) 8% 17%) 100%
  );
}

.work__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.work__card:hover .work__card-overlay { opacity: 1; }

.work__card-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s var(--ease-out);
  background: transparent;
}

.work__card-play svg { width: 13px; height: 13px; margin-left: 2px; }

.work__card:hover .work__card-play {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(140, 47, 57, 0.15);
}

.work__card-info { padding: 12px 0 0; }

.work__card-category {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  display: block;
  margin-bottom: 3px;
}

.work__card--hidden {
  display: none;
}

.work__view-more {
  grid-column: 1 / -1;
  margin: 24px auto 0;
  padding: 10px 32px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.work__view-more:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: rgba(140, 47, 57, 0.1);
}

.work__view-more--expanded {
  display: none;
}

.work__card-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.work__more {
  text-align: center;
  margin-top: 40px;
}

.work__more.is-hidden { display: none; }


/* ============================================
   CLIENTS
   ============================================ */
.clients__header {
  text-align: center;
  margin-bottom: 48px;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border-lt);
  border: 1px solid var(--color-border-lt);
  border-radius: 4px;
  overflow: hidden;
}

.clients__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--color-bg-alt);
}

.clients__logo span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text);
  opacity: 0.65;
}


/* ============================================
   VIDEO MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.modal.is-open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.modal__content--video {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  transform: translateY(16px);
  transition: transform 0.4s var(--ease-out);
}

.modal.is-open .modal__content--video { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.6rem;
  color: var(--color-text-muted);
  z-index: 10;
  transition: color 0.3s;
  line-height: 1;
}

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

.modal__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--color-surface);
}

.modal__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dim);
  font-size: 0.82rem;
}

.modal__video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.modal__video-info { padding: 24px 28px; }

.modal__category {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
  display: block;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 6px;
}

.modal__desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
}


/* ============================================
   SERVICES (with icons)
   ============================================ */
.services { background: var(--color-bg-alt); }
.services__header { margin-bottom: 48px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.services__card {
  padding: 36px 28px;
  background: var(--color-bg-alt);
  transition: background 0.4s var(--ease-out);
}

.services__card:hover { background: var(--color-bg-card); }

.services__icon {
  width: 36px;
  height: 36px;
  color: var(--color-text-dim);
  margin-bottom: 20px;
  transition: color 0.4s;
}

.services__icon svg { width: 100%; height: 100%; }

.services__card:hover .services__icon { color: var(--color-accent); }

.services__card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.services__card-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
}


/* ============================================
   EDITING (icons only, no descriptions)
   ============================================ */
.editing {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.editing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.editing__content {
  padding-left: 20px;
}

.editing__text {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 16px;
}

.editing__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 8px 0 0 20px;
}

.editing__feature {
  display: flex;
  gap: 18px;
  align-items: center;
}

.editing__feature-icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.editing__feature-icon svg { width: 100%; height: 100%; }

.editing__feature h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: -0.01em;
}


/* ============================================
   DIFFERENTIALS (with icons)
   ============================================ */
.differentials { background: var(--color-bg-alt); }

.differentials__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.differentials__header {
  position: sticky;
  top: 120px;
}

.differentials__list {
  display: flex;
  flex-direction: column;
}

.differentials__item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.differentials__item:first-child { padding-top: 0; }

.differentials__icon {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.differentials__icon svg { width: 100%; height: 100%; }

.differentials__item-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.differentials__item-content p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.65;
}


/* ============================================
   PROCESS (centered timeline)
   ============================================ */
.process { background: var(--color-bg); }

.process__header {
  text-align: center;
  margin-bottom: 56px;
}

.process__timeline {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--color-border-lt);
}

.process__step {
  display: flex;
  gap: 28px;
  padding-bottom: 32px;
  position: relative;
  align-items: flex-start;
}

.process__step:last-child { padding-bottom: 0; }

.process__step-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  background: var(--color-bg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.process__step-number {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  display: block;
}

.process__step-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 3px;
}

.process__step-content p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.55;
}


/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--color-bg-alt);
  text-align: center;
}

.cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.cta__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta__actions {
  display: flex;
  justify-content: center;
}


/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--color-bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.contact__link {
  font-size: 0.84rem;
  color: var(--color-text);
  font-weight: 300;
  transition: color 0.3s;
}

.contact__link:hover { color: var(--color-accent); }

/* WhatsApp CTA button */
.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 12px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2);
}

.contact__whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
  color: #fff;
}

.contact__whatsapp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact__social {
  display: flex;
  gap: 12px;
}

.contact__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.contact__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.contact__social svg { width: 16px; height: 16px; }

/* Form */
.form__group { margin-bottom: 18px; }

.form__label {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 8px;
}

.form__optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.form__input {
  width: 100%;
  padding: 13px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 300;
  transition: border-color 0.3s;
  border-radius: 0;
}

.form__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}


/* Form success overlay */
.contact__form {
  position: relative;
}

.form-success {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--color-bg);
  border-radius: 8px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.form-success.is-visible {
  opacity: 1;
  visibility: visible;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  color: var(--color-accent);
}

.form-success__check {
  width: 100%;
  height: 100%;
}

.form-success__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  opacity: 0.35;
}

.form-success.is-visible .form-success__circle {
  animation: formCircle 0.6s var(--ease-out) 0.1s forwards;
}

.form-success__tick {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.form-success.is-visible .form-success__tick {
  animation: formTick 0.35s var(--ease-out) 0.45s forwards;
}

.form-success__text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(6px);
}

.form-success.is-visible .form-success__text {
  animation: formText 0.4s var(--ease-out) 0.65s forwards;
}

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

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

@keyframes formText {
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.footer__copy {
  font-size: 0.68rem;
  color: var(--color-text-dim);
}

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

.footer__nav a {
  font-size: 0.68rem;
  color: var(--color-text-dim);
  transition: color 0.3s;
}

.footer__nav a:hover { color: var(--color-accent); }


/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .header__inner { padding: 0 24px; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-placeholder { max-width: 360px; }

  .work__grid--active { grid-template-columns: repeat(2, 1fr); gap: 16px; }

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

  .editing__grid { grid-template-columns: 1fr; gap: 48px; }

  .differentials__layout { grid-template-columns: 1fr; gap: 40px; }
  .differentials__header { position: static; }

  .contact__grid { gap: 48px; }
}


/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .header__menu-btn {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  }

  .header__nav.is-open { opacity: 1; visibility: visible; }

  .header__nav-list {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 24px;
  }
  .header__nav-link {
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 300;
    letter-spacing: 0.03em;
    display: block;
  }
  .header__nav-link::after { display: none; }
  .header__nav-link--cta {
    font-size: 0.85rem;
    margin-top: 16px;
    padding: 12px 32px;
    display: inline-block;
  }

  .hero__name { font-size: clamp(2rem, 10vw, 3.2rem); white-space: normal; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__scroll { display: none; }

  .about__detail { flex-direction: column; gap: 4px; }

  .work__grid--active { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .work__card-title { font-size: 0.78rem; }

  .services { display: none; }

  .process { display: none; }

  .clients__grid { grid-template-columns: repeat(2, 1fr); }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .modal__content--video { max-height: 90vh; overflow-y: auto; }
  .modal__video-info { padding: 20px; }

  .footer__inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer__left { flex-direction: column; gap: 6px; }
  .footer__nav { gap: 18px; }
}

@media (max-width: 480px) {
  .work__grid--active { grid-template-columns: 1fr 1fr; gap: 10px; }
  .work__card-category { font-size: 0.52rem; }
  .work__card-title { font-size: 0.72rem; }
  .work__card-play { width: 34px; height: 34px; }
  .work__card-play svg { width: 10px; height: 10px; }
}


/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3px;
  flex-shrink: 0;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}

.lang-switcher__btn:hover {
  color: var(--color-white);
}

.lang-switcher__btn.is-active {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(140, 47, 57, 0.3);
}

.lang-switcher__flag {
  width: 14px;
  height: 10px;
  object-fit: cover;
  border-radius: 1px;
  opacity: 0.8;
  flex-shrink: 0;
}

.lang-switcher__btn.is-active .lang-switcher__flag {
  opacity: 1;
}

/* Text elements fade during language switch */
[data-i18n],
[data-i18n-html] {
  transition: opacity 0.2s ease;
}

.lang-switching [data-i18n],
.lang-switching [data-i18n-html] {
  opacity: 0;
}

/* Responsive: language switcher on mobile */
@media (max-width: 768px) {
  .lang-switcher {
    position: absolute;
    left: auto;
    right: 56px;
    top: 50%;
    transform: translateX(0) translateY(-50%);
  }

  .lang-switcher__btn {
    padding: 3px 8px;
    font-size: 0.6rem;
  }

  .lang-switcher__flag {
    width: 12px;
    height: 8px;
  }
}
