/* ==========================================================================
   JULEZ.CREATIONZ — Design System v2
   Fresh. Bold. Disruptive.
   ========================================================================== */

/* --- FONTS (self-hosted, DSGVO-konform) --- */

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

@font-face {
  font-family: 'Mistrully';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Mistrully.ttf') format('truetype');
}

/* --- CUSTOM PROPERTIES --- */

:root {
  --orange: #F24C19;
  --orange-dark: #d9400f;
  --orange-light: #ff6a3d;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --dark-soft: #222222;
  --gold: #B9911E;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --grey-100: #EBEBEB;
  --grey-400: #888888;
  --grey-600: #555555;

  --font-script: 'Mistrully', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.4s var(--ease-out);

  --max-w: 1280px;
  --max-w-narrow: 860px;
  --gap: clamp(16px, 3vw, 32px);
  --section-pad: clamp(60px, min(10vw, 11dvh), 140px);
}

/* --- RESET --- */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

/* --- TYPOGRAPHY --- */

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.t-display {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.t-h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.t-h2 { font-size: clamp(2rem, 4vw, 3rem); }
.t-h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.t-script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1.15;
}

.t-body-lg { font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.7; }
.t-body { font-size: 1rem; line-height: 1.7; }
.t-small { font-size: 0.875rem; line-height: 1.6; }

.t-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.t-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- LAYOUT --- */

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.wrap--narrow {
  max-width: var(--max-w-narrow);
}

section {
  position: relative;
}

/* --- BUTTONS --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  min-height: 44px;
  border-radius: 100px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 76, 25, 0.35);
}

.btn--outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}

.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* --- TAG --- */

.tag {
  display: inline-block;
  background: var(--grey-100);
  border-radius: 100px;
  padding: 5px 14px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--grey-600);
}

.tag--orange {
  background: rgba(242, 76, 25, 0.1);
  color: var(--orange);
}

/* --- HEADER --- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out);
}

.header--scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

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

.header__logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition);
}

.header--scrolled .header__logo img {
  height: 36px;
}

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

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  position: relative;
  transition: opacity var(--transition);
}

.nav__link:hover {
  opacity: 0.7;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
  position: absolute;
  left: 0;
}

.nav-toggle__bar:nth-child(1) { top: 10px; }
.nav-toggle__bar:nth-child(2) { top: 21px; }
.nav-toggle__bar:nth-child(3) { top: 32px; }

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
  }

  .nav.active {
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  /* Buttons global */
  .btn {
    white-space: normal;
    max-width: 100%;
  }

  /* Hero mobile */
  .hero--small {
    padding-top: 70px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero__content--right .hero__ctas {
    align-items: stretch;
  }

  /* Marquee */
  .marquee__track {
    gap: 32px;
  }
}

/* --- HERO --- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--orange);
}

.hero--small {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 110px;
  color: var(--white);
  background: var(--dark);
}

.hero--small::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/platzhalter-hero.jpg') center / cover no-repeat;
  opacity: 0.65;
  z-index: 0;
}

.hero--small::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,76,25,0.55) 0%, rgba(199,61,16,0.45) 40%, rgba(41,41,41,0.50) 100%);
  z-index: 1;
}

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

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

.hero:not(.hero--small)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242,76,25,0.55) 0%, rgba(199,61,16,0.45) 40%, rgba(41,41,41,0.50) 100%);
  z-index: 2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(17, 17, 17, 0.3) 40%,
    rgba(17, 17, 17, 0.0) 65%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(60px, 10vw, 120px);
  max-width: 800px;
}

.hero__content--left {
  margin-right: auto;
}

.hero__content--right {
  margin-left: auto;
  text-align: right;
}

.hero__content--right .hero__sub {
  margin-left: auto;
}

.hero__content--right .hero__ctas {
  justify-content: flex-end;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
  color: var(--white);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title .t-script {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--orange);
  margin-bottom: -10px;
}

.hero__sub {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  opacity: 0.4;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 24px;
  height: 24px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- MARQUEE (Social Proof) --- */

.marquee {
  background: var(--dark);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--dark-soft);
}

.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 90s linear infinite;
  width: max-content;
}

.marquee__item {
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee__item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- PROBLEM → LÖSUNG --- */

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

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (min-width: 900px) {
  .problem__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem__overline {
  color: var(--orange);
  margin-bottom: 16px;
}

.problem__title {
  margin-bottom: 24px;
}

.problem__text {
  color: var(--grey-600);
  margin-bottom: 16px;
  max-width: 520px;
}

.problem__highlight {
  font-weight: 700;
  color: var(--dark);
}

.problem__cta {
  margin-top: 32px;
}

.problem__visual {
  position: relative;
}

.problem__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
}

.problem__img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 12px 40px rgba(242, 76, 25, 0.3);
}

.problem__img-badge span {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2px;
}

@media (max-width: 899px) {
  .problem__visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .problem__img {
    aspect-ratio: 16/10;
  }

  .problem__img-badge {
    bottom: -12px;
    left: 12px;
    padding: 14px 20px;
  }

  .problem__img-badge span {
    font-size: 1.5rem;
  }
}

/* --- LEISTUNGEN --- */

.services {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: var(--white);
}

.services__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

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

.svc-card {
  background: var(--dark-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}

.svc-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card--featured {
  border-color: var(--orange);
  background: linear-gradient(170deg, rgba(242,76,25,0.08) 0%, var(--dark-mid) 50%);
}

.svc-card--featured::before {
  opacity: 1;
}

.svc-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.svc-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.svc-card__price-sub {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-bottom: 20px;
}

.svc-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.svc-card__desc {
  font-size: 0.9375rem;
  color: var(--grey-400);
  margin-bottom: 24px;
  line-height: 1.6;
}

.svc-card__list {
  margin-bottom: 32px;
}

.svc-card__list li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.svc-card__list li:last-child {
  border-bottom: none;
}

.svc-card__list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.svc-card .btn {
  width: 100%;
}

.services__note {
  text-align: center;
  margin-top: 32px;
  color: var(--grey-400);
  font-size: 0.9375rem;
}

.services__note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- PROCESS --- */

.process {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.process__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.process__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.process__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process__track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey-100);
}

.process__step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.process__step-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process__step:hover .process__step-dot {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(242, 76, 25, 0.25);
}

.process__step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.process__step-text {
  font-size: 0.8125rem;
  color: var(--grey-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process__track {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process__track::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .process__step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    text-align: left;
    padding: 0;
  }

  .process__step-dot {
    margin: 0;
  }

  .process__step-content {
    padding-top: 8px;
  }
}

/* --- REFERENZEN (Custom Video Player) --- */

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

.referenzen__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.referenzen__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.referenzen__list {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 120px);
}

.ref-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

@media (min-width: 900px) {
  .ref-row {
    grid-template-columns: 300px 1fr;
  }

  .ref-row--reverse {
    grid-template-columns: 1fr 300px;
  }

  .ref-row--reverse .ref-row__video {
    order: 2;
  }

  .ref-row--reverse .ref-row__info {
    order: 1;
  }
}

/* Reel Player */
.reel {
  width: 280px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--dark);
  cursor: pointer;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.reel:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.18),
    0 4px 12px rgba(0,0,0,0.1);
}

/* Poster state */
.reel__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.reel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(242, 76, 25, 0.4);
  border: none;
  cursor: pointer;
}

.reel:hover .reel__play {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 40px rgba(242, 76, 25, 0.55);
}

.reel__play svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
  margin-left: 3px;
}

/* Playing state — iframe replaces poster */
.reel--playing .reel__poster,
.reel--playing .reel__play {
  display: none;
}

.reel__frame {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.reel--playing .reel__frame {
  display: block;
}

.reel__frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reel__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Local video playing state */
.reel--local-playing .reel__poster,
.reel--local-playing .reel__poster-placeholder {
  display: none;
}

.reel--local-playing .reel__frame {
  display: block;
}

.reel--local-playing .reel__play {
  display: flex;
  z-index: 5;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.reel--local-playing:hover .reel__play {
  opacity: 1;
}

/* Placeholder poster (until real thumbnails are added) */
.reel__poster-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--dark) 0%, #2a1a12 50%, var(--dark) 100%);
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  padding: 20px;
  letter-spacing: 0.04em;
}

.reel__poster-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: rgba(255,255,255,0.15);
  fill: none;
  stroke-width: 1.5;
}

/* Ref Info */
.ref-row__info {
  max-width: 480px;
}

.ref-row__tag {
  margin-bottom: 16px;
}

.ref-row__name {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.ref-row__desc {
  color: var(--grey-600);
  margin-bottom: 20px;
  max-width: 420px;
}

.ref-row__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--orange);
  transition: gap var(--transition);
}

.ref-row__link:hover {
  gap: 14px;
}

@media (max-width: 899px) {
  .reel {
    width: 240px;
  }

  .team-card__img-wrap {
    width: 180px;
    height: 180px;
  }

  .ref-row__info {
    text-align: center;
    margin: 0 auto;
  }

  .ref-row__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .ref-row__link {
    justify-content: center;
  }
}

/* --- TEAM --- */

.team {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.team__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.team__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  transition: transform var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card__img-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all var(--transition);
}

.team-card:hover .team-card__img-wrap {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(242, 76, 25, 0.15);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-card__img {
  transform: scale(1.08);
}

.team-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-card__bio {
  font-size: 0.8125rem;
  color: var(--grey-600);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- TESTIMONIALS --- */

.testimonials {
  padding: var(--section-pad) 0;
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -80px;
  right: -30px;
  font-family: var(--font-script);
  font-size: 500px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonials__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.testimonials__overline {
  opacity: 0.7;
  margin-bottom: 12px;
}

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

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testi-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.testi-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.testi-card__stars {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  font-style: italic;
  opacity: 0.95;
  flex: 1;
  margin-bottom: 24px;
}

.testi-card__footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
}

.testi-card__author {
  font-weight: 700;
  font-size: 0.9375rem;
}

.testi-card__company {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* --- ABOUT --- */

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 5fr 6fr;
  }
}

.about__visual {
  position: relative;
}

.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
}

.about__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: var(--orange);
  z-index: -1;
}

.about__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.about__title {
  margin-bottom: 24px;
}

.about__title .t-script {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--orange);
}

.about__text {
  color: var(--grey-600);
  margin-bottom: 16px;
  max-width: 540px;
}

.about__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.about__value {
  background: var(--off-white);
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--dark);
  transition: all var(--transition);
}

.about__value:hover {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 899px) {
  .about__visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .about__img {
    aspect-ratio: 1;
  }

  .about__accent { display: none; }
}

/* --- FAQ --- */

.faq {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.faq__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.faq__list {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--grey-100);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--orange); }

.faq__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.faq__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--dark);
  stroke-width: 2;
  transition: transform var(--transition);
}

.faq__item.active .faq__icon {
  background: var(--orange);
}

.faq__item.active .faq__icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.faq__answer-inner {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.75;
  max-width: 640px;
}

/* --- CONTACT --- */

.contact {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
}

.contact__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.contact__overline {
  color: var(--orange);
  margin-bottom: 12px;
}

.contact__title .t-script {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--orange);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(242, 76, 25, 0.15);
}

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

.contact-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.contact-form__privacy input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  margin-top: 1px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.contact-form__privacy input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}

.contact-form__privacy input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form__privacy a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__submit {
  width: 100%;
}

.contact-form__success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
}

.contact-form__success.visible { display: block; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 12px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
}

.contact-info__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--white);
}

.contact-info__value a {
  transition: color var(--transition);
}

.contact-info__value a:hover {
  color: var(--orange);
}

/* --- FOOTER --- */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer__logo img {
  height: 36px;
  width: auto;
}

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

.footer__link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--orange);
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer__nav--standorte {
  opacity: 0.7;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

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

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--orange);
}

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

/* --- ANIMATIONS --- */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* --- LEGAL PAGES --- */

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

.legal h1 {
  margin-bottom: 48px;
}

.legal h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.legal h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.legal p {
  margin-bottom: 16px;
  color: var(--grey-600);
  max-width: 65ch;
}

.legal a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal ul li {
  list-style: disc;
  margin-bottom: 4px;
  color: var(--grey-600);
  font-size: 0.9375rem;
}

/* --- UTILITY --- */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- CURSOR GLOW (interactive) --- */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 76, 25, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* --- FLOATING ELEMENTS (interactive decoration) --- */

.float-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.float-el {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float-random 8s ease-in-out infinite alternate;
}

.float-el--1 {
  width: 300px; height: 300px;
  background: var(--orange);
  top: 10%; right: -5%;
  animation-duration: 10s;
}

.float-el--2 {
  width: 200px; height: 200px;
  background: var(--gold);
  bottom: 20%; left: -3%;
  animation-duration: 12s;
  animation-delay: -3s;
}

.float-el--3 {
  width: 150px; height: 150px;
  background: var(--orange);
  top: 60%; right: 10%;
  animation-duration: 9s;
  animation-delay: -5s;
}

@keyframes float-random {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* --- TILT CARD EFFECT --- */

.tilt-card {
  transition: transform 0.15s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* --- COUNTER ANIMATION --- */

.counter {
  font-variant-numeric: tabular-nums;
}

/* --- STATS BAR --- */

.stats {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--dark);
  color: var(--white);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 20px;
}

.stats__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stats__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* --- LOCATION PAGES --- */

.loc-hero {
  padding: clamp(160px, 20vw, 220px) 0 clamp(60px, 8vw, 100px);
  background: var(--orange);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.loc-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.loc-hero__tag {
  margin-bottom: 20px;
}

.loc-hero__tag .tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

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

.loc-section--alt {
  background: var(--off-white);
}

.loc-section__title {
  margin-bottom: 24px;
}

.loc-section__text {
  color: var(--grey-600);
  margin-bottom: 16px;
  max-width: 700px;
}

.loc-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.loc-svc {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition);
}

.loc-svc:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.loc-svc__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.loc-svc__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.loc-svc__text {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.6;
}

.loc-cta {
  padding: var(--section-pad) 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.loc-cta__title {
  margin-bottom: 16px;
}

.loc-cta__text {
  color: rgba(255,255,255,0.6);
  margin: 0 auto 32px;
  max-width: 500px;
}

/* --- PRINT --- */

/* Partner Grid responsive */
@media (max-width: 900px) {
  #partner .wrap > div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

/* --- EXTRA SMALL SCREENS (≤ 480px / iPhone SE, iPhone 12 mini etc.) --- */
@media (max-width: 480px) {
  .t-h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .t-h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .reel {
    width: 200px;
  }

  .team-card__img-wrap {
    width: 150px;
    height: 150px;
  }

  .hero__content--right {
    text-align: left;
  }

  .hero__content--right .hero__sub {
    margin-left: 0;
  }

  .hero__content--right .hero__ctas {
    justify-content: flex-start;
  }
}

@media print {
  .header, .nav-toggle, .footer__social, .btn, .marquee, .hero__scroll-hint, .cursor-glow, .float-elements { display: none; }
  body { color: #000; background: #fff; }
  section { padding: 20px 0; break-inside: avoid; }
}
