/* ═══════════════════════════════════════════
   die muse. – Wecke deine Inspiration
   Farben: #000 / #fff / Akzent #1c9eb2
   Headlines: Poiret One · Text: Jost
   ═══════════════════════════════════════════ */

:root {
  --black: #060607;
  --white: #ffffff;
  --paper: #fafafa;
  --accent: #1c9eb2;
  --accent-soft: rgba(28, 158, 178, 0.12);
  --grey: #6b6f72;
  --line: rgba(6, 6, 7, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --font-head: "Poiret One", cursive;
  --font-body: "Jost", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--black);
  color: var(--black);
  line-height: 1.7;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.dot { color: var(--accent); font-style: normal; }

.container {
  width: min(1160px, 90vw);
  margin-inline: auto;
}

/* ═══════════ Custom Cursor ═══════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--accent);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(28, 158, 178, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
}
body.cursor-hover .cursor-ring { width: 64px; height: 64px; opacity: 0.6; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ═══════════ Navigation ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px min(5vw, 64px);
  transition: padding 0.4s var(--ease), background 0.4s, backdrop-filter 0.4s;
}
.nav--scrolled {
  padding-block: 14px;
  background: rgba(6, 6, 7, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  order: 3;
}
.nav__links { order: 1; }
.nav__burger { order: 2; }
.nav__swoosh {
  width: 64px;
  height: auto;
  stroke: var(--white);
  fill: none;
  stroke-width: 26;
  stroke-linecap: round;
}
.nav__wordmark {
  font-family: var(--font-head);
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  color: var(--white);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}
.nav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  padding-block: 6px;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  border: 1px solid var(--accent);
  padding: 10px 22px !important;
  transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--accent); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav__burger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

/* ═══════════ Hero ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 110px 0 130px;
  background: radial-gradient(ellipse 80% 60% at 50% 115%, rgba(28, 158, 178, 0.14), transparent 60%), var(--black);
  overflow: hidden;
  text-align: left;
}
.hero--noimg { text-align: center; }
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  filter: grayscale(1) contrast(1.04);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(6, 6, 7, 0.94) 34%, rgba(6, 6, 7, 0.55) 58%, rgba(6, 6, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 6, 7, 0.92), transparent 32%),
    linear-gradient(180deg, rgba(6, 6, 7, 0.65), transparent 26%);
}
.hero--noimg .hero__photo { display: none; }
.hero__bg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__ghost {
  font-family: var(--font-head);
  font-size: clamp(12rem, 34vw, 34rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  letter-spacing: 0.08em;
  user-select: none;
  white-space: nowrap;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}
.hero__orb--1 {
  width: 480px; height: 480px;
  background: rgba(28, 158, 178, 0.22);
  top: -140px; right: -120px;
}
.hero__orb--2 {
  width: 380px; height: 380px;
  background: rgba(28, 158, 178, 0.14);
  bottom: -100px; left: -120px;
}
.hero__orb--3 {
  width: 420px; height: 420px;
  background: rgba(28, 158, 178, 0.16);
  top: 10%; right: -140px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 90vw);
  padding-top: 40px;
}
.hero__swoosh {
  width: min(400px, 70vw);
  height: auto;
  margin-inline: 0;
  margin-left: -12px;
  display: block;
  stroke: var(--white);
  fill: none;
  stroke-width: 24;
  stroke-linecap: round;
}
.hero--noimg .hero__inner { width: min(860px, 92vw); }
.hero--noimg .hero__swoosh { width: min(520px, 78vw); margin-inline: auto; }
.swoosh-stroke {
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: draw 2.6s var(--ease) 0.3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.hero__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  letter-spacing: 0.28em;
  color: var(--white);
  margin-top: 8px;
  animation: rise 1.2s var(--ease) 0.9s both;
}
.hero__tagline {
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.58em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
  margin-top: 18px;
  animation: rise 1.2s var(--ease) 1.15s both;
}
.hero__sub {
  color: rgba(255, 255, 255, 0.66);
  max-width: 560px;
  margin: 34px 0 0;
  font-size: 1.02rem;
  animation: rise 1.2s var(--ease) 1.4s both;
}
.hero--noimg .hero__sub { margin-inline: auto; }
.hero__actions {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 44px;
  animation: rise 1.2s var(--ease) 1.6s both;
}
.hero--noimg .hero__actions { justify-content: center; }
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 3;
  animation: rise 1.2s var(--ease) 2s both;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.5; }
}
.hero__scroll-text {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════ Buttons ═══════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s, transform 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: var(--white);
  color: var(--black);
}
.btn--solid:hover { background: var(--accent); color: var(--white); }
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover { background: var(--white); color: var(--black); }

/* ═══════════ Sections ═══════════ */
.section { padding: clamp(90px, 12vw, 160px) 0; }
.section--tight { padding-top: 0; }
.section--light { background: var(--white); color: var(--black); }
.section--dark { background: var(--black); color: var(--white); }

.kicker {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.kicker::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin-left: 18px;
  vertical-align: middle;
}

.statement {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.28;
  letter-spacing: 0.04em;
  max-width: 20ch;
}
.statement em {
  font-style: normal;
  color: var(--accent);
}
.statement--dark { max-width: none; }

.heading {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.cols {
  columns: 2;
  column-gap: 64px;
  margin-top: 56px;
  color: var(--grey);
}
.cols p { break-inside: avoid; margin-bottom: 1.4em; }

/* ═══════════ Bilder / Frames ═══════════ */
.img-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0c0d0e;
}
.img-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(28, 158, 178, 0.4);
  pointer-events: none;
  z-index: 2;
}
.img-frame img {
  display: block;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06);
  will-change: transform;
}
.img-frame--tall { aspect-ratio: 4 / 5; }
.img-frame--portrait { aspect-ratio: 4 / 5; margin-top: 48px; }
.img-frame--portrait img { object-position: 68% 12%; }
.img-frame--small { aspect-ratio: 3 / 2; width: min(340px, 100%); }
.img-missing img { display: none; }
.img-missing {
  background: linear-gradient(135deg, #0c0d0e, #16181a);
  display: grid;
  place-items: center;
}
.img-missing::after {
  content: "Foto folgt: die-muse/img/portrait.jpg";
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 20px;
}

.media-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  margin-top: 64px;
}
.media-split--reverse { direction: rtl; margin-top: 0; }
.media-split--reverse > * { direction: ltr; }
.media-split__text .heading { margin-bottom: 28px; }
.media-split__text > p, .media-split__text div > p {
  color: var(--grey);
  margin-bottom: 1.4em;
}
.media-split__text .values li { font-size: 1.1rem; }
.heading .accent { font-style: normal; color: var(--accent); }
.section-sub {
  color: var(--grey);
  margin-top: 20px;
  max-width: 60ch;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.weg-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 80px);
}
.weg-head .img-frame--small { flex-shrink: 0; }

/* ═══════════ Marquee ═══════════ */
.marquee {
  background: var(--white);
  overflow: hidden;
  padding: clamp(40px, 7vw, 80px) 0;
  border-block: 1px solid var(--line);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.14em;
  color: var(--black);
  padding-right: 0.6em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ Cards ═══════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 70px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--white);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-8px); }
.card__num {
  font-family: var(--font-head);
  font-size: 3rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 158, 178, 0.55);
  display: block;
  margin-bottom: 30px;
}
.card__head { margin: 0; font-weight: 400; }
.card__title {
  display: block;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: 0.14em;
}
.card__lead {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 12px 0 22px;
}
.card p:not(.card__lead) {
  color: var(--grey);
  font-size: 0.98rem;
}
.card__link {
  display: inline-block;
  margin-top: 28px;
  color: var(--black);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  transition: color 0.3s, border-color 0.3s;
}
.card__link:hover { color: var(--accent); border-color: var(--accent); }
.card__link .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.card__link:hover .arrow { transform: translateX(6px); }

/* ═══════════ Quoteband ═══════════ */
.quoteband {
  position: relative;
  background: var(--black);
  padding: clamp(120px, 18vw, 220px) 0;
  overflow: hidden;
  text-align: center;
}
.quoteband__bg {
  position: absolute;
  inset: -30% 0;
  background:
    radial-gradient(ellipse 45% 55% at 22% 45%, rgba(28, 158, 178, 0.16), transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(28, 158, 178, 0.1), transparent 65%);
}
.quoteband__bg--img {
  background: url("img/nebelmeer.jpg") center / cover no-repeat;
  filter: grayscale(1) brightness(0.5) contrast(1.05);
}
.quoteband::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.85), rgba(6, 6, 7, 0.35) 50%, rgba(6, 6, 7, 0.85)),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(28, 158, 178, 0.12), transparent 70%);
  z-index: 1;
}
.quoteband__quote { z-index: 2; }
.quoteband__quote {
  position: relative;
  z-index: 2;
}
.quoteband__quote p {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.4vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: var(--white);
}

/* ═══════════ Split (Über) ═══════════ */
.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}
.split { align-items: center; }
.split__right p { color: var(--grey); margin-bottom: 1.4em; }
.values {
  list-style: none;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.values li {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  display: flex;
  gap: 16px;
  align-items: baseline;
  transition: padding-left 0.35s var(--ease);
}
.values li:hover { padding-left: 16px; }

/* ═══════════ Steps ═══════════ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 5vw, 72px);
  margin-top: 80px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark);
}
.step__num {
  position: absolute;
  top: -0.62em;
  left: 0;
  background: var(--black);
  padding-right: 20px;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}
.step__title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.step p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.98rem;
}

/* ═══════════ Kontakt ═══════════ */
.section--contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(28, 158, 178, 0.12), transparent 60%), var(--black);
}
.contact { position: relative; z-index: 2; }
.contact .kicker::after { display: none; }
.contact .kicker::before {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin-right: 18px;
  vertical-align: middle;
}
.contact .statement { margin-inline: auto; }
.contact__sub {
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 30px auto 0;
}
.contact__mail {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  margin-top: 48px;
  border-bottom: 1px solid rgba(28, 158, 178, 0.5);
  padding-bottom: 10px;
  transition: color 0.3s, border-color 0.3s;
}
.contact__mail:hover { color: var(--accent); border-color: var(--accent); }
.section--contact .hero__actions { margin-top: 54px; justify-content: center; }

/* ═══════════ Footer ═══════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  padding: 64px 0 40px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__swoosh {
  width: 90px;
  stroke: var(--white);
  fill: none;
  stroke-width: 26;
  stroke-linecap: round;
}
.footer__wordmark {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.24em;
  color: var(--white);
}
.footer__claim {
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer__links {
  display: flex;
  gap: 34px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--accent); }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

/* ═══════════ Rechtsseiten ═══════════ */
.legal { padding-top: 160px; min-height: 70vh; }
.legal__container { max-width: 760px; }
.legal h1 { margin-bottom: 40px; }
.legal h2 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin: 48px 0 16px;
}
.legal h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  margin: 28px 0 10px;
}
.legal p, .legal li { color: var(--grey); }
.legal p { margin-bottom: 1em; }
.legal ul { margin: 0 0 1em 1.2em; }
.legal li { margin-bottom: 0.4em; }
.legal a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(28, 158, 178, 0.35); }
.legal a:hover { border-color: var(--accent); }
.legal strong { color: var(--black); font-weight: 500; }
.nav__links--simple {
  display: flex !important;
  position: static !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  flex-direction: row !important;
}
.legal-page .nav__wordmark { white-space: nowrap; }
.nav__links--simple a { white-space: nowrap; }
.legal-page .nav__burger { display: none !important; }
.legal-page .footer { border-top: 1px solid var(--line-dark); }

/* ═══════════ Reveal Animations ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 900px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__left .heading { position: static; }
  .cols { columns: 1; }
  .media-split { grid-template-columns: 1fr; gap: 48px; }
  .media-split--reverse { direction: ltr; }
  .img-frame--tall { aspect-ratio: 16 / 11; }
  .img-frame--portrait { aspect-ratio: 1 / 1; }
  .weg-head { flex-direction: column; align-items: flex-start; }
  .weg-head .img-frame--small { display: none; }
}
@media (max-width: 760px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(6, 6, 7, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .nav__links a { font-size: 1rem; }
  .nav--open .nav__links { opacity: 1; pointer-events: auto; }
  .nav--open .nav__burger span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .nav--open .nav__burger span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
  .hero__actions .btn { width: 100%; text-align: center; }
}
@media (max-height: 720px) {
  .hero__scroll { display: none; }
  .hero { padding-bottom: 90px; }
}
