:root {
  --ink: #151714;
  --ink-soft: #262924;
  --paper: #f3f0e8;
  --paper-deep: #e9e4d9;
  --white: #fffdf8;
  --olive: #60664f;
  --olive-dark: #343a2f;
  --clay: #b76f52;
  --sand: #d7c7aa;
  --line: rgba(21, 23, 20, 0.17);
  --line-light: rgba(255, 253, 248, 0.24);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1380px, calc(100vw - 80px));
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--olive);
}

img {
  display: block;
  max-width: 100%;
}
svg {
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 150px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h2 em,
h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.section-index {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: 80px;
  align-items: end;
  margin-top: 70px;
}

.section-title-row > p {
  margin: 0 0 8px;
  color: #5a5c56;
  font-size: 17px;
  line-height: 1.7;
}

.br-mobile {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 0.3s,
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}
.button-light:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}
.button-dark:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.text-link {
  display: inline-flex;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  gap: 30px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link-light {
  color: var(--white);
}

.top-note {
  position: absolute;
  inset: 0 0 auto;
  z-index: 12;
  display: flex;
  height: 34px;
  padding-inline: 40px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.top-note p {
  margin: 0;
}
.top-note a {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  height: var(--header-height);
  padding-inline: 40px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    top 0.35s,
    height 0.35s,
    color 0.35s,
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}

.site-header.is-scrolled {
  top: 0;
  height: 72px;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(243, 240, 232, 0.94);
  box-shadow: 0 4px 28px rgba(24, 26, 22, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid currentColor;
  gap: 20px;
  align-items: center;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-showroom,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-showroom {
  background-color: var(--ink);
  background-image: url("assets/hero-matze.jpg");
  background-position: 72% center;
  background-size: cover;
  animation: hero-in 1.7s var(--ease) both;
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: hero-in 1.7s var(--ease) both;
}

@keyframes hero-in {
  from {
    opacity: 0.3;
    scale: 1.04;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

/* Back wall */
.hero-wall {
  position: absolute;
  inset: 0 0 37% 0;
  background:
    radial-gradient(
      70% 120% at 74% -6%,
      rgba(215, 199, 170, 0.24),
      transparent 55%
    ),
    radial-gradient(
      60% 100% at 94% 46%,
      rgba(183, 111, 82, 0.26),
      transparent 62%
    ),
    linear-gradient(180deg, #23271f 0%, #262a20 55%, #1b1e17 100%);
}

.hero-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.05) 0 1px,
    transparent 1px 23%
  );
  opacity: 0.5;
}

/* Floor */
.hero-floor {
  position: absolute;
  inset: 63% 0 0 0;
  background:
    radial-gradient(
      60% 150% at 74% 0%,
      rgba(183, 111, 82, 0.17),
      transparent 58%
    ),
    linear-gradient(180deg, #15170f 0%, #0c0e08 100%);
}

.hero-floor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 199, 170, 0.5) 55%,
    rgba(215, 199, 170, 0.12)
  );
  filter: blur(0.5px);
}

.hero-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(215, 199, 170, 0.1),
    transparent 42%
  );
}

/* Warm spotlight wash */
.hero-spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    42% 62% at 79% 4%,
    rgba(255, 247, 230, 0.3),
    transparent 60%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Right-hand display area */
.hero-display {
  position: absolute;
  left: 40%;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Wall shelves */
.hero-ledge {
  position: absolute;
  left: 6%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(6px, 1.2vw, 20px);
  padding: 0 clamp(8px, 1.6vw, 26px) 11px;
  opacity: 0;
  animation: shelf-in 1s var(--ease) both;
}

.hero-ledge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 11px;
  border-radius: 2px;
  background: linear-gradient(180deg, #3d4133 0%, #21241b 100%);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 253, 248, 0.16);
}

.hero-ledge-top {
  top: 19%;
  height: clamp(96px, 15vh, 150px);
  animation-delay: 0.4s;
}
.hero-ledge-mid {
  top: 45%;
  height: clamp(104px, 16vh, 160px);
  animation-delay: 0.55s;
}

@keyframes shelf-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shoes standing on shelves */
.hero-shoe {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-end;
  justify-content: center;
}

.hero-shoe svg {
  width: clamp(48px, 8vw, 88px);
  height: auto;
  fill: none;
  stroke: rgba(241, 233, 216, 0.85);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 11px 8px rgba(0, 0, 0, 0.5));
}

.hero-shoe:nth-child(3n) svg {
  stroke: rgba(215, 199, 170, 0.95);
}
.hero-shoe:nth-child(3n + 2) svg {
  stroke: rgba(199, 156, 133, 0.9);
}

/* Feature pedestal in the foreground */
.hero-plinth {
  position: absolute;
  right: 13%;
  bottom: 8%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: clamp(130px, 20vw, 240px);
  height: clamp(150px, 26vh, 250px);
}

.hero-plinth::before {
  content: "";
  position: absolute;
  left: -30%;
  right: -30%;
  top: -20%;
  bottom: -10%;
  background: radial-gradient(
    52% 60% at 50% 22%,
    rgba(255, 244, 224, 0.26),
    transparent 65%
  );
  mix-blend-mode: screen;
}

.hero-plinth::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 44%;
  border-radius: 3px;
  background: linear-gradient(180deg, #2e3126 0%, #14160e 100%);
  box-shadow:
    0 26px 44px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 253, 248, 0.12);
}

.hero-shoe-feature {
  position: relative;
  z-index: 2;
  margin-bottom: 40%;
}

.hero-shoe-feature svg {
  width: clamp(104px, 15vw, 188px);
  stroke: rgba(247, 240, 226, 0.95);
  stroke-width: 4.4;
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.55));
}

.hero-room-tag {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  top: clamp(96px, 12vh, 128px);
  z-index: 2;
  color: rgba(255, 253, 248, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(11, 13, 11, 0.92) 0%,
      rgba(11, 13, 11, 0.68) 34%,
      rgba(11, 13, 11, 0.12) 66%
    ),
    linear-gradient(0deg, rgba(8, 10, 8, 0.5) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding-top: 190px;
  padding-bottom: 135px;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  margin-bottom: 34px;
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 32px;
  font-size: clamp(68px, 8.5vw, 136px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.85;
}

.hero h1 em {
  font-size: 1.04em;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 40px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 38px;
  align-items: center;
}

.hero-meta {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  border-top: 1px solid var(--line-light);
}

.hero-meta > div {
  display: flex;
  min-width: 150px;
  padding-top: 18px;
  gap: 13px;
  align-items: flex-start;
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-meta span {
  color: rgba(255, 253, 248, 0.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  display: flex;
  gap: 18px;
  align-items: center;
  writing-mode: vertical-rl;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.scroll-cue i::after {
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2.2s infinite;
}

@keyframes scroll-line {
  to {
    transform: translateY(200%);
  }
}

.brand-rail {
  display: flex;
  min-height: 122px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 97%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 97%,
    transparent
  );
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brand-marquee 125s linear infinite;
}

.brand-group {
  display: flex;
  flex: none;
  min-width: 104vw;
  align-items: center;
  justify-content: space-around;
}

.brand-group .brand-logo {
  padding-inline: clamp(40px, 5vw, 95px);
}

@keyframes brand-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.wordmark {
  line-height: 1;
}
/* Logos im Laufband: Hoehen je Logo abgestimmt, damit die Schriftzuege
   optisch gleich gross wirken. mix-blend-mode blendet weisse
   Bildhintergruende gegen das helle Band aus. */
.brand-logo {
  display: block;
  width: auto;
  flex: none;
  mix-blend-mode: multiply;
}

.brand-logo-crickit {
  height: 29px;
}
.brand-logo-sun68 {
  height: 46px;
}
.brand-logo-tropicfeel {
  height: 24px;
}
.brand-logo-pajar {
  height: 27px;
}
.brand-logo-woz {
  height: 19px;
}
.brand-logo-stance {
  height: 25px;
}

.about {
  background: var(--paper);
}
.about-heading {
  margin-top: 70px;
}

/* Die Partnerschaft mit Nicky Sorg Studios schließt den Personen-Abschnitt ab –
   sie steht unter Portrait und Lebenslauf und nutzt dasselbe Spaltenraster wie
   das Feld darüber: Titel unter dem Portrait, Text unter der Vita. Absender der
   Seite bleibt Mathias Schneider – der Block stellt den Partner vor, er ersetzt
   nicht die Ich-Perspektive. */
/* Bewusst ohne Trennlinien: der Block traegt sich ueber Abstand und die
   zentrierte Mittelachse. Einzige Ausnahme ist der kurze Strich zwischen den
   beiden Kennzahlen. */
.partnership {
  display: grid;
  /* Trennlinie zwischen Lebenslauf und Partnerschaft. Der bisherige Abstand
     (120px) wird auf Rand + Innenabstand aufgeteilt, damit die Linie mittig
     sitzt und der gewohnte Gesamtabstand erhalten bleibt. */
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  column-gap: 7vw;
  row-gap: 56px;
}

/* Das Lockup laeuft ueber beide Spalten: beide Namen sind gleichwertig, das
   Mal-Zeichen sitzt ueber 1fr auto 1fr exakt auf der Mittelachse des Blocks –
   unabhaengig davon, wie lang die beiden Namen sind. */
.partnership-lockup {
  grid-column: 1 / -1;
  text-align: center;
}

.partnership-label {
  margin: 0 0 22px;
  color: #787a73;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partnership-title {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(14px, 2.2vw, 34px);
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

/* Die Namen ruecken an das Mal-Zeichen heran, statt in ihrer Spalte zu
   schwimmen – sonst waere die Mitte zwar rechnerisch, aber nicht optisch. */
.partnership-title > :first-child {
  text-align: right;
}

.partnership-title > :last-child {
  text-align: left;
}

/* Das Mal-Zeichen ist der Bindestrich der Kooperation: kleiner, in Clay und
   in der Grotesk gesetzt, damit es die Serifen-Namen trennt statt zu stören. */
.partnership-x {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 0.58em;
  line-height: 1;
}

/* Die Jahreszahlen stehen als Kennzahlen in der linken Spalte statt im
   Fliesstext – gleiche Sprache wie die Eckdaten-Tabelle beim Portrait. */
/* align-content: center laesst die beiden Kennzahlen mittig zur Textspalte
   stehen – die Zeilenhoehe gibt der laengere Text rechts vor. */
.partnership-figures {
  display: grid;
  max-width: 420px;
  margin: 0;
  grid-template-columns: auto minmax(0, 1fr);
  row-gap: 38px;
  column-gap: 18px;
  align-content: center;
}

.partnership-figure {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(clamp(60px, 6.4vw, 94px), auto) minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

/* Beide Kennzahlen teilen sich dieselbe Zahlenspalte, damit die Labels exakt
   untereinander stehen – sonst richtet sich jede Zeile nach ihrer eigenen Zahl
   und "20" zieht sein Label weiter nach links als "30+". Der minmax-Wert oben
   ist die Naeherung fuer Browser ohne Subgrid. */
@supports (grid-template-columns: subgrid) {
  .partnership-figure {
    grid-template-columns: subgrid;
  }
}

/* Trennstrich zwischen den beiden Kennzahlen – ueber die volle Breite der
   Kennzahl-Spalte. Absolut positioniert, damit er das zweispaltige Raster
   der Kennzahl nicht mitzaehlt. */
.partnership-figure + .partnership-figure::before {
  content: "";
  position: absolute;
  top: -19px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.partnership-figure dd {
  margin: 0;
}

.partnership-figure strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.partnership-figure dt {
  color: #787a73;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.75;
  text-transform: uppercase;
}

.partnership-body {
  max-width: 600px;
}

.partnership-body > p {
  color: #4f524c;
  font-size: 16px;
  line-height: 1.78;
}

.partnership-body > p:last-child {
  margin-bottom: 0;
}

/* Über .partnership-body verschachtelt, damit die Regeln die allgemeine
   Absatzformatierung darüber sicher überschreiben. */
.partnership-body > .partnership-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

/* Schlusssatz als Statement ueber die volle Breite: schliesst den Abschnitt
   ab, statt als letzter Absatz in der rechten Spalte auszulaufen. Traegt sich
   ohne Linie, allein ueber Abstand und Zentrierung. */
.partnership-outro {
  grid-column: 1 / -1;
  padding-top: 14px;
  text-align: center;
}

.partnership-outro p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 33px);
  font-style: italic;
  line-height: 1.34;
}

.about-grid {
  display: grid;
  margin-top: 90px;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: 7vw;
  align-items: stretch;
}

/* Der Lebenslauf rechts gibt die Spaltenhöhe vor; er ist bewusst etwas höher
   als die linke Spalte (Portrait + Eckdaten). Über space-between wird die
   Eckdaten-Tabelle an den unteren Rand gedrückt – dadurch liegt ihre
   Unterkante immer exakt auf der letzten Lebenslauf-Zeile, egal wie breit
   das Fenster ist. Oben starten beide Spalten bündig. */
.about-side {
  display: flex;
}

.about-side-inner {
  display: flex;
  width: 100%;
  max-width: 420px;
  flex-direction: column;
  justify-content: space-between;
}

.about-side .profile-facts {
  margin: 24px 0 0;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.86);
}

/* Im zweispaltigen Layout füllt das Portrait die freie Höhe der Spalte.
   Dadurch bleibt der Abstand zur Eckdaten-Tabelle immer gleich klein und
   die Tabelle sitzt bündig auf der letzten Lebenslauf-Zeile – unabhängig
   von der Fensterbreite. Auf Mobil (gestapelt) greift diese Regel nicht. */
@media (min-width: 821px) {
  .about-side-inner {
    height: 100%;
    justify-content: flex-start;
  }
  .about-portrait {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
  }
  .about-portrait img {
    flex: 1 1 0;
    min-height: 300px;
    height: auto;
    aspect-ratio: auto;
  }
  .about-side .profile-facts {
    margin-top: 34px;
  }
}

.about-portrait figcaption {
  display: flex;
  padding-top: 14px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy {
  display: flex;
  max-width: 600px;
  padding-top: 0;
  flex-direction: column;
  justify-content: flex-start;
}

.about-copy > p {
  color: #4f524c;
  font-size: 16px;
  line-height: 1.78;
}

/* Letzter Absatz ohne Bodenabstand: so endet die Textbox exakt auf der
   letzten Zeile und die Eckdaten-Tabelle links dockt bündig daran an. */
.about-copy > p:last-child {
  margin-bottom: 0;
}

.about-copy .about-intro {
  margin-bottom: 42px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.35;
}

.profile-facts {
  margin: 46px 0 40px;
  border-top: 1px solid var(--line);
}

.profile-facts > div {
  display: grid;
  padding: 12px 0;
  grid-template-columns: 1fr 1.4fr;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  color: #787a73;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.brands {
  border-top: 1px solid var(--line);
  background: #e9e4d9;
}

.brand-grid {
  display: grid;
  margin-top: 80px;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.brand-card {
  position: relative;
  display: flex;
  min-height: 470px;
  padding: 25px;
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.brand-card-feature {
  grid-column: span 8;
}
/* Schliesst eine ungerade Kartenzahl sauber ab: die letzte Karte fuellt dann
   die angebrochene Reihe. Bei gerader Zahl (aktuell sechs Marken) greift die
   Regel nicht, weil die letzte Karte ihre Reihe bereits mit der vorherigen
   teilt. */
.brand-card:last-child:nth-child(odd) {
  grid-column: span 12;
  min-height: 390px;
}

.brand-card:hover {
  z-index: 2;
  box-shadow: 0 28px 60px rgba(21, 23, 20, 0.13);
  transform: translateY(-8px);
}

.brand-card-top,
.brand-card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.brand-card-top {
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.68;
}

/* Markenmotiv statt Produktfoto: fuellt die ganze Karte und wird nach unten
   ausgeblendet, damit Schriftzug und Eckdaten frei stehen. */
.brand-card-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 32%, transparent 80%);
  mask-image: linear-gradient(180deg, #000 32%, transparent 80%);
}

.brand-card-art svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  opacity: 0.4;
  transition:
    transform 0.8s var(--ease),
    opacity 0.5s var(--ease);
}

.brand-card:hover .brand-card-art svg {
  opacity: 0.58;
  transform: scale(1.04);
}

.brand-card-foot {
  position: relative;
  z-index: 2;
}

.brand-card-bottom {
  align-items: end;
}

/* Ohne Bildmaterial übernehmen die Eckdaten die Rolle des Blickfangs –
   für Händler ohnehin die relevantere Information. */
.brand-specs {
  position: relative;
  display: grid;
  max-width: 560px;
  margin: 22px 0 0;
  padding-top: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* Feine Trennlinie in Kartenfarbe – als Pseudoelement, damit sie gedimmt
   werden kann, ohne die Werte darunter mitzudimmen. */
.brand-specs::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: currentColor;
  opacity: 0.3;
}

.brand-specs > div {
  display: grid;
  gap: 6px;
  align-content: start;
}

.brand-specs dt {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.6;
}

.brand-specs dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.brands-note {
  display: flex;
  margin: 28px auto 0;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-card-bottom h3 {
  margin: 0 0 9px;
}

.brand-card-bottom p {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.68;
}

.circle-link {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  flex: 0 0 auto;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  place-items: center;
  transition:
    color 0.3s,
    background 0.3s,
    transform 0.3s;
}

.circle-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.circle-link:hover {
  transform: rotate(45deg);
}
.brand-crickit .circle-link:hover,
.brand-woz .circle-link:hover {
  color: var(--ink);
  background: var(--white);
}
.brand-sun68 .circle-link:hover,
.brand-tropicfeel .circle-link:hover,
.brand-pajar .circle-link:hover,
.brand-stance .circle-link:hover {
  color: var(--white);
  background: var(--ink);
}

.brand-crickit {
  color: var(--white);
  background: #242823;
}
.brand-sun68 {
  color: var(--ink);
  background: #c5c9c2;
}
.brand-tropicfeel {
  color: #321b18;
  background: #d9a69a;
}
.brand-pajar {
  color: var(--ink);
  background: #f5f1e7;
}
.brand-woz {
  color: var(--white);
  background: #646c51;
}
.brand-stance {
  color: var(--ink);
  background: var(--clay);
}

/* Auf den Karten tragen alle Marken dieselbe Typografie wie die
   Ueberschrift im Detail-Fenster - die logotypischen Schriften stehen
   im Laufband als echte Logos. */
.brand-card .wordmark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 58px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  transform: none;
}

.showroom {
  display: block;
  padding-block: clamp(100px, 13vh, 150px);
  color: var(--white);
  background: var(--ink-soft);
}

.showroom-inner {
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.showroom-head .section-index {
  margin-bottom: 55px;
  border-color: var(--line-light);
}

.showroom-head h2 {
  margin-bottom: 32px;
}

.showroom-lead {
  margin-bottom: 44px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

/* Eckdaten: nur eine Linie oben und feine Trenner dazwischen –
   kein umlaufender Kasten. */
.showroom-info {
  display: grid;
  margin: 0 0 46px;
  padding-top: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.showroom-info > div {
  display: grid;
  gap: 11px;
  align-content: start;
  padding-right: 20px;
}

.showroom-info > div + div {
  padding-left: clamp(18px, 2vw, 30px);
  border-left: 1px solid var(--line-light);
}

.showroom-info dt {
  color: rgba(255, 253, 248, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showroom-info dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
}

/* Ablauf als nummerierte Schritte */
.showroom-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.showroom-steps li {
  display: grid;
  grid-template-columns: clamp(58px, 6vw, 88px) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 30px);
  padding: clamp(26px, 3vh, 36px) 0;
  border-top: 1px solid var(--line-light);
  transition: background 0.4s var(--ease);
}

.showroom-steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.showroom-step-no {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--sand);
  letter-spacing: -0.04em;
}

.showroom-steps h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.9vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.showroom-steps p {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 253, 248, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.catalogs {
  background: var(--paper);
}
.catalogs-heading {
  margin-bottom: 75px;
}

/* Drei Spalten: die beiden hochkanten SUN68-Cover aussen ueber die volle
   Hoehe, dazwischen die drei Querformate gestapelt. Die Seitenspalten sind
   breiter, damit die hochkanten Cover ungefaehr so hoch werden wie der
   Dreier-Stapel in der Mitte – so bleiben die Formate ohne Zuschnitt und die
   Reihe wirkt trotzdem ausgewogen. */
.catalog-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.55fr;
  gap: 24px;
  align-items: start;
}

.catalog-card--left {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: center;
}

.catalog-card--right {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: center;
}

/* Definite Spalte, automatische Zeile: die drei fuellen Zeile 1–3 der Mitte. */
.catalog-card--mid {
  grid-column: 2;
}

/* Karten sind Buttons: sie oeffnen das kleine Vorschau-Fenster (Modal),
   daher Button-Grundstile zuruecksetzen. */
.catalog-card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  break-inside: avoid;
  color: inherit;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(21, 23, 20, 0.06);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}

.catalog-card:hover {
  box-shadow: 0 28px 60px rgba(21, 23, 20, 0.13);
  transform: translateY(-6px);
}

.catalog-cover {
  display: block;
  background: var(--paper-deep);
}

.catalog-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.catalog-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px 16px;
}

.catalog-brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.catalog-season {
  flex: none;
  color: #787a73;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.statement {
  display: grid;
  min-height: 650px;
  color: var(--ink);
  background: #cdd0c4;
  place-items: center;
}

.statement-inner {
  text-align: center;
}

.quote-mark {
  display: block;
  height: 80px;
  margin-bottom: 25px;
  font-family: var(--serif);
  font-size: 130px;
  line-height: 1;
}

.statement blockquote {
  margin: 0;
  font-size: clamp(44px, 6.3vw, 96px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.statement blockquote em {
  font-family: var(--serif);
  font-weight: 400;
}

.statement p {
  margin: 42px 0 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  color: var(--white);
  background: var(--olive-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 10vw;
}

.contact .section-index {
  margin-bottom: 68px;
  border-color: var(--line-light);
}
.contact-intro h2 {
  margin-bottom: 40px;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.contact-direct {
  display: grid;
  margin-top: 52px;
  gap: 12px;
}

.contact-direct a {
  display: flex;
  padding-bottom: 10px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 18px;
}

.contact-people {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.contact-person {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-person-name {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-person a {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color 0.3s;
}

.contact-person a:hover {
  color: var(--white);
}

.contact-form {
  padding-top: 96px;
}

.contact-form label {
  display: grid;
  border-bottom: 1px solid var(--line-light);
}

.contact-form label > span {
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 0 20px;
  color: var(--white);
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--white) 50%) calc(100% - 7px)
      53% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--white) 50%, transparent 50%) right 53% / 6px
      6px no-repeat;
}
.contact-form select option {
  color: var(--ink);
  background: var(--white);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form label:focus-within {
  border-color: var(--white);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-footer {
  display: flex;
  margin-top: 32px;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  line-height: 1.5;
}
.form-footer .button {
  flex: 0 0 auto;
  border: 0;
  cursor: pointer;
}
.form-status {
  min-height: 24px;
  margin: 20px 0 0;
  color: #e0e7bd;
  font-size: 13px;
}

.form-status.is-error {
  color: #ffb4a2;
}

.site-footer {
  padding: 80px 0 24px;
  color: var(--white);
  background: #111310;
}

.footer-main {
  display: grid;
  padding-bottom: 100px;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.footer-brand {
  align-self: start;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-links span {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-links a {
  font-family: var(--serif);
  font-size: 17px;
}
.footer-links a:hover {
  opacity: 0.6;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}
.footer-bottom div {
  display: flex;
  gap: 24px;
}

.catalog-modal {
  width: min(620px, calc(100vw - 40px));
  max-height: min(700px, calc(100vh - 40px));
  padding: 0;
  color: var(--ink);
  border: 0;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.catalog-modal[open] {
  display: block;
  overflow-y: auto;
  animation: modal-in 0.45s var(--ease);
}
.catalog-modal::backdrop {
  background: rgba(12, 14, 12, 0.76);
  backdrop-filter: blur(8px);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0 0 3px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 27px;
  place-items: center;
}

.modal-copy {
  display: flex;
  padding: 70px 60px 55px;
  flex-direction: column;
  justify-content: center;
}
.modal-copy h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}
.modal-season {
  margin-bottom: 35px;
  color: #777a72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.modal-copy > p:not(.eyebrow, .modal-season) {
  margin-bottom: 28px;
  color: #555850;
  line-height: 1.7;
}
.modal-tags {
  display: flex;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 8px;
}
.modal-tags span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.modal-copy .button {
  align-self: flex-start;
}
.modal-site {
  display: grid;
  gap: 9px;
  justify-items: start;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-site small {
  color: #777a72;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-note {
  margin-top: 20px;
  color: #8b8d86;
  font-size: 9px;
  line-height: 1.5;
}

.noscript {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  max-width: 360px;
  padding: 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}

:focus-visible {
  outline: 2px solid #c8d674;
  outline-offset: 4px;
}

/* Das Detail-Fenster selbst bekommt beim Öffnen den Fokus (für Screenreader
   und Escape), soll dabei aber keinen sichtbaren Rahmen zeigen. */
.catalog-modal:focus,
.catalog-modal:focus-visible {
  outline: none;
}

/* Kein gelber Fokus-Kreis um das „×“. Für Tastaturnutzer bleibt ein dezenter,
   zum Design passender Ring in Tintenfarbe erhalten. */
.modal-close:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(21, 23, 20, 0.14);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 50px, 1050px);
  }
  .section {
    padding-block: 110px;
  }
  .hero h1 {
    font-size: clamp(64px, 10vw, 108px);
  }
  .hero-meta > div {
    min-width: 125px;
  }
  .scroll-cue {
    display: none;
  }
  .about-grid {
    gap: 6vw;
  }
  .partnership {
    column-gap: 6vw;
  }
  .brand-card,
  .brand-card-feature {
    grid-column: span 6;
  }
  .brand-card:last-child:nth-child(odd) {
    grid-column: span 12;
  }
  .showroom-inner {
    gap: 6vw;
  }
  .contact-grid {
    gap: 7vw;
  }
}

/* Ab hier wird die schmale Mittelspalte der Katalog-Reihe zu klein: die fuenf
   Cover stapeln sich in einer Spalte, in der Breite begrenzt, damit sie nicht
   uebergross werden. */
@media (max-width: 1000px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    gap: 20px;
  }
  .catalog-card--left,
  .catalog-card--mid,
  .catalog-card--right {
    grid-column: 1;
    grid-row: auto;
    align-self: stretch;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100vw - 40px);
    --header-height: 72px;
  }
  .top-note {
    padding-inline: 20px;
  }
  .top-note > p {
    display: none;
  }
  .top-note {
    justify-content: center;
  }
  .site-header {
    padding-inline: 20px;
    /* Keine durchgehende Trennlinie über dem Hero – der Header schwebt
       frei und wird erst beim Scrollen zum festen Balken mit Linie. */
    border-bottom-color: transparent;
  }
  .site-header.is-scrolled {
    height: 66px;
  }
  /* Markenname bleibt sichtbar, damit der Header oben nicht wie ein leeres
     Band mit einzelnem „Menü“ wirkt. Untertitel entfällt aus Platzgründen. */
  .brand-copy {
    display: grid;
  }
  .brand-copy strong {
    font-size: 17px;
  }
  .brand-copy small {
    display: none;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    cursor: pointer;
  }
  .menu-toggle-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
  .menu-toggle-lines {
    position: relative;
    display: block;
    width: 24px;
    height: 14px;
  }
  .menu-toggle-lines i {
    position: absolute;
    right: 0;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition:
      top 0.3s,
      transform 0.3s;
  }
  .menu-toggle-lines i:first-child {
    top: 3px;
  }
  .menu-toggle-lines i:last-child {
    top: 11px;
    width: 17px;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    top: 7px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    top: 7px;
    width: 24px;
    transform: rotate(-45deg);
  }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    /* Links direkt unter dem Header beginnen lassen – nicht vertikal
       zentriert, sonst entsteht oben bis „Person“ eine große Lücke. */
    padding: 96px 28px 45px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    color: var(--white);
    background: var(--olive-dark);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.6s var(--ease);
  }
  .site-nav.is-open {
    clip-path: inset(0);
  }
  .site-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: clamp(31px, 8vw, 48px);
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: none;
  }
  .site-nav .nav-contact {
    min-height: 0;
    margin-top: 22px;
    padding: 17px;
    border: 1px solid var(--white);
    justify-content: space-between;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  /* Bei offenem Menü muss der Header komplett neutral werden:
     Ein gesetzter backdrop-filter macht ihn sonst zum Containing Block
     für das fixed positionierte Overlay – das wird dann auf die
     Header-Höhe eingesperrt statt den Bildschirm zu füllen. */
  .site-header.menu-active {
    top: 0;
    color: var(--white);
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }
  /* Logo über dem Overlay halten (der Toggle hat bereits z-index 3) */
  .site-header.menu-active .brand {
    position: relative;
    z-index: 3;
  }
  .hero {
    min-height: 720px;
  }
  .hero-display {
    left: 24%;
  }
  .hero-plinth {
    display: none;
  }
  .hero-ledge-top {
    top: 16%;
  }
  .hero-ledge-mid {
    top: 40%;
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(11, 13, 11, 0.9),
        rgba(11, 13, 11, 0.5) 55%,
        rgba(11, 13, 11, 0.2)
      ),
      linear-gradient(0deg, rgba(8, 10, 8, 0.82), transparent 52%);
  }
  .hero-content {
    padding-top: 155px;
    padding-bottom: 165px;
    justify-content: flex-end;
  }
  .hero h1 {
    max-width: 620px;
    font-size: clamp(58px, 13vw, 91px);
  }
  .hero-lead {
    max-width: 500px;
    font-size: 16px;
  }
  .hero-meta {
    right: 20px;
    bottom: 24px;
    left: 20px;
    justify-content: space-between;
  }
  .hero-meta > div {
    min-width: 0;
  }
  .brand-rail {
    min-height: 100px;
  }
  .section-title-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .partnership {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding-top: 42px;
    row-gap: 38px;
  }
  /* Gestapelt: das Mal-Zeichen bekommt eine eigene Zeile zwischen den Namen und
     etwas mehr Groesse, damit es die Verbindung traegt statt zu verschwinden. */
  .partnership-title {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }
  .partnership-x {
    font-size: 0.66em;
  }
  .partnership-title > :first-child,
  .partnership-title > :last-child {
    text-align: center;
  }
  .partnership-figures {
    max-width: none;
  }
  .about-portrait img {
    aspect-ratio: 1.15 / 1;
    object-position: center 18%;
  }
  .about-copy {
    max-width: 620px;
    padding-top: 0;
  }
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brand-card,
  .brand-card-feature,
  .brand-card:last-child {
    min-height: 430px;
    grid-column: span 1;
  }
  .brand-card:last-child:nth-child(odd) {
    grid-column: span 2;
  }
  .showroom-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .showroom-head .section-index {
    margin-bottom: 40px;
  }
  .statement {
    min-height: 540px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form {
    padding-top: 30px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }
  .footer-links {
    max-width: 600px;
  }
  .modal-copy {
    padding: 60px 40px 45px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 32px);
  }
  html {
    scroll-padding-top: 70px;
  }
  .section {
    padding-block: 90px;
  }
  .eyebrow {
    margin-bottom: 18px;
  }
  h2 {
    font-size: clamp(43px, 13.5vw, 64px);
  }
  .section-index {
    padding-bottom: 13px;
  }
  .section-title-row,
  .about-heading {
    margin-top: 48px;
  }
  .site-header {
    padding-inline: 16px;
  }
  .hero {
    min-height: 700px;
    height: 100svh;
    max-height: 900px;
  }
  .hero-display {
    left: 0;
  }
  .hero-ledge {
    left: 4%;
    right: 4%;
  }
  .hero-ledge-top {
    top: 14%;
  }
  .hero-ledge-mid {
    top: 34%;
  }
  .hero-shoe:nth-child(4) {
    display: none;
  }
  .hero-room-tag {
    top: 84px;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 10, 8, 0.94) 0%,
      rgba(8, 10, 8, 0.6) 42%,
      rgba(8, 10, 8, 0.3) 62%,
      rgba(8, 10, 8, 0.12) 78%
    );
  }
  .hero-content {
    padding-top: 130px;
    padding-bottom: 150px;
  }
  .hero-eyebrow {
    max-width: 230px;
    margin-bottom: 22px;
    line-height: 1.5;
  }
  .br-mobile {
    display: inline;
  }
  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(52px, 17vw, 75px);
    line-height: 0.89;
  }
  .hero-lead {
    max-width: 420px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-actions {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-actions .button {
    min-height: 49px;
  }
  .hero-actions .text-link {
    display: none;
  }
  .hero-meta {
    bottom: 17px;
    padding-top: 12px;
  }
  .hero-meta > div {
    padding-top: 0;
    gap: 6px;
    flex-direction: column;
  }
  .hero-meta strong {
    font-size: 25px;
  }
  .hero-meta span {
    font-size: 6.5px;
  }
  .brand-rail {
    min-height: 84px;
  }
  .brand-group .brand-logo {
    padding-inline: 30px;
  }
  .brand-marquee-track {
    animation-duration: 45s;
  }
  .brand-logo-crickit {
    height: 20px;
  }
  .brand-logo-sun68 {
    height: 32px;
  }
  .brand-logo-tropicfeel {
    height: 17px;
  }
  .brand-logo-pajar {
    height: 19px;
  }
  .brand-logo-woz {
    height: 13px;
  }
  .brand-logo-stance {
    height: 18px;
  }
  .about-grid {
    margin-top: 58px;
    gap: 48px;
  }
  .partnership {
    margin-top: 33px;
    padding-top: 33px;
    row-gap: 32px;
  }
  .partnership-outro {
    padding-top: 4px;
  }
  .about-portrait img {
    aspect-ratio: 0.88 / 1;
    object-position: center 20%;
  }
  .about-portrait figcaption {
    gap: 20px;
    font-size: 7px;
  }
  .about-copy .about-intro {
    font-size: 25px;
  }
  .brands-heading .section-title-row {
    margin-top: 48px;
  }
  .brand-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .brand-card,
  .brand-card-feature,
  .brand-card:last-child {
    min-height: 395px;
    padding: 20px;
    grid-column: span 1;
  }
  .brand-card:last-child:nth-child(odd) {
    min-height: 360px;
  }
  .brand-specs {
    gap: 12px;
  }
  .brands-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    font-size: 10px;
  }
  .brand-card:hover {
    transform: none;
  }
  .showroom-head h2 {
    margin-bottom: 24px;
  }
  .showroom-info {
    grid-template-columns: 1fr;
    padding-top: 6px;
  }
  .showroom-info > div {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-light);
  }
  .showroom-info > div + div {
    padding-left: 0;
    border-left: 0;
  }
  .showroom-info > div:last-child {
    border-bottom: 0;
  }
  .showroom-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }
  .catalogs-heading {
    margin-bottom: 55px;
  }
  .catalog-card:hover {
    transform: none;
  }
  .statement {
    min-height: 480px;
  }
  .quote-mark {
    height: 55px;
    font-size: 95px;
  }
  .statement blockquote {
    font-size: clamp(38px, 12.5vw, 58px);
  }
  .contact .section-index {
    margin-bottom: 50px;
  }
  .contact-intro h2 {
    margin-bottom: 30px;
  }
  .contact-direct a {
    font-size: 15px;
  }
  .contact-people {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-person a {
    font-size: 15px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
  .footer-main {
    gap: 60px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }
  .footer-links > div:last-child {
    grid-column: span 2;
  }
  .footer-bottom {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  /* Das Fenster selbst scrollt NICHT - nur der Textbereich darin.
     Sonst wandert der Schliessen-Knopf beim Scrollen aus dem Bild. */
  .catalog-modal {
    max-height: calc(100svh - 20px);
    width: calc(100vw - 20px);
    overflow: hidden;
  }
  .modal-copy {
    padding: 40px 22px 30px;
    -webkit-overflow-scrolling: touch;
  }
  .modal-copy h2 {
    font-size: 38px;
  }
  /* Am Fenster verankert (nicht am Bildschirm) und dauerhaft sichtbar */
  .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  /* Die globale Regel oben wuerde das Laufband nach einem Durchlauf
     halb verschoben einfrieren lassen - hier sauber anhalten. */
  .brand-marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .brand-marquee {
    overflow-x: auto;
  }
}

/* ---------------------------------------------------------------
   Rechtstexte / Unterseiten (Impressum, Datenschutz)
   --------------------------------------------------------------- */
.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.site-header--solid {
  position: sticky;
  top: 0;
  height: 72px;
  color: var(--ink);
  background: rgba(243, 240, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.legal-back {
  font-size: 11px;
}

.legal {
  width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(64px, 9vh, 110px) clamp(90px, 12vh, 150px);
}

.legal-intro {
  margin-bottom: clamp(46px, 6vh, 78px);
  padding-bottom: clamp(30px, 4vh, 48px);
  border-bottom: 1px solid var(--line);
}

.legal-intro .eyebrow {
  color: var(--clay);
}

.legal h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 90px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.legal-content {
  max-width: 760px;
}

.legal-content section + section {
  margin-top: clamp(38px, 5vh, 60px);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: clamp(21px, 2.3vw, 29px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #4f524c;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 15px;
}

.legal-content ul {
  margin: 0 0 15px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-address {
  margin: 0 0 15px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.7;
}

.legal-note {
  margin-top: clamp(46px, 6vh, 70px);
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--clay);
  background: var(--white);
  color: #5a5c56;
  font-size: 14px;
  line-height: 1.6;
}

.legal-ph {
  padding: 1px 7px;
  border-radius: 3px;
  background: rgba(183, 111, 82, 0.13);
  color: var(--clay);
  font-size: 0.92em;
  font-weight: 700;
}

@media (max-width: 600px) {
}
