/* ─────────────────────────────────────────────────────────
   sections.css — Vertikales Layout
   Alle 8 Sections + Services Reel + Stats Band
   Ersetzt panels.css (horizontales System)
   sidami.ch
───────────────────────────────────────────────────────── */

/* ════════════════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════════════════ */

main {
  position: relative;
  overflow-x: clip;
  isolation: isolate;
}

.section {
  position: relative;
  width: 100%;
  padding-block: var(--space-section-y);
  overflow: hidden;
}

/* ─── Section visual separation ────────────────────────── */
.section--events,
.section--brands,
.section--process,
.section--crew,
.section--work,
.section--contact {
  border-top: 2px solid rgba(20, 18, 16, 0.12);
}


/* ─── Inner Container ───────────────────────────────────── */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
  width: 100%;
}

/* ─── Section Label (Mono, oben links) ─────────────────── */

.section__label {
  display: block;
  position: relative;
  z-index: 10;
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 0.68vw, 0.72rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.45;
  color: var(--ink);
  margin-bottom: clamp(12px, 1.5vw, 24px);
}

@media (max-width: 767px) {
  .section__label {
    margin-bottom: clamp(10px, 2vw, 18px);
  }
}

/* ════════════════════════════════════════════════════════
   SECTION 00 — HERO
════════════════════════════════════════════════════════ */

.section--hero {
  background: var(--paper);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-image: radial-gradient(circle, rgba(20, 18, 16, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── Frage-Screen ─────────────────────────────────────── */
.hero__question {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  z-index: 2;
}

.hero__q-text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 7.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-align: center;
  transform: rotate(-1deg);
  user-select: none;
}

.hero__q-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.7rem, 1.5vw, 1.2rem);
}

.hero__q-opt {
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: clamp(0.75rem, 1.1vw, 1.1rem) clamp(1.4rem, 2.5vw, 2.2rem);
  background: #fff;
  color: var(--ink);
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow: 3px 4px 0 rgba(20, 18, 16, 0.10);
  white-space: nowrap;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
}

.hero__q-opt:nth-child(1) {
  transform: rotate(-2deg);
}

.hero__q-opt:nth-child(2) {
  transform: rotate(1.5deg);
}

.hero__q-opt:nth-child(3) {
  transform: rotate(1deg);
}

.hero__q-opt--sidami {
  background: var(--voltage);
  color: #fff;
  font-weight: 700;
  transform: rotate(-1deg);
  font-size: clamp(0.88rem, 1.3vw, 1.1rem);
  letter-spacing: 0.14em;
}

.hero__q-hint {
  font-family: var(--font-handwritten);
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  opacity: 0.45;
  transform: rotate(-2deg);
  user-select: none;
}

/* ── Hero-Reveal ─────────────────────────────────────── */
.hero__reveal {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 7rem);
  align-items: center;
  padding: calc(4rem + clamp(32px, 4vw, 56px)) clamp(28px, 5vw, 80px) clamp(48px, 8vw, 80px);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.hero__reveal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal__left {
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 2vw, 1.8rem);
}

.reveal__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 8rem);
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--ink);
  padding-bottom: 0.45em;
}

.reveal__headline em {
  font-style: italic;
  color: var(--voltage);
}

.reveal__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 420px;
}

.reveal__stickers {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

.reveal__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 0.2rem;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.reveal__cta:hover {
  color: var(--voltage);
  border-color: var(--voltage);
}

.reveal__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.reveal__video {
  width: 100%;
  max-width: 440px;
  position: relative;
}

.reveal__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  max-height: calc(100vh - 180px);
  max-height: calc(100dvh - 180px);
}

.hero__scroll-hint {
  position: absolute;
  bottom: clamp(1.4rem, 2.5vw, 2.5rem);
  left: clamp(28px, 4vw, 64px);
  font-family: var(--font-handwritten);
  font-size: 1.2rem;
  transform: rotate(-2deg);
  color: var(--ink-soft);
  opacity: 0.5;
  user-select: none;
  z-index: 6;
}

/* ════════════════════════════════════════════════════════
   SECTION 01 — CARS
════════════════════════════════════════════════════════ */

.section--cars {
  background: var(--cars-bg);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--cars .section__label {
  color: rgba(239, 233, 221, 0.38);
}

.cars__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: flex-start;
}

.cars__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-row-gap);
}

.cars__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 7rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: var(--space-after-headline);
}


.cars__headline em {
  font-style: italic;
  color: var(--voltage);
}

.cars__stickers {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.cars__body {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 0.95vw, 1.05rem);
  line-height: 1.7;
  color: rgba(239, 233, 221, 0.65);
  max-width: 55ch;
  column-count: 2;
  column-gap: 1.5rem;
}

.cars__cta {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  transition: transform var(--duration-fast) var(--ease-paper);
}

.cars__cta:hover {
  transform: rotate(-2deg) translateX(4px);
}

.cars__right {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.cars__video-wrap {
  position: relative;
  width: 88%;
  flex-shrink: 0;
}

.cars__video-wrap video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.cars__polaroid-stack {
  position: absolute;
  bottom: -1.5rem;
  left: -3.5rem;
  width: 45%;
  z-index: 5;
}

.cars__polaroid-stack .polaroid {
  position: absolute;
  width: 100%;
}

.cars__polaroid-stack .polaroid:nth-child(1) {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}

.cars__polaroid-stack .polaroid:nth-child(2) {
  top: 1rem;
  left: 1rem;
  transform: rotate(2.5deg);
  z-index: 2;
}

.cars__polaroid-stack .polaroid:nth-child(3) {
  top: 0.3rem;
  left: 2rem;
  transform: rotate(-1.5deg);
  z-index: 3;
}

/* ════════════════════════════════════════════════════════
   SECTION 02 — EVENTS
════════════════════════════════════════════════════════ */

.section--events {
  background: var(--paper-shadow);
}

.events__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: start;
}

.events__collage { order: -1; }
.events__left    { order:  1; }

.events__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-row-gap);
  position: sticky;
  top: calc(4rem + clamp(32px, 4vw, 64px));
}

.events__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.8vw, 7rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: var(--space-after-headline);
}


.events__headline em {
  font-style: italic;
  color: var(--voltage);
}

.events__body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  max-width: 48ch;
  color: var(--ink-soft);
}

.events__stickers {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.events__note {
  font-family: var(--font-handwritten);
  font-size: 0.95rem;
  line-height: 1.5;
  transform: rotate(-1.8deg);
  display: inline-block;
  background: var(--highlight-yellow);
  padding: 0.75rem 1rem;
  max-width: 30ch;
  position: relative;
}

.events__collage {
  position: relative;
  height: clamp(500px, 80vh, 900px);
  height: clamp(500px, 80dvh, 900px);
  width: 100%;
}

.events__photo {
  position: absolute;
  overflow: hidden;
}

.events__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events__photo:nth-child(1) {
  top: 2%;
  left: 5%;
  width: 52%;
  height: 42%;
  transform: rotate(-3.5deg);
}

.events__photo:nth-child(2) {
  top: 8%;
  right: 0%;
  width: 42%;
  height: 38%;
  transform: rotate(2.5deg);
}

.events__photo:nth-child(3) {
  top: 42%;
  left: 0%;
  width: 38%;
  height: 34%;
  transform: rotate(-1.5deg);
}

.events__photo:nth-child(4) {
  top: 46%;
  left: 28%;
  width: 44%;
  height: 40%;
  transform: rotate(3deg);
}

.events__photo:nth-child(5) {
  top: 50%;
  right: 2%;
  width: 32%;
  height: 32%;
  transform: rotate(-4deg);
}

/* ════════════════════════════════════════════════════════
   SECTION 03 — BRANDS
════════════════════════════════════════════════════════ */

.section--brands {
  background: var(--paper);
}

.brands__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: start;
}

.brands__right { order: -1; }
.brands__left  { order:  1; }

.brands__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-row-gap);
}

.brands__headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 7rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-after-headline);
}

.brands__headline em {
  font-style: italic;
  color: var(--voltage);
}

.brands__body {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  max-width: 52ch;
  color: var(--ink-soft);
}

.brands__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(2.5rem, 4vw, 4rem);
}

/* ─── Instagram Feed Mockup ──────────────────────────────── */

.ig-mockup-outer {
  width: clamp(240px, 22vw, 320px);
  transform: rotate(-3deg);
  flex-shrink: 0;
  background: var(--paper);
  border-radius: 3rem;
}

.ig-mockup {
  width: 100%;
  border-radius: 3rem;
  overflow: hidden;
  clip-path: inset(0 round 2.8rem);
}

.ig-phone {
  background: #fff;
  border-radius: 3rem;
  border: 8px solid #1a1a1a;
  position: relative;
  overflow: hidden;
  clip-path: inset(0 round 2.4rem);
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  height: clamp(500px, 55vw, 620px);
  isolation: isolate;
}

/* Status Bar */
.ig-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 1.1rem 0.3rem;
  background: #fff;
  flex-shrink: 0;
}

.ig-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: #141210;
  letter-spacing: -0.01em;
}

.ig-status-icons {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* IG Header */
.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0.9rem 0.4rem;
  background: #fff;
  border-bottom: 1px solid #efefef;
  flex-shrink: 0;
}

.ig-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: #141210;
  letter-spacing: -0.02em;
  font-family: var(--font-handwritten);
}

.ig-header-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: #141210;
}

/* Stories */
.ig-stories {
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  overflow-x: hidden;
  background: #fff;
  flex-shrink: 0;
}

.ig-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.ig-story__ring {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-story__ring--you {
  background: #dbdbdb;
}

.ig-story__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e63329;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

.ig-story__avatar--add {
  background: #fff;
  color: #0095F6;
  font-size: 0.8rem;
  font-weight: 400;
}

.ig-story__name {
  font-size: 0.42rem;
  color: #262626;
  white-space: nowrap;
  max-width: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Feed Tabs */
.ig-tabs {
  display: flex;
  gap: 1.5rem;
  padding: 0.3rem 0.9rem 0;
  background: #fff;
  flex-shrink: 0;
}

.ig-tab {
  font-size: 0.62rem;
  font-weight: 500;
  color: #8e8e8e;
  padding-bottom: 0.3rem;
  cursor: pointer;
}

.ig-tab.is-active {
  color: #262626;
  font-weight: 600;
  border-bottom: 1.5px solid #262626;
}

.ig-tabs-bar {
  height: 1px;
  background: #efefef;
  flex-shrink: 0;
}

/* Feed Scroll Area */
.ig-feed-wrap {
  flex: 1;
  overflow: hidden;
  background: #fff;
  min-height: 0;
  position: relative;
}

@keyframes ig-feed-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.ig-feed {
  width: calc(100% + 2px);
  margin-left: -1px;
  animation: ig-feed-scroll 20s linear infinite;
}

.ig-feed-wrap:hover .ig-feed {
  animation-play-state: paused;
}

/* Individual Post */
.ig-post {
  border-bottom: 1px solid #efefef;
  padding-bottom: 0;
}

.ig-post-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
}

.ig-post-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0.28rem;
}

.ig-post-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ig-post-avatar span {
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
}

.ig-post-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.ig-username {
  font-size: 0.6rem;
  font-weight: 600;
  color: #262626;
}

.ig-post-time,
.ig-sponsored {
  font-size: 0.5rem;
  color: #8e8e8e;
}

.ig-more-btn {
  font-size: 0.75rem;
  color: #262626;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.ig-post-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
}

.ig-post-image img,
.ig-post-image video {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
  object-fit: cover;
  object-position: center;
  display: block;
  outline: none;
  border: none;
}

.ig-post-image--placeholder {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-post-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(239, 233, 221, 0.25);
}

/* Action Bar */
.ig-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.7rem 0.2rem;
}

.ig-actions-left {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.ig-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: #262626;
  display: block;
  flex-shrink: 0;
}

/* Post details */
.ig-likes,
.ig-caption,
.ig-comments-link,
.ig-top-comment,
.ig-timestamp {
  padding: 0 0.7rem;
  font-size: 0.55rem;
  color: #262626;
  line-height: 1.5;
}

.ig-likes {
  padding-top: 0.15rem;
  font-weight: 600;
  font-size: 0.52rem;
}

.ig-caption {
  padding-top: 0.1rem;
}

.ig-caption strong {
  font-weight: 600;
}

.ig-more-link {
  color: #8e8e8e;
}

.ig-comments-link {
  color: #8e8e8e;
  padding-top: 0.1rem;
  font-size: 0.5rem;
}

.ig-top-comment {
  padding-top: 0.1rem;
  font-size: 0.5rem;
}

.ig-top-comment strong {
  font-weight: 600;
}

.ig-timestamp {
  color: #8e8e8e;
  font-size: 0.45rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}

/* Bottom Tab Bar */
.ig-bottom-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0.3rem 0.65rem;
  background: #fff;
  border-top: 1px solid #efefef;
  flex-shrink: 0;
}

.ig-tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e8e8e;
}

.ig-tab-btn.is-active {
  color: #262626;
}

.ig-tab-btn svg {
  width: 1.3rem;
  height: 1.3rem;
}

.ig-tab-btn--add {
  background: #f0f0f0;
  border-radius: 6px;
  padding: 0.3rem;
}

/* Mobile: hide frame, show posts as cards */
@media (max-width: 767px) {
  .ig-mockup {
    width: 100%;
    transform: none;
    border-radius: 1rem;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION 04 — LEISTUNGEN (Sticky Left + Scrolling Cards)
════════════════════════════════════════════════════════ */

/* Service visuals → frame */
.section--services .service-visuals {
  border-radius: 14px;
  /* no dark background — prevents bleedthrough during crossfade */
  background: var(--paper-shadow);
  overflow: hidden;
  /* no preserve-3d: it breaks overflow-hidden clipping in Safari/Chrome */
}

.section--services .service-visual {
  transition: none !important;
  /* Prevents CSS transitions from fighting GSAP animations */
}

/* Counter */
.section--services .service-counter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.section--services .service-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(20, 18, 16, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.section--services .service-progress-fill {
  height: 100%;
  width: 20%;
  /* Initial width */
  background: var(--voltage);
  border-radius: 2px;
  transform-origin: left center;
}

/* ── Service Cards → Structural additions for Glow ── */
.section--services .service-card {
  overflow: hidden;
}

.section--services .service-card__inner {
  position: relative;
  z-index: 2;
}


/* ── Sparkle particles ── */
.svc-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-sparkle {
  position: absolute;
  pointer-events: none;
}

/* ── SVG Underline ── */
.svc-underline {
  display: block;
  width: 100%;
  height: 16px;
  margin-top: 8px;
  overflow: visible;
}

.svc-underline path {
  stroke: var(--voltage);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(230, 51, 41, 0.3));
}

/* ── Floating decorative dots ── */
.svc-float-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.svc-float-dot--1 {
  width: 5px;
  height: 5px;
  background: var(--voltage);
  top: 12%;
  right: 15%;
  opacity: 0.35;
  animation: svc-float 8s ease-in-out infinite alternate;
}

.svc-float-dot--2 {
  width: 3px;
  height: 3px;
  background: var(--highlight-yellow);
  top: 28%;
  right: 24%;
  opacity: 0.25;
  animation: svc-float 6s ease-in-out 1s infinite alternate;
}

.svc-float-dot--3 {
  width: 7px;
  height: 7px;
  background: var(--print-blue);
  bottom: 18%;
  left: 8%;
  opacity: 0.15;
  animation: svc-float 10s ease-in-out 2s infinite alternate;
}

@keyframes svc-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-12px);
  }
}

/* ── Dark services mobile overrides ── */
@media (max-width: 900px) {
  .section--services .service-card.is-active {
    transform: none;
  }

  .section--services .service-card.is-active:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 767px) {

  .svc-sparkles,
  .svc-float-dot {
    display: none;
  }

  .section--services .service-card {
    border-radius: 12px;
  }
}

.services-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 64px);
  padding-top: clamp(80px, 9vw, 140px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

/* ── Left sticky column ── */
.services-left {
  position: sticky;
  top: clamp(16px, 5vh, 40px);
  align-self: start;
  display: flex;
  flex-direction: column;
  /* exactly fills the viewport below the sticky offset */
  height: calc(100vh - clamp(16px, 5vh, 40px));
  height: calc(100dvh - clamp(16px, 5vh, 40px));
  overflow: hidden;
  padding-bottom: clamp(16px, 2vw, 28px);
  padding-right: clamp(24px, 3vw, 56px);
  gap: clamp(10px, 1.4vw, 20px);
}

.services-left .section__label {
  color: var(--ink);
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.services-headline em {
  font-style: italic;
  color: var(--voltage);
}

/* ── TextRotate pill on "Alles aus [rotating]" ── */
.shl-rotate {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-style: italic;
  background: var(--voltage);
  color: #fff;
  border-radius: 0.1em;
  padding: 0.02em 0.22em 0.06em;
  vertical-align: baseline;
}

.shl-char {
  display: inline-block;
  overflow: hidden;
  line-height: 1.15;
}

.shl-char-inner {
  display: inline-block;
  /* visible by default — JS animation applied inline */
}

.shl-char-inner.is-entering {
  animation: shl-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.shl-char-inner.is-leaving {
  animation: shl-out 0.28s ease-in forwards;
}

@keyframes shl-in {
  from {
    transform: translateY(110%);
    opacity: 0;
  }

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

@keyframes shl-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-115%);
    opacity: 0;
  }
}

.service-visuals {
  position: relative;
  width: 100%;
  /* flex: 1 fills whatever remains between headline and counter */
  flex: 1;
  min-height: 0;
  max-height: 480px;
  /* never dominate on very tall screens */
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-shadow);
}

.service-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-visual.is-active {
  opacity: 1;
}

/* ── Social Media: zwei Phones nebeneinander ── */
.svc-story {
  /* Override full-bleed from .service-visual: full container, flex layout */
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #0f0e0c;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

/* ─ Phone base ─ */
.svc-phone {
  position: relative;
  flex-shrink: 0;
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.1), 0 8px 36px rgba(0, 0, 0, 0.75);
}

/* Left phone: Story, taller */
.svc-phone--story {
  height: 92%;
  aspect-ratio: 9 / 16;
}

/* Right phone: Profile feed, slightly shorter + slight tilt */
.svc-phone--feed {
  height: 86%;
  aspect-ratio: 9 / 16;
  transform: rotate(2deg) translateY(4%);
}

/* ─ Story slides (inside .svc-phone--story) ─ */
.svc-story__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
}

.svc-story__slide[data-story="0"] {
  animation: story-0 16s linear infinite;
}

.svc-story__slide[data-story="1"] {
  animation: story-1 16s linear infinite;
}

.svc-story__slide[data-story="2"] {
  animation: story-2 16s linear infinite;
}

.svc-story__slide[data-story="3"] {
  animation: story-3 16s linear infinite;
}

@keyframes story-0 {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  23% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes story-1 {

  0%,
  25% {
    opacity: 0;
  }

  27% {
    opacity: 1;
  }

  48% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes story-2 {

  0%,
  50% {
    opacity: 0;
  }

  52% {
    opacity: 1;
  }

  73% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes story-3 {

  0%,
  75% {
    opacity: 0;
  }

  77% {
    opacity: 1;
  }

  98% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* UI overlay (progress + handle) */
.svc-story__ui {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px 8px 16px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 10;
}

.svc-story__bars {
  display: flex;
  gap: 3px;
  margin-bottom: 7px;
}

.svc-story__bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 1px;
  overflow: hidden;
}

.svc-story__fill {
  height: 100%;
  background: #fff;
  transform-origin: left;
  transform: scaleX(0);
  border-radius: 1px;
}

.svc-story__bar:nth-child(1) .svc-story__fill {
  animation: bar-0 16s linear infinite;
}

.svc-story__bar:nth-child(2) .svc-story__fill {
  animation: bar-1 16s linear infinite;
}

.svc-story__bar:nth-child(3) .svc-story__fill {
  animation: bar-2 16s linear infinite;
}

.svc-story__bar:nth-child(4) .svc-story__fill {
  animation: bar-3 16s linear infinite;
}

@keyframes bar-0 {
  0% {
    transform: scaleX(0);
  }

  23% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes bar-1 {

  0%,
  25% {
    transform: scaleX(0);
  }

  48% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes bar-2 {

  0%,
  50% {
    transform: scaleX(0);
  }

  73% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes bar-3 {

  0%,
  75% {
    transform: scaleX(0);
  }

  98% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
  }
}

.svc-story__meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Avatar: IG gradient ring mit Sidami Logo */
.svc-story__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
  flex-shrink: 0;
}

.svc-story__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #141210;
  display: block;
  padding: 2px;
  box-sizing: border-box;
}

.svc-story__handle {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.svc-story__time {
  font-family: var(--font-mono);
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

/* Bottom vignette on story phone */
.svc-phone--story::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

/* ─ Instagram Profile Feed (right phone) ─ */
.svc-feed {
  height: 100%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.svc-feed__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px 5px;
  border-bottom: 0.5px solid #dbdbdb;
  background: #fafafa;
  flex-shrink: 0;
}

.svc-feed__nav-lock,
.svc-feed__nav-more {
  font-size: 6px;
  color: #333;
}

.svc-feed__nav-user {
  font-size: 6.5px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
}

.svc-feed__profile {
  display: flex;
  align-items: center;
  padding: 8px 8px 4px;
  gap: 6px;
  flex-shrink: 0;
}

.svc-feed__avatar-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #feda77, #f58529, #dd2a7b, #8134af, #515bd4);
  flex-shrink: 0;
}

.svc-feed__avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fafafa;
  border: 2px solid #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG logo variant */
.svc-feed__avatar-inner--logo {
  background: #0d0d1a;
  border-color: #0d0d1a;
}

.svc-nightlife-logo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

/* Photo avatar: full cover */
.svc-feed__avatar-inner--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Instagram profile action buttons */
.svc-feed__actions {
  display: flex;
  gap: 3px;
  padding: 0 8px 6px;
}

.svc-feed__btn {
  flex: 1;
  background: #efefef;
  border: none;
  border-radius: 4px;
  padding: 3.5px 0;
  font-size: 5.5px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
}

.svc-feed__btn--primary {
  background: #0095f6;
  color: #fff;
}

/* Instagram Grid Tabs */
.svc-feed__tabs {
  display: flex;
  border-top: 0.5px solid #dbdbdb;
  margin-top: 2px;
}

.svc-feed__tab {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  color: #8e8e8e;
}

.svc-feed__tab svg {
  width: 10px;
  height: 10px;
}

.svc-feed__tab.is-active {
  color: #000;
  border-top: 0.5px solid #000;
  margin-top: -0.5px;
}

.svc-feed__stats {
  display: flex;
  flex: 1;
  justify-content: space-around;
}

.svc-feed__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.svc-feed__num {
  font-size: 6.5px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.svc-feed__lbl {
  font-size: 5px;
  color: #555;
}

.svc-feed__name {
  font-size: 6px;
  font-weight: 700;
  color: #000;
  padding: 0 8px 2px;
  flex-shrink: 0;
}

.svc-feed__bio {
  font-size: 5.5px;
  color: #333;
  padding: 0 8px 5px;
  line-height: 1.5;
  flex-shrink: 0;
}

.svc-feed__highlights {
  display: flex;
  gap: 8px;
  padding: 4px 8px 6px;
  border-bottom: 0.5px solid #dbdbdb;
  flex-shrink: 0;
}

.svc-feed__hl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.svc-feed__hl-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  padding: 1.5px;
  background: linear-gradient(135deg, #feda77, #f58529, #dd2a7b, #8134af);
  overflow: visible;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-feed__hl-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1.5px solid #fff;
}

.svc-feed__hl span {
  font-size: 4.5px;
  color: #333;
}

/* Post grid 3×3 */
.svc-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  flex: 1;
  overflow: hidden;
}

.svc-feed__grid img,
.svc-feed__grid video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.service-counter-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-counter {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.service-counter-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 18, 16, 0.28);
}

/* ── Right scrolling column ── */
.services-right {
  padding-top: 0;
  padding-bottom: clamp(100px, 12vw, 180px);
}

/* ── Service Card ── */
.service-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 52px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  margin-bottom: clamp(28px, 3.5vw, 44px);
  transform: rotate(-0.3deg);
  cursor: pointer;
  transition:
    transform 400ms cubic-bezier(0.34, 1.28, 0.64, 1),
    border-color 350ms ease,
    background 350ms ease,
    color 350ms ease,
    box-shadow 350ms ease;
  box-shadow: 0 4px 20px rgba(20, 18, 16, 0.06);
}

.service-card:nth-child(even) {
  transform: rotate(0.4deg);
}

.service-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 12px 36px rgba(20, 18, 16, 0.1);
}

.service-card:nth-child(even):hover {
  transform: rotate(0deg) translateY(-4px);
}

.service-card.is-active {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(0deg) translateX(-8px);
  border-color: var(--voltage);
  box-shadow: 0 12px 48px rgba(20, 18, 16, 0.2);
}

.service-card.is-active:hover {
  transform: rotate(0deg) translateX(-8px) translateY(-4px);
}

/* Card head */
.service-card__head {
  margin-bottom: clamp(16px, 2vw, 28px);
}

.service-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.38;
  margin-bottom: 0.6rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: inherit;
}

.service-card__body {
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: clamp(16px, 1.8vw, 24px);
  opacity: 0.68;
}

.service-card.is-active .service-card__body {
  opacity: 0.6;
}

/* Tags */
.service-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card__tag {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.4;
}

.service-card.is-active .service-card__tag {
  opacity: 0.6;
}

/* Arrow button */
.service-card__arrow {
  position: absolute;
  top: clamp(20px, 2.5vw, 36px);
  right: clamp(20px, 2.5vw, 36px);
  width: 44px;
  height: 44px;
  z-index: 1;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  font-size: 17px;
  text-decoration: none;
  transition: background 300ms ease, transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card__arrow {
  transform: scale(1.1);
}

.service-card.is-active .service-card__arrow {
  background: var(--voltage);
  transform: rotate(-15deg) scale(1.08);
}

.service-card.is-active:hover .service-card__arrow {
  transform: rotate(-15deg) scale(1.18);
}

/* Tape strips — each different */
.service-card__tape {
  position: absolute;
  pointer-events: none;
}

.service-card:nth-child(1) .service-card__tape {
  top: -10px;
  right: 72px;
  width: 80px;
  height: 22px;
  background: rgba(245, 215, 66, 0.65);
  transform: rotate(-2.5deg);
}

.service-card:nth-child(2) .service-card__tape {
  top: -8px;
  left: 52px;
  width: 64px;
  height: 20px;
  background: rgba(230, 51, 41, 0.35);
  transform: rotate(2deg);
}

.service-card:nth-child(3) .service-card__tape {
  top: -9px;
  right: 128px;
  width: 72px;
  height: 22px;
  background: rgba(245, 215, 66, 0.5);
  transform: rotate(-1.5deg);
}

.service-card:nth-child(4) .service-card__tape {
  top: -8px;
  left: 84px;
  width: 56px;
  height: 20px;
  background: rgba(239, 233, 221, 0.85);
  border: 1px solid rgba(20, 18, 16, 0.1);
  transform: rotate(3deg);
}

.service-card:nth-child(5) .service-card__tape {
  top: -10px;
  right: 56px;
  width: 88px;
  height: 22px;
  background: rgba(245, 215, 66, 0.55);
  transform: rotate(-2deg);
}

/* ── Mobile: single column ── */
@media (max-width: 900px) {
  .services-wrap {
    display: block;
    padding-top: clamp(32px, 5vw, 60px);
  }

  .services-left {
    position: static;
    /* sticky entfernen — kein Sinn im Block-Layout */
    height: auto;
    /* war calc(100dvh-…) → hat die ganze erste Seite blockiert */
    overflow: visible;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: clamp(20px, 4vw, 36px);
  }

  /* Spezifität muss gleich hoch sein wie Desktop-Regel (.section--services .xyz) */
  .section--services .service-visuals,
  .section--services .service-counter-row {
    display: none;
  }

  .services-right {
    padding-top: 0;
    padding-bottom: clamp(60px, 8vw, 100px);
  }

  .service-card.is-active {
    transform: none;
  }
}

@media (max-width: 767px) {
  .service-card {
    margin-bottom: 20px;
    padding-bottom: 76px;
  }

  .service-card__arrow {
    top: auto;
    bottom: 20px;
  }

  .service-card__title {
    font-size: clamp(22px, 6.5vw, 34px);
  }
}

/* ════════════════════════════════════════════════════════
   SECTION 05 — HOW IT WORKS
════════════════════════════════════════════════════════ */

.section--process {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(20, 18, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 18, 16, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  overflow: hidden;
}


.process__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 7rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-after-headline);
}

.process__headline em {
  font-style: italic;
  color: var(--voltage);
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 6vw, 72px) clamp(2rem, 4vw, 5rem);
}

.process__step {
  position: relative;
  background: #fefef9;
  border: 2.5px solid #141210;
  padding: clamp(1rem, 1.6vw, 1.6rem) clamp(1rem, 1.5vw, 1.5rem) clamp(1.1rem, 1.8vw, 1.8rem);
  box-shadow: 5px 5px 0 #141210;
}

.process__step:nth-of-type(1) { background: #fffef2; }
.process__step:nth-of-type(2) { background: #f4faff; }
.process__step:nth-of-type(3) { background: #f4fff8; }
.process__step:nth-of-type(4) { background: #fff8f2; }

/* Colored accent strip at top of each card */
.process__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
}

.process__step:nth-of-type(1)::before {
  background: var(--voltage);
}

.process__step:nth-of-type(2)::before {
  background: var(--highlight-yellow);
}

.process__step:nth-of-type(3)::before {
  background: var(--print-blue);
}

.process__step:nth-of-type(4)::before {
  background: var(--riso-green);
}

/* Tape strip on each card */
.process__step::after {
  content: '';
  position: absolute;
  top: -0.55rem;
  width: 3.4rem;
  height: 1.05rem;
  background: rgba(245, 215, 66, 0.58);
  z-index: 2;
  pointer-events: none;
}

.process__step:nth-of-type(1)::after {
  left: 1.6rem;
  transform: rotate(-2deg);
}
.process__step:nth-of-type(2)::after {
  right: 2.2rem;
  left: auto;
  transform: rotate(3.5deg);
}
.process__step:nth-of-type(3)::after {
  left: 2.8rem;
  transform: rotate(1.5deg);
}
.process__step:nth-of-type(4)::after {
  right: 1.8rem;
  left: auto;
  transform: rotate(-2.5deg);
}

/* Stagger: even nth-child (offset +1 for the SVG canvas being first child) */
.process__step:nth-child(even) {
  margin-top: clamp(1.5rem, 3vw, 3.5rem);
}

/* Subtle tilt — each card slightly different */
.process__step:nth-of-type(1) {
  transform: rotate(-1.8deg);
}

.process__step:nth-of-type(2) {
  transform: rotate(1.3deg);
}

.process__step:nth-of-type(3) {
  transform: rotate(0.8deg);
}

.process__step:nth-of-type(4) {
  transform: rotate(-1.2deg);
}

/* Colored stamp badge for step numbers */
.step__number {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 1;
  margin-bottom: 0.65rem;
  display: inline-block;
  padding: 0.2em 0.55em;
  border: 1.5px solid;
  border-radius: 2px;
}

.process__step:nth-of-type(1) .step__number {
  color: var(--voltage);
}

.process__step:nth-of-type(2) .step__number {
  color: var(--ink);
  opacity: 0.55;
}

.process__step:nth-of-type(3) .step__number {
  color: var(--print-blue);
}

.process__step:nth-of-type(4) .step__number {
  color: var(--riso-green);
}

.step__icon {
  position: absolute;
  top: clamp(0.7rem, 1.2vw, 1.1rem);
  right: clamp(0.7rem, 1.2vw, 1.1rem);
  width: 34px;
  height: 34px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(10deg);
  transform-origin: center;
  will-change: transform;
}

.step__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.process__step:nth-of-type(1) .step__icon { color: var(--voltage); }
.process__step:nth-of-type(2) .step__icon { color: #4a9eff; }
.process__step:nth-of-type(3) .step__icon { color: var(--print-blue); }
.process__step:nth-of-type(4) .step__icon { color: var(--riso-green); }

.process__step {
  will-change: transform;
  cursor: default;
}

.process__step {
  z-index: 1;
}

/* Flow arrows — vintage advertising style, self-contained SVG per card */
.step__flow {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  display: block;
  line-height: 0;
}

.step__flow--right {
  right: -2.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 28px;
}

.step__flow--diag {
  bottom: -2.2rem;
  left: 1.2rem;
  width: 48px;
  height: 48px;
}

.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.step__sub {
  font-family: var(--font-handwritten);
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  display: inline-block;
  transform: rotate(-1.2deg);
}


/* ════════════════════════════════════════════════════════
   SECTION 05 — CREW
════════════════════════════════════════════════════════ */

.section--crew {
  background: var(--paper-shadow);
  overflow: hidden;
  padding-bottom: clamp(120px, 16vw, 260px);
}

.crew__bg-word {
  font-family: var(--font-display);
  font-size: clamp(12rem, 22vw, 28rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--hairline);
  position: absolute;
  bottom: -0.1em;
  left: -0.02em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.crew__z {
  position: relative;
  z-index: 1;
}

.crew__content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 5vw, 7rem);
  align-items: start;
}

.crew__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-row-gap);
  position: sticky;
  top: calc(4rem + clamp(32px, 4vw, 64px));
}

.crew__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 7rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--space-after-headline);
}

.crew__headline em {
  font-style: italic;
  color: var(--voltage);
}

.crew__origin {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 0.98vw, 1.08rem);
  line-height: 1.7;
  max-width: 52ch;
  color: var(--ink-soft);
}

/* Polaroid-Grid — grosszügige Abstände damit der Effekt wirkt */
.crew__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(24px, 5vw, 64px);
  row-gap: clamp(40px, 6vw, 80px);
  position: relative;
}

.crew__member {
  position: relative;
}

.crew__member:nth-child(1) {
  transform: rotate(-2.5deg);
  --wiggle-delay: 0ms;
}

.crew__member:nth-child(2) {
  transform: rotate(1.8deg);
  --wiggle-delay: 300ms;
  margin-top: 2rem;
}

.crew__member:nth-child(3) {
  transform: rotate(-1deg);
  --wiggle-delay: 150ms;
}

.crew__member:nth-child(4) {
  transform: rotate(3deg);
  --wiggle-delay: 450ms;
  margin-top: -1rem;
}

.crew__member:nth-child(5) {
  transform: rotate(-2deg);
  grid-column: 1 / 3;
  width: 55%;
  justify-self: center;
  --wiggle-delay: 220ms;
}

.crew__member-info {
  margin-top: 0.6rem;
  padding: 0 0.2rem;
}

.crew__member-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.6rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.crew__member-role {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-top: 0.2rem;
}

.crew__member-handle {
  font-family: var(--font-handwritten);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* ════════════════════════════════════════════════════════
   SECTION 06 — WORK
════════════════════════════════════════════════════════ */

.section--work {
  background: var(--paper);
}

.work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--gutter);
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.work__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 7rem);
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.work__headline em {
  font-style: italic;
  color: var(--voltage);
}

.work__filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 0.3rem;
}

.work__filter-btn {
  font-family: var(--font-handwritten);
  font-size: 1rem;
  padding: 0.2rem 0.65rem;
  background: none;
  border: none;
  color: rgba(42, 38, 32, 0.45);
  position: relative;
  transition:
    color var(--duration-fast) var(--ease-out-expo),
    transform var(--duration-fast) var(--ease-paper);
}

.work__filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.65rem;
  right: 0.65rem;
  height: 1.5px;
  background: var(--voltage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease-out-expo);
}

.work__filter-btn.is-active,
.work__filter-btn:hover {
  color: var(--ink);
}

.work__filter-btn.is-active::after {
  transform: scaleX(1);
}

.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: min(80vh, 800px);
}

.bento-item {
  position: relative;
  overflow: hidden;
  background: var(--paper-shadow);
}

.bento-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.bento-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.bento-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.bento-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.bento-item video,
.bento-item__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-item video {
  opacity: 0;
  transition: opacity 350ms var(--ease-out-expo);
}

.bento-item__thumb {
  transition: opacity 350ms var(--ease-out-expo);
}

.bento-item:hover video {
  opacity: 1;
}

.bento-item:hover .bento-item__thumb {
  opacity: 0;
}

.bento-item__tag {
  position: absolute;
  bottom: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   SECTION 07 — CONTACT
════════════════════════════════════════════════════════ */

.section--contact {
  background: var(--voltage);
  color: #fff;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(80px, 10vw, 160px);
}

.section--contact .section__label {
  color: rgba(255, 255, 255, 0.45);
}

.contact__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.contact__content {
  position: relative;
  z-index: 1;
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 11.25rem);
  line-height: 1.4;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: clamp(2.5rem, 4vw, 5rem);
}

.contact__headline em {
  font-style: italic;
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.contact__buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.contact__btn {
  font-family: var(--font-handwritten);
  font-size: 1.35rem;
  color: #fff;
  padding: 0.8rem 2rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform var(--duration-fast) var(--ease-paper);
  text-decoration: none;
}

.contact__btn:hover {
  transform: rotate(-2deg) scale(1.05);
}

.contact__btn svg.rough-btn-border {
  position: absolute;
  inset: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  pointer-events: none;
  overflow: visible;
}

.contact__meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: clamp(3rem, 5vw, 6rem);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ( < 1024px )
════════════════════════════════════════════════════════ */

@media (max-width: 1023px) {

  /* Work bento: 3-col → 2-col, reset all explicit placements */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .bento-item:nth-child(1),
  .bento-item:nth-child(2),
  .bento-item:nth-child(3),
  .bento-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-item:nth-child(1) {
    aspect-ratio: 16 / 9;
  }

  .bento-item:nth-child(2),
  .bento-item:nth-child(3),
  .bento-item:nth-child(4) {
    aspect-ratio: 4 / 5;
  }

  /* Work header: wrap below instead of side-by-side */
  .work__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* IG mockup: slightly tighter height on tablet */
  .ig-phone {
    height: clamp(420px, 50vw, 580px);
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ( < 768px )
════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  .section {
    padding-block: clamp(64px, 14vw, 120px);
  }

  .section--hero {
    padding: 0;
  }

  /* Hero */
  .hero__q-text {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero__q-options {
    gap: 0.6rem;
  }

  /* Hero darf auf Mobile über 100dvh hinauswachsen */
  .section--hero {
    overflow: visible;
  }

  .hero__reveal.is-visible {
    position: static;
    display: flex;
    flex-direction: column;
    padding: 0 0 72px;
    gap: 0;
    align-items: stretch;
  }

  /* Video rückt an die Spitze */
  .reveal__right {
    order: -1;
    justify-content: stretch;
    width: 100%;
  }

  .reveal__video {
    max-width: 100%;
    width: 100%;
    /* Rotation + paper-shadow aufheben */
    transform: none !important;
    box-shadow: none;
    border-radius: 0;
    /* Stacking-Context unter der Nav (z-index 9999) erzwingen */
    position: relative;
    z-index: 0;
    isolation: isolate;
  }

  /* Pseudo-Elemente (paper-tear) auf Mobile verstecken */
  .reveal__video::before,
  .reveal__video::after {
    display: none;
  }

  /* Tape-Streifen auf Mobile weg */
  .tape-strip {
    display: none;
  }

  .reveal__video video {
    max-height: 58vh;
    width: 100%;
    object-fit: cover;
    /* Explizit unter der Nav stacken — Video-GPU-Layer darf
       NICHT über die Nav rendern. */
    position: relative;
    z-index: 0;
  }

  .reveal__left {
    padding: 1.6rem 24px 0;
    gap: 0.9rem;
  }

  .reveal__headline {
    font-size: clamp(2.2rem, 8.8vw, 4rem);
    line-height: 1.3;
    letter-spacing: -0.03em;
    padding-bottom: 0.35em;
  }

  .reveal__body {
    font-size: 1rem;
    max-width: none;
    line-height: 1.5;
  }

  .reveal__cta {
    font-size: 0.82rem;
    margin-top: 0.4rem;
  }

  .hero__scroll-hint {
    display: none;
  }

  /* Cars */
  .cars__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cars__headline {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    line-height: 1.15;
  }

  .cars__headline br {
    display: none;
  }

  .cars__stickers {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .cars__body {
    column-count: 1;
    font-size: 0.95rem;
  }

  .cars__right {
    justify-content: center;
  }

  .cars__video-wrap {
    width: 100%;
  }

  .cars__video-wrap video {
    aspect-ratio: 16 / 9;
    max-height: 56vw;
  }

  .cars__polaroid-stack {
    display: none;
  }

  /* Events */
  .events__layout {
    grid-template-columns: 1fr;
  }

  .events__left {
    position: static;
  }

  .events__collage {
    height: clamp(300px, 80vw, 480px);
  }

  /* Events collage: tighten photo positions for portrait screens */
  .events__photo:nth-child(1) {
    top: 2%;
    left: 2%;
    width: 56%;
    height: 40%;
  }

  .events__photo:nth-child(2) {
    top: 6%;
    right: 0%;
    width: 40%;
    height: 36%;
  }

  .events__photo:nth-child(3) {
    top: 42%;
    left: 0%;
    width: 42%;
    height: 32%;
  }

  .events__photo:nth-child(4) {
    top: 46%;
    left: 24%;
    width: 48%;
    height: 38%;
  }

  .events__photo:nth-child(5) {
    top: 52%;
    right: 0%;
    width: 36%;
    height: 30%;
  }

  /* Brands */
  .brands__layout {
    grid-template-columns: 1fr;
  }

  .brands__headline {
    font-size: clamp(1.8rem, 8.5vw, 2.6rem);
  }

  /* hide forced desktop line-breaks — let text wrap naturally */
  .brands__headline br {
    display: none;
  }

  /* CTA reused from Cars but needs ink color on paper background */
  .section--brands .cars__cta {
    color: var(--ink);
  }

  /* IG mockup: center and auto-size on mobile */
  .ig-mockup-outer {
    width: min(280px, 78vw);
    margin: 0 auto;
    transform: none;
    align-self: center;
  }

  .ig-phone {
    height: clamp(500px, 140vw, 560px);
  }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process__step:nth-child(even) {
    margin-top: 0;
  }

  /* Hide flow arrows — only make sense in 2-col desktop layout */
  .step__flow {
    display: none;
  }

  /* Clip decorative overflow on process section */
  .section--process {
    overflow-x: hidden;
  }

  /* Crew */
  .crew__content {
    grid-template-columns: 1fr;
  }

  .crew__left {
    position: static;
  }

  .crew__headline {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .crew__bg-word {
    font-size: clamp(3.5rem, 18vw, 8rem);
  }

  .crew__grid {
    column-gap: clamp(16px, 4vw, 24px);
    row-gap: clamp(28px, 5vw, 40px);
    overflow: hidden;
  }

  .crew__member:nth-child(5) {
    width: 60%;
  }

  /* Work — inherits 2-col and grid reset from tablet breakpoint */
  .bento-item:nth-child(1),
  .bento-item:nth-child(3) {
    aspect-ratio: 4 / 5;
  }

  .bento-item:nth-child(2),
  .bento-item:nth-child(4) {
    aspect-ratio: 4 / 5;
  }

  /* Contact */
  .section--contact {
    padding-bottom: clamp(64px, 12vw, 120px);
    justify-content: flex-end;
  }

  .contact__headline {
    font-size: clamp(3rem, 12vw, 6rem);
  }

  .contact__buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Small phones ( < 400px )
════════════════════════════════════════════════════════ */

@media (max-width: 400px) {

  /* Bento: single column on very small phones */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item:nth-child(1),
  .bento-item:nth-child(2),
  .bento-item:nth-child(3),
  .bento-item:nth-child(4) {
    aspect-ratio: 4 / 3;
  }

  /* Crew: keep 2 columns even on tiny screens */
  .crew__member:nth-child(5) {
    grid-column: 1 / 3;
    width: 60%;
    justify-self: center;
  }

}