/* ═══════════════════════════════════════════════════════════
   LEON WULF — styles.css
   Design by BLACK PHÖNIX MEDIA
═══════════════════════════════════════════════════════════ */

/* ── FONTS ────────────────────────────────────────────────── */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-LatinExt.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --dark:         #0D0C0B;
  --dark-2:       #161411;
  --dark-3:       #1f1d1a;
  --cream:        #F2EDE5;
  --cream-2:      #E8E2D8;
  --cream-3:      #DDD6CB;
  --amber:        #C8963E;
  --amber-light:  #DBA84E;
  --amber-dim:    rgba(200,150,62,.15);
  --text-light:   #E8E3DB;
  --text-dim:     #8A8278;
  --text-dark:    #1A1816;
  --text-dark-2:  #3A3530;

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body:    'DM Sans', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:     cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1280px;
  --gap:        clamp(1.5rem, 4vw, 3rem);
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; } /* Lenis handles smoothness */
body {
  font-family: var(--ff-body);
  font-weight: 400;
  background: var(--dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
body.menu-open  { overflow: hidden; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── UTILITIES ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .92;
  letter-spacing: .02em;
  text-wrap: balance;
}

/* ── REVEAL ANIMATIONS (initial states) ──────────────────── */
.js-reveal-clip {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}
.js-reveal-up {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
}
.js-reveal-scale {
  opacity: 0;
  transform: scale(.94);
  will-change: transform, opacity;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9em 1.8em;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease-out), border-color .3s;
  white-space: nowrap;
}
.btn__arrow { transition: transform .3s var(--ease-spring); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Amber fill */
.btn--amber {
  background: var(--amber);
  color: var(--dark);
  border: 1.5px solid var(--amber);
}
.btn--amber::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber-light);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.btn--amber:hover::after { transform: translateX(0); }
.btn--amber span, .btn--amber .btn__arrow { position: relative; z-index: 1; }

/* Outline (on dark bg) */
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(232,227,219,.35);
}
.btn--outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232,227,219,.08);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.btn--outline:hover::after { transform: translateX(0); }
.btn--outline span, .btn--outline .btn__arrow { position: relative; z-index: 1; }

/* Outline-light (on dark bg — more prominent) */
.btn--outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(232,227,219,.5);
}
.btn--outline-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232,227,219,.1);
  transform: translateX(-101%);
  transition: transform .4s var(--ease-out);
}
.btn--outline-light:hover::after { transform: translateX(0); }
.btn--outline-light span, .btn--outline-light .btn__arrow { position: relative; z-index: 1; }

/* Ghost (hero secondary) */
.btn--ghost {
  background: transparent;
  color: rgba(232,227,219,.65);
  border: 1.5px solid rgba(232,227,219,.2);
}
.btn--ghost:hover { color: var(--text-light); border-color: rgba(232,227,219,.5); }

/* Full-width */
.btn--block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.preloader__logo {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: .15em;
  color: var(--text-light);
  line-height: 1;
}
.preloader__bar-wrap {
  width: clamp(120px, 20vw, 200px);
  height: 1px;
  background: rgba(232,227,219,.15);
  overflow: hidden;
}
.preloader__bar {
  height: 100%;
  width: 100%;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(0);
}

/* ═══════════════════════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: normal;
}
.cursor__dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  transform: translate(-50%,-50%);
  transition: transform .1s, width .25s var(--ease-out), height .25s var(--ease-out), opacity .2s;
}
.cursor__ring {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  transform: translate(-50%,-50%);
  opacity: .5;
  transition: width .35s var(--ease-out), height .35s var(--ease-out), opacity .3s, border-color .3s;
}
body.cursor-hover .cursor__dot { width: 6px; height: 6px; opacity: .5; }
body.cursor-hover .cursor__ring { width: 60px; height: 60px; opacity: .8; border-color: var(--amber-light); }
body.cursor-hover-img .cursor__dot { opacity: 0; }
body.cursor-hover-img .cursor__ring { width: 70px; height: 70px; }

@media (pointer: coarse) { .cursor { display: none; } }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 1.25rem 0;
  transition: transform .5s var(--ease-out), background .4s, padding .4s;
}
.nav.is-scrolled {
  background: rgba(13,12,11,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .85rem 0;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.nav__logo-letters {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: var(--amber);
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--ff-body);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .3s;
}
.nav__logo:hover .nav__logo-name { color: var(--text-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -.3em; left: 0; right: 0;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--text-light); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link--cta {
  padding: .6em 1.4em;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  border-radius: 2px;
  transition: background .3s, color .3s;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--amber); color: var(--dark); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__burger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform .35s var(--ease-io), opacity .3s, width .3s;
  transform-origin: center;
}
.nav__burger.is-open .nav__burger-line:first-child { transform: rotate(45deg) translateY(5.5px); }
.nav__burger.is-open .nav__burger-line:last-child  { transform: rotate(-45deg) translateY(-5.5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vw, 5rem);
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu__bg {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-io);
}
.mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
}
.mobile-menu.is-open .mobile-menu__bg { transform: translateX(0); }
.mobile-menu__nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mobile-menu__link {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 10vw, 5rem);
  letter-spacing: .03em;
  color: var(--text-dim);
  transition: color .3s;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .4s, transform .4s var(--ease-out), color .3s;
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateX(0); }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: .15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: .2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: .25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: .3s; }
.mobile-menu__link:hover { color: var(--text-light); }
.mobile-menu__footer {
  position: absolute;
  bottom: clamp(2rem, 6vw, 4rem);
  left: clamp(2rem, 8vw, 5rem);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   HERO — fullscreen cinematic
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

/* ── Fullscreen background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  will-change: transform;
}
/* Heavy bottom-to-top gradient keeps face clear, text area dark */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(13,12,11,.97) 0%,
      rgba(13,12,11,.72) 25%,
      rgba(13,12,11,.22) 50%,
      rgba(13,12,11,.04) 70%,
      transparent 100%),
    linear-gradient(to right,
      rgba(13,12,11,.18) 0%,
      transparent 50%,
      rgba(13,12,11,.12) 100%);
}
/* Amber curtain that sweeps away on load */
.hero__curtain {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--amber);
  transform-origin: right;
}

/* ── Decorative layers (z-index above bg, below content) ── */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.hero__ambient {
  position: absolute;
  width: 80vw; height: 65vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,62,.05) 0%, transparent 70%);
  top: 15%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: ambientPulse 7s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes ambientPulse {
  from { opacity: .6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;  transform: translateX(-50%) scale(1.12); }
}
.hero__bg-letter {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: clamp(20rem, 55vw, 75rem);
  line-height: .82;
  color: rgba(232,227,219,.016);
  pointer-events: none;
  letter-spacing: -.03em;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

/* ── Text content (centered, bottom) ── */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.hero__eyebrow-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 11rem);
  line-height: .88;
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
  text-align: center;
}
.hero__title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.hero__title-line--accent { color: var(--amber); }
.hero__sub {
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: rgba(232,227,219,.6);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Scroll hint (bottom-right) ── */
.hero__scroll-hint {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: clamp(1.25rem, 3vw, 2rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__scroll-track {
  width: 1px;
  height: 3.5rem;
  background: rgba(232,227,219,.12);
  overflow: hidden;
}
.hero__scroll-fill {
  width: 100%; height: 100%;
  background: var(--amber);
  transform-origin: top;
  animation: scrollFill 2.2s var(--ease-io) infinite;
}
@keyframes scrollFill {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1) translateY(0); }
  100% { transform: scaleY(1) translateY(100%); }
}

/* ── Location tag (bottom-left) ── */
.hero__right-tag {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  left: clamp(1.25rem, 3vw, 2rem);
  z-index: 3;
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(232,227,219,.3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── Cursor label ── */
.cursor__label {
  position: absolute;
  transform: translate(-50%, calc(-50% + 32px));
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--amber);
  padding: .25em .6em;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
body.cursor-label-show .cursor__label { opacity: 1; }
body.cursor-label-show .cursor__ring  { width: 52px; height: 52px; }

/* ── Nav progress bar ── */
.nav__progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  background: var(--amber);
  width: 0%;
  transition: width .05s linear;
  opacity: .7;
}

/* ── Mobile hero ── */
@media (max-width: 768px) {
  .hero { justify-content: flex-end; }
  .hero__title { font-size: clamp(2.8rem, 12vw, 5.5rem); }
  .hero__eyebrow-line { width: 1.25rem; }
  .hero__scroll-hint  { display: none; }
  .hero__right-tag    { display: none; }
  .hero__bg-letter    { display: none; }
  .hero__ambient      { display: none; }
  .hero__content { padding-bottom: clamp(3rem, 8vh, 5rem); }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--amber);
  overflow: hidden;
  padding-block: .9rem;
}
.marquee-row {
  display: flex;
  width: max-content;
}
.marquee-row--fwd  { animation: marquee-fwd 22s linear infinite; }
.marquee-row--rev  { animation: marquee-rev 22s linear infinite; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: .75rem;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: .12em;
  color: var(--dark);
  user-select: none;
}
.marquee-content em {
  font-style: normal;
  opacity: .4;
}
@keyframes marquee-fwd { from { transform: translateX(0); }   to { transform: translateX(-50%); } }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ═══════════════════════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════════════════════ */
.statement {
  background: var(--cream);
  padding-block: clamp(5rem, 12vh, 9rem);
}
.statement__inner { display: flex; flex-direction: column; gap: clamp(3rem, 6vh, 5rem); }
.statement__quote {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: .02em;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: .05em;
  max-width: 900px;
}
.statement__quote em {
  font-style: normal;
  color: var(--amber);
}
.statement__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  border-top: 1px solid var(--cream-3);
  padding-top: clamp(2rem, 4vh, 3rem);
}
.stat { display: flex; flex-direction: column; gap: .4rem; }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--text-dark);
}
.stat__label {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark-2);
  opacity: .65;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  background: var(--dark);
  padding-block: clamp(5rem, 12vh, 9rem);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'LW';
  position: absolute;
  right: -2vw; bottom: -3vw;
  font-family: var(--ff-display);
  font-size: 30vw;
  line-height: 1;
  color: rgba(255,255,255,.02);
  pointer-events: none;
  letter-spacing: .1em;
}
.about__inner { position: relative; }
.about__section-num {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(232,227,219,.05);
  letter-spacing: .05em;
  margin-bottom: -1rem;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about__media { position: relative; }
.about__img-wrap { position: relative; overflow: hidden; }
.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-out);
}
.about__img-wrap:hover .about__img { transform: scale(1.04); }
.about__img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(13,12,11,.8));
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.about__accent-img {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  border: 3px solid var(--dark);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.about__accent-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about__copy { padding-top: 3rem; }
.about__copy .section-title { margin-bottom: 2rem; }
.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: rgba(232,227,219,.75);
  margin-bottom: 2.5rem;
}
.about__text p:first-child {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   METHODIK
═══════════════════════════════════════════════════════════ */
.methodik { background: var(--cream); }
.methodik__header {
  padding-top: clamp(5rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
}
.methodik__section-num {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(26,24,22,.06);
  line-height: 1;
  margin-bottom: -1rem;
}
.methodik__title { color: var(--text-dark); margin-bottom: 1.5rem; }
.methodik__sub {
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-dark-2);
  opacity: .7;
  max-width: 480px;
}

/* Desktop horizontal scroll */
.methodik__pinwrap {
  overflow: hidden;
  position: relative;
}
.methodik__track {
  display: flex;
  width: max-content;
}
.methodik__slide {
  width: 100vw;
  min-height: 85vh;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vh, 5rem);
  background: var(--dark-2);
  position: relative;
}
.methodik__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,150,62,.04) 0%, transparent 60%);
  pointer-events: none;
}
.methodik__slide-num {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 15vw, 14rem);
  line-height: 1;
  color: rgba(232,227,219,.04);
  letter-spacing: .05em;
  position: absolute;
  top: 2rem; left: clamp(1.25rem, 5vw, 4rem);
  pointer-events: none;
}
.methodik__slide-img {
  grid-column: 1;
  overflow: hidden;
  height: clamp(300px, 55vh, 550px);
}
.methodik__slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.methodik__slide:hover .methodik__slide-img img { transform: scale(1.04); }
.methodik__slide-body {
  grid-column: 2 / 4;
  padding-top: 2rem;
}
.methodik__slide-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: .04em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: .92;
}
.methodik__slide-body p {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(232,227,219,.65);
  margin-bottom: 2rem;
  max-width: 480px;
}
.methodik__slide-body ul {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.methodik__slide-body li {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.methodik__slide-body li::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
/* Progress bar */
.methodik__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(232,227,219,.08);
}
.methodik__progress-fill {
  height: 100%;
  background: var(--amber);
  width: 0%;
  transition: width .05s linear;
}

/* Mobile cards — hidden on desktop */
.methodik__mobile-cards { display: none; }

/* ═══════════════════════════════════════════════════════════
   ANGEBOTE
═══════════════════════════════════════════════════════════ */
.angebote {
  background: var(--dark);
  padding-block: clamp(5rem, 12vh, 9rem);
  position: relative;
  overflow: hidden;
}
.angebote::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(232,227,219,.04);
  pointer-events: none;
}
.angebote__section-num {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(232,227,219,.04);
  margin-bottom: -1rem;
}
.angebote__inner .section-title { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.angebote__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(232,227,219,.06);
  border: 1.5px solid rgba(232,227,219,.06);
}
.angebot {
  background: var(--dark);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .35s;
  position: relative;
}
.angebot::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.angebot:hover::after { transform: scaleX(1); }
.angebot--featured {
  background: var(--dark-3);
}
.angebot--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,150,62,.06) 0%, transparent 70%);
  pointer-events: none;
}
.angebot__tag {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
}
.angebot__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: .9;
  letter-spacing: .03em;
  color: var(--text-light);
  flex-grow: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.angebot__duration {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.angebot__desc {
  font-size: clamp(.85rem, 1.2vw, .95rem);
  line-height: 1.7;
  color: rgba(232,227,219,.6);
  flex-grow: 1;
}
.angebot .btn { align-self: flex-start; margin-top: auto; }

/* ═══════════════════════════════════════════════════════════
   STIMMEN (TESTIMONIALS)
═══════════════════════════════════════════════════════════ */
.stimmen {
  background: var(--cream);
  padding-block: clamp(5rem, 12vh, 9rem);
  position: relative;
  overflow: hidden;
}
.stimmen__section-num {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: rgba(26,24,22,.05);
  margin-bottom: -1rem;
}
.stimmen__inner .section-title {
  color: var(--text-dark);
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.stimmen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}
.testimonial {
  background: rgba(255,255,255,.5);
  border: 1px solid var(--cream-3);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}
.testimonial__quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .7;
  color: var(--amber);
  margin-bottom: 1rem;
  opacity: .6;
}
.testimonial p {
  font-size: clamp(.9rem, 1.3vw, 1rem);
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dark-2);
  opacity: .6;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.testimonial cite::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.stimmen__bg-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 35%;
  height: 60%;
  overflow: hidden;
  pointer-events: none;
}
.stimmen__bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .15;
  filter: grayscale(1);
}
.stimmen__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 30%, var(--cream) 100%);
}

/* ═══════════════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════════════ */
.kontakt { background: var(--dark); }
.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.kontakt__media {
  position: relative;
  overflow: hidden;
}
.kontakt__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7);
  transition: transform .8s var(--ease-out);
}
.kontakt__media:hover .kontakt__img { transform: scale(1.03); }
.kontakt__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark) 100%);
}
.kontakt__form-side {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kontakt__section-num {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: rgba(232,227,219,.04);
  margin-bottom: -1rem;
}
.kontakt__title { margin-bottom: 1.5rem; }
.kontakt__lead {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  color: rgba(232,227,219,.65);
  margin-bottom: 2.5rem;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { position: relative; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(232,227,219,.04);
  border: 1px solid rgba(232,227,219,.12);
  color: var(--text-light);
  font-family: var(--ff-body);
  font-size: .95rem;
  padding: 1.4em 1em .7em;
  border-radius: 2px;
  outline: none;
  transition: border-color .3s, background .3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(200,150,62,.04);
}
.form-group label {
  position: absolute;
  top: .9em; left: 1em;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  pointer-events: none;
  transition: transform .25s var(--ease-out), font-size .25s, color .25s;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-.55em) scale(.8);
  transform-origin: left;
  color: var(--amber);
}
.contact-form .btn { margin-top: .5rem; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(232,227,219,.06);
  padding-block: 2.5rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: var(--amber);
}
.footer__center { text-align: center; }
.footer__name {
  font-family: var(--ff-display);
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--text-dim);
}
.footer__tagline {
  font-size: .7rem;
  letter-spacing: .12em;
  color: rgba(138,130,120,.5);
  margin-top: .3rem;
}
.footer__credits {
  text-align: right;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: .5;
  line-height: 1.6;
}
.footer__bpm-link {
  color: var(--amber);
  opacity: 1;
  transition: opacity .3s;
}
.footer__bpm-link:hover { opacity: .75; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about__grid      { grid-template-columns: 1fr; gap: 3rem; }
  .about__img       { aspect-ratio: 16/9; }
  .about__accent-img { display: none; }
  .angebote__grid   { grid-template-columns: 1fr; gap: 1.5px; }
  .stimmen__grid    { grid-template-columns: 1fr; max-width: 600px; }
  .stimmen__bg-img  { display: none; }
  .kontakt__inner   { grid-template-columns: 1fr; }
  .kontakt__media   { height: 40vh; }
  .kontakt__media-overlay { background: linear-gradient(to bottom, transparent 60%, var(--dark) 100%); }
  .footer__inner    { flex-direction: column; text-align: center; }
  .footer__credits  { text-align: center; }
}

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

  .hero__title  { font-size: clamp(3rem, 14vw, 6rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .statement__stats { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  /* Horizontal scroll disabled on mobile — show stacked cards instead */
  .methodik__pinwrap   { display: none; }
  .methodik__mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
    background: rgba(232,227,219,.06);
    margin-top: 0;
    padding-bottom: clamp(3rem, 6vh, 5rem);
  }
  .methodik__card {
    background: var(--dark-2);
    padding: clamp(1.75rem, 5vw, 3rem);
    position: relative;
    overflow: hidden;
  }
  .methodik__card-num {
    display: block;
    font-family: var(--ff-display);
    font-size: 5rem;
    line-height: 1;
    color: rgba(232,227,219,.05);
    position: absolute;
    top: .5rem; right: 1.25rem;
  }
  .methodik__card h3 {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 10vw, 4rem);
    letter-spacing: .04em;
    color: var(--text-light);
    margin-bottom: .75rem;
    line-height: .92;
  }
  .methodik__card p {
    font-size: .9rem;
    line-height: 1.65;
    color: rgba(232,227,219,.6);
  }
  .methodik__card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 2rem;
    height: 2px;
    background: var(--amber);
  }

  .kontakt__inner { grid-template-columns: 1fr; }
  .kontakt__media { height: 50vw; min-height: 240px; }
}

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