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

:root {
  --bg:       #0a0a0a;
  --bg-2:     #111111;
  --bg-3:     #1a1a1a;
  --border:   #242424;
  --text:     #f0f0f0;
  --text-2:   #888888;
  --text-3:   #444444;
  --white:    #ffffff;
}

html {
  scroll-behavior: smooth;
}

#hero,
#about,
#portfolio,
#fotos,
#contact {
  scroll-margin-top: 110px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.012), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom-color: var(--border);
}

.nav-logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.nav-menu a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

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

/* Social icon links (nav + footer) */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: color 0.2s;
  line-height: 1;
}

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

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

.nav-socials .social-link {
  color: var(--text-3);
}

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

/* Mobile social row */
.mobile-socials {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.mobile-socials .social-link {
  color: var(--text-2);
}

.mobile-socials .social-link:hover {
  color: var(--white);
}

.nav-menu .nav-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 9px 22px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-menu .nav-btn:hover {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.hamburger span:first-child  { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:last-child   { width: 24px; }

.hamburger.active span:first-child  { transform: translateY(7px) rotate(45deg);  width: 24px; }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:last-child   { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* Mobile overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--text-2);
}

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 148px 60px 72px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,17,17,0.96) 0%, rgba(12,12,12,0.98) 100%),
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 68%);
  z-index: 1;
  pointer-events: none;
}

#hero > * {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 22px;
  opacity: 0;
  animation: heroFade 0.8s ease forwards 0.2s;
}

.hero-headline {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  animation: heroFade 1s ease forwards 0.4s;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--text-2);
  margin-top: 20px;
  max-width: 420px;
  line-height: 1.65;
  opacity: 0;
  animation: heroFade 0.8s ease forwards 0.7s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  animation: heroFade 0.8s ease forwards 0.9s;
}

.hero-bubble {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  width: max-content;
  margin: 0 auto;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1100;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: translate 0.25s, background 0.2s, border-color 0.2s, opacity 0.45s ease;
}

.hero-bubble.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-bubble.is-fading {
  opacity: 0.34;
}

.hero-bubble:hover {
  translate: 0 -2px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: #e8e8e8;
}

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

.btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ─── STATS ───────────────────────────────────────────── */
.stats-grid {
  max-width: 760px;
  margin: 0 0 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  padding: 28px 30px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.stat-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-num {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

/* ─── SHARED SECTION ELEMENTS ─────────────────────────── */
.section-head {
  max-width: 1280px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
}

/* ─── PORTFOLIO ───────────────────────────────────────── */
#portfolio {
  padding: 132px 60px 120px;
}

.portfolio-stack {
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-project + .portfolio-project {
  margin-top: 110px;
}

.project-head {
  margin-bottom: 34px;
  max-width: 640px;
}

.project-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.project-title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.1;
}

.reel-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.reel-item {
  aspect-ratio: 9 / 16;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reel-item.animate {
  opacity: 1;
  transform: translateX(0);
}

.reel-item:hover .reel-placeholder { transform: scale(1.04); }
.reel-item:hover .reel-overlay     { opacity: 1; }
.reel-item:hover .reel-meta        { opacity: 1; transform: translateY(0); }
.reel-item:hover .play-btn         { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.07); }
.reel-item:hover .play-btn svg     { fill: rgba(255, 255, 255, 0.85); }

/* Echtes Video (autoplay) */
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reel-item:hover .reel-video { transform: scale(1.04); }

/* Vimeo iframe – füllt den Container, keine Klicks */
.reel-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* Platzhalter-Slots */
.reel-soon {
  cursor: default;
  background: var(--bg-2);
  border: 1px dashed var(--border);
}

/* Echtes Foto */
.reel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reel-item:hover .reel-thumb { transform: scale(1.04); }

.reel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.play-btn svg {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.25);
  margin-left: 3px;
  transition: fill 0.3s;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.reel-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reel-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.reel-cat {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* ─── ABOUT ───────────────────────────────────────────── */
#about {
  padding: 48px 60px 132px;
}

.about-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: center;
}

.about-img {
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.about-img.animate {
  opacity: 1;
  transform: translateX(0);
}

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

.about-txt {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

.about-txt.animate {
  opacity: 1;
  transform: translateX(0);
}

.about-lead {
  max-width: 620px;
  margin: 24px 0 24px;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.about-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 660px;
  margin: 0 0 36px;
}

.about-body strong {
  color: var(--text);
  font-weight: 500;
}

.clients-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}

.clients-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.client-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  padding: 8px 16px;
  transition: border-color 0.2s, color 0.2s;
}

.client-chip:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

/* ─── FOTO-GALERIE ────────────────────────────────────── */
#fotos {
  padding: 120px 60px;
}

#fotos .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.foto-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.foto-filter-btn {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-2);
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.foto-filter-btn:last-child {
  border-right: none;
}

.foto-filter-btn:hover {
  color: var(--white);
}

.foto-filter-btn.active {
  background: var(--white);
  color: var(--bg);
}

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

.foto-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
  opacity: 0;
  transform: scale(0.93) translateY(10px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.foto-item.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.foto-item.exiting {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.foto-item.hidden {
  display: none;
}

.foto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
}

.foto-item:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.foto-more-wrap {
  text-align: center;
  margin-top: 48px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 14px 40px;
  border-radius: 2px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}

/* ─── LIGHTBOX ────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  user-select: none;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

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

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 3.5rem;
  cursor: pointer;
  padding: 0 20px;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}

.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-prev:hover,
.lb-next:hover { color: var(--white); }

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

  #fotos {
    padding: 80px 20px;
  }
}

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

/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
  padding: 120px 60px;
  text-align: center;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.contact-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.8;
  margin: 24px 0 64px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.field label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
  transition: border-color 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255, 255, 255, 0.25);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--text-3);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.select-wrap select {
  padding-right: 40px;
  cursor: pointer;
}

.field select option {
  background: #1a1a1a;
  color: var(--text);
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 48px 0;
  color: var(--text-3);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.contact-email {
  display: block;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

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

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 60px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-2);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-right a {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--text-2);
}

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fades out when scrolled past — slides slightly upward */
.reveal.gone {
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  transition-delay: 0s !important;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ─── KEYFRAMES ───────────────────────────────────────── */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav         { padding: 24px 40px; }
  .nav.scrolled{ padding: 16px 40px; }

  #hero    { min-height: 360px; padding: 128px 40px 56px; }
  #portfolio,
  #about,
  #contact { padding: 100px 40px; }
  footer   { padding: 32px 40px; }

  .about-shell { padding: 42px; }
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-img   { aspect-ratio: 4 / 3; max-width: 620px; }
  .stats-grid  { max-width: 100%; }
  .reel-grid   { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 768px) {
  .nav          { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }

  .nav-menu  { display: none; }
  .hamburger { display: flex; }

  #hero    { min-height: 340px; padding: 116px 24px 44px; }
  #portfolio,
  #about,
  #contact { padding: 80px 24px; }
  footer   { padding: 28px 24px; }

  .hero-eyebrow           { letter-spacing: 0.22em; margin-bottom: 18px; }
  .hero-headline          { font-size: clamp(38px, 10vw, 58px); }
  .hero-sub               { max-width: 360px; font-size: 15px; line-height: 1.6; margin-top: 18px; }
  .hero-ctas              { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; width: 100%; max-width: 520px; gap: 12px; margin-top: 28px; }
  .hero-bubble            { bottom: calc(18px + env(safe-area-inset-bottom)); width: max-content; max-width: none; padding: 12px 20px; font-size: 10px; letter-spacing: 0.12em; }
  .btn                    { width: auto; min-width: 188px; }

  .about-shell             { padding: 34px; border-radius: 34px; }
  .about-grid              { gap: 36px; }
  .about-img               { max-width: 460px; aspect-ratio: 3 / 4; border-radius: 28px; }
  .about-lead              { font-size: 19px; margin: 22px 0; }
  .about-body              { font-size: 15px; line-height: 1.8; }
  .stats-grid              { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 32px; }
  .stat-card               { padding: 22px 20px; border-radius: 24px; }
  .stat-num                { font-size: clamp(34px, 9vw, 52px); }
  .clients-list            { gap: 10px; }
  .client-chip             { width: auto; text-align: center; }

  .section-title           { font-size: clamp(28px, 7vw, 44px); }
  .project-title           { font-size: clamp(30px, 7.5vw, 44px); }
  .reel-grid               { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; }
  .reel-item               { border-radius: 0; }
  .section-head            { flex-direction: column; align-items: flex-start; margin-bottom: 42px; }
  .portfolio-project + .portfolio-project { margin-top: 84px; }

  .form-row    { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-left  { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 430px) {
  .hero-ctas   { flex-direction: column; max-width: 320px; }
  .hero-bubble { width: calc(100% - 40px); max-width: 280px; }
  .btn         { width: 100%; min-width: 0; }

  .about-shell { padding: 28px; border-radius: 28px; }
  .stats-grid  { grid-template-columns: 1fr; }
  .reel-grid   { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}
