/* =====================================================================
   AMATA CAPRA — soft cashmere palette, editorial layout
   ===================================================================== */

/* Self-hosted fonts (GDPR: no third-party requests to Google Fonts) */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/newsreader-variable-normal.woff2') format('woff2-variations'), url('assets/fonts/newsreader-variable-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/newsreader-variable-italic.woff2') format('woff2-variations'), url('assets/fonts/newsreader-variable-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('assets/fonts/hanken-grotesk-variable.woff2') format('woff2-variations'), url('assets/fonts/hanken-grotesk-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-variable.woff2') format('woff2-variations'), url('assets/fonts/jetbrains-mono-variable.woff2') format('woff2');
}

:root {
  /* Default palette: "Cashmere" — softer, lighter, cleaner */
  --bg:        #F7EFE0;
  --surface:   #F1E6D2;
  --paper:     #EADBC0;
  --sand:      #D7C19E;
  --taupe:     #A78A62;
  --walnut:    #6E4F2B;
  --espresso:  #3B2A14;
  --ink:       #2D2010;
  --ink-soft:  #4F3D24;
  --muted:     #8E7A58;
  --line:      rgba(58, 38, 14, 0.10);
  --line-soft: rgba(58, 38, 14, 0.05);
  --highlight: #B57A2D;

  /* Type scale (set in JS by density tweak) */
  --fs-body: 17px;
  --lh-body: 1.7;
  --space-section: clamp(96px, 13vw, 168px);

  /* Fonts */
  --font-display: 'Newsreader', 'Vollkorn', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Hanken Grotesk', 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-fast: 0.22s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Palette: Stone (cooler, greyer cream + olive-taupe) ── */
body[data-palette="stone"] {
  --bg:        #ECE5D6;
  --surface:   #E3DAC6;
  --paper:     #DAD0BA;
  --sand:      #BFB29A;
  --taupe:     #8E8470;
  --walnut:    #5A4F3D;
  --espresso:  #302A1F;
  --ink:       #211C13;
  --ink-soft:  #4A4231;
  --muted:     #7A715F;
  --line:      rgba(33, 28, 19, 0.13);
  --line-soft: rgba(33, 28, 19, 0.07);
  --highlight: #98794A;
}

/* ── Palette: Walnut (darker, more contrast, espresso-led) ── */
body[data-palette="walnut"] {
  --bg:        #EDDFC2;
  --surface:   #E0CFA5;
  --paper:     #C9B587;
  --sand:      #A88E60;
  --taupe:     #7B5E33;
  --walnut:    #4D3514;
  --espresso:  #281906;
  --ink:       #170E03;
  --ink-soft:  #4D3514;
  --muted:     #7A6238;
  --line:      rgba(23, 14, 3, 0.18);
  --line-soft: rgba(23, 14, 3, 0.08);
  --highlight: #B07221;
}

/* ── Palette: Linen (lightest, most ethereal) ── */
body[data-palette="linen"] {
  --bg:        #FCF6E8;
  --surface:   #F5ECD8;
  --paper:     #EDDEC4;
  --sand:      #DCC9A2;
  --taupe:     #B59B72;
  --walnut:    #8A6C3F;
  --espresso:  #4A341A;
  --ink:       #2D2010;
  --ink-soft:  #6E563A;
  --muted:     #A18C68;
  --line:      rgba(74, 52, 26, 0.08);
  --line-soft: rgba(74, 52, 26, 0.04);
  --highlight: #C99249;
}

/* Density variants */
body[data-density="airy"]   { --fs-body: 17px; --lh-body: 1.85; --space-section: clamp(108px, 15vw, 188px); }
body[data-density="medium"] { --fs-body: 17px; --lh-body: 1.7;  --space-section: clamp(96px, 13vw, 168px); }
body[data-density="tight"]  { --fs-body: 16px; --lh-body: 1.55; --space-section: clamp(72px, 9vw, 124px); }

/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* =====================================================================
   LAYOUT
   ===================================================================== */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; width: 100%; }
.wrap--narrow { max-width: 980px; }
.wrap--wide   { max-width: 1440px; }

@media (max-width: 760px) {
  .wrap { padding: 0 22px; }
}

/* =====================================================================
   TYPE
   ===================================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.022em;
  color: var(--ink);
  font-feature-settings: "ss01", "ss02";
}
.display--hero {
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.94;
}
.display--xl   { font-size: clamp(56px, 7.2vw, 112px); line-height: 0.96; }
.display--lg   { font-size: clamp(44px, 5.2vw, 80px); line-height: 1.0; }
.display--md   { font-size: clamp(30px, 3.4vw, 50px); line-height: 1.12; }
.display--sm   { font-size: clamp(20px, 2vw, 26px); line-height: 1.25; }

.serif-roman {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--light { color: var(--sand); }

.lede {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.32;
  color: var(--espresso);
  letter-spacing: -0.005em;
}

.prose p { margin-bottom: 1.1em; max-width: 56ch; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }

.caption {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.mono-mark {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--ease-fast), color var(--ease-fast), border-color var(--ease-fast), transform var(--ease-fast);
}
.btn:active { transform: translateY(1px); }
.btn--filled { background: var(--ink); color: var(--bg); }
.btn--filled:hover { background: var(--espresso); }
.btn--walnut { background: var(--walnut); color: #fff; }
.btn--walnut:hover { background: var(--espresso); }
.btn--ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }
.btn--ghost-light { color: var(--bg); border-color: rgba(255,255,255,0.25); background: transparent; }
.btn--ghost-light:hover { border-color: var(--bg); background: rgba(255,255,255,0.05); }
.btn--sand { background: var(--sand); color: var(--ink); }
.btn--sand:hover { background: var(--taupe); color: var(--bg); }
.btn--arrow::after {
  content: "→"; font-family: var(--font-display); font-style: normal;
  font-size: 16px; letter-spacing: 0; transform: translateY(-1px);
}

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--ease-fast), color var(--ease-fast), gap var(--ease-fast);
}
.text-link::after { content: "→"; font-family: var(--font-display); font-size: 13px; letter-spacing: 0; transition: transform var(--ease-fast); }
.text-link:hover { border-color: var(--ink); }
.text-link:hover::after { transform: translateX(4px); }
.text-link--light { color: var(--sand); border-color: rgba(213, 190, 148, 0.3); }
.text-link--light:hover { color: var(--bg); border-color: var(--sand); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 48px;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  transition: padding var(--ease-fast), background var(--ease-fast);
}
.nav--scrolled { padding: 12px 48px; }
.nav__brand {
  display: flex; align-items: center; gap: 14px;
  justify-self: start;
}
.nav__mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  color: var(--walnut);
  letter-spacing: -0.02em;
  border: 1px solid var(--line);
}
.nav__wordmark {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav__wordmark small {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: lowercase;
  margin-top: 2px;
}

.nav__links {
  display: flex; gap: 38px;
  justify-self: center;
}
.nav__links a {
  position: relative;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color var(--ease-fast);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--ink);
  transition: right var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a[aria-current="page"] { color: var(--ink); }

.nav__right {
  display: flex; align-items: center; gap: 22px;
  justify-self: end;
}

.lang-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.lang-toggle button {
  padding: 6px 8px;
  color: var(--muted);
  transition: color var(--ease-fast);
}
.lang-toggle button.active { color: var(--ink); }
.lang-toggle span { color: var(--line); }

.nav__cta {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  transition: background var(--ease-fast);
}
.nav__cta:hover { background: var(--espresso); }

.burger { display: none; }

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr auto; padding: 14px 22px; }
  .nav__links { display: none; }
  .nav__right { gap: 14px; }
  .nav__cta { display: none; }
  .burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 30px; height: 30px; align-items: center; justify-content: center;
  }
  .burger span { display: block; width: 18px; height: 1.4px; background: var(--ink); }
}

.nav-mobile {
  display: none; position: fixed; inset: 64px 0 auto 0;
  background: var(--bg); padding: 32px 22px 40px;
  flex-direction: column; gap: 18px;
  border-bottom: 1px solid var(--line);
  z-index: 49;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display); font-style: normal;
  font-size: 28px; color: var(--ink);
}

/* =====================================================================
   PAGES (SPA)
   ===================================================================== */
[data-page-name] { display: none; }
body[data-page="home"]       [data-page-name="home"],
body[data-page="kollektion"] [data-page-name="kollektion"],
body[data-page="material"]   [data-page-name="material"],
body[data-page="geschichte"] [data-page-name="geschichte"],
body[data-page="atelier"]    [data-page-name="atelier"],
body[data-page="faq"]        [data-page-name="faq"],
body[data-page="kontakt"]    [data-page-name="kontakt"] {
  display: block;
}

/* Page fade-in — opacity only; explicit timing (avoids --ease duration leak) */
[data-page-name] { animation: fade .35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
@keyframes fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =====================================================================
   HERO VARIANTS
   ===================================================================== */
.hero { position: relative; }

/* =====================================================================
   BRAND LOGOS
   ===================================================================== */
.nav__brand-img {
  height: 58px;
  width: auto;
  display: block;
}
@media (max-width: 760px) { .nav__brand-img { height: 40px; } }

.footer__wordmark {
  height: 64px; width: auto; display: block;
  margin: 0;
}
@media (max-width: 760px) { .footer__wordmark { height: 56px; margin: 0; } }

/* =====================================================================
   HERO — split title-page: goat-mark left, statement right
   ===================================================================== */
body[data-hero="type"] .hero,
body[data-hero="brand"] .hero {
  padding: 0;
  background: var(--bg);
  min-height: calc(100vh - 96px);
  display: flex; align-items: center;
}
body[data-hero="type"] .hero__grid,
body[data-hero="brand"] .hero__grid { display: none; }

.hero__brand-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(56px, 8vw, 120px) clamp(40px, 5vw, 80px);
  width: 100%; max-width: 1440px; margin: 0 auto;
}
.hero__brand-mark {
  width: 100%;
  display: flex; justify-content: center; align-items: center;
}
.hero__brand-img {
  width: 100%; height: auto;
  max-width: 560px;
  display: block;
}
.hero__brand-copy {
  display: flex; flex-direction: column;
  gap: 36px;
  max-width: 560px;
}
.hero__brand-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
}
.hero__brand-tagline {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(44px, 5.6vw, 84px) !important;
  line-height: 1.04 !important;
  color: var(--ink) !important;
  letter-spacing: -0.022em;
  margin: 0;
}
.hero__brand-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0;
}
.hero__brand-wrap .hero__actions {
  margin-top: 8px;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero__brand-wrap { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__brand-copy { align-items: center; max-width: 540px; margin: 0 auto; }
  .hero__brand-img { max-width: 360px; }
  .hero__brand-wrap .hero__actions { justify-content: center; }
}

/* Hero B — Split */
body[data-hero="split"] .hero { padding: 0; }
body[data-hero="split"] .hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(620px, 88vh, 880px);
  align-items: stretch;
}
body[data-hero="split"] .hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(48px, 6vw, 96px);
  background: var(--bg);
}
body[data-hero="split"] .hero__title { margin: 32px 0 26px; max-width: 11ch; }
body[data-hero="split"] .hero__plate {
  position: relative; overflow: hidden;
}
body[data-hero="split"] .hero__plate img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Hero C — Cover */
body[data-hero="cover"] .hero { padding: 0; }
body[data-hero="cover"] .hero__grid {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex; align-items: flex-end;
}
body[data-hero="cover"] .hero__plate {
  position: absolute; inset: 0;
}
body[data-hero="cover"] .hero__plate img {
  width: 100%; height: 100%; object-fit: cover;
}
body[data-hero="cover"] .hero__plate::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 8, 0, 0.02) 30%, rgba(15, 8, 0, 0.55) 100%);
}
body[data-hero="cover"] .hero__copy {
  position: relative; z-index: 2;
  padding: 0 clamp(48px, 6vw, 96px) clamp(56px, 8vw, 96px);
  max-width: 980px;
  color: var(--bg);
}
body[data-hero="cover"] .hero__copy .display,
body[data-hero="cover"] .hero__copy .lede,
body[data-hero="cover"] .hero__copy .eyebrow { color: var(--bg); }
body[data-hero="cover"] .hero__copy .eyebrow::before { background: var(--bg); }
body[data-hero="cover"] .hero__title { margin: 32px 0 30px; max-width: 13ch; }

.hero__caption {
  position: absolute; bottom: 18px; right: 18px;
  font-family: var(--font-display); font-style: normal;
  font-size: 11px; color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
body[data-hero="type"] .hero__caption { color: var(--muted); }
body[data-hero="split"] .hero__caption { color: rgba(255, 255, 255, 0.7); }

.hero__meta {
  display: none; /* removed — kept selector for backwards-compat */
}
body[data-hero="cover"] .hero__meta { color: rgba(255,255,255,0.55); }
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta span::before { content: "·"; opacity: 0.5; }
.hero__meta span:first-child::before { display: none; }

.hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 900px) {
  body[data-hero="type"] .hero__grid,
  body[data-hero="split"] .hero__grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
  body[data-hero="split"] .hero__copy { padding: 80px 22px 40px; }
  body[data-hero="split"] .hero__plate { aspect-ratio: 4/5; }
}

/* =====================================================================
   QUIET DIVIDER (replaces marquee — a single line of poetry)
   ===================================================================== */
.quiet-divider {
  padding: clamp(48px, 6vw, 88px) 0;
  text-align: center;
  background: var(--bg);
}
.quiet-divider__inner {
  max-width: 38ch;
  margin: 0 auto;
}
.quiet-divider p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.45;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.quiet-divider__rule {
  width: 1px; height: 48px;
  background: var(--line);
  margin: 0 auto 36px;
}

/* =====================================================================
   HOME — full-bleed editorial photograph
   ===================================================================== */
.home-bleed {
  background: var(--bg);
  padding: clamp(40px, 5vw, 80px) 0 clamp(56px, 7vw, 96px);
}
.home-bleed__plate {
  width: 100%;
  height: clamp(420px, 62vh, 720px);
  border-radius: 0;
  overflow: hidden;
}
.home-bleed__caption {
  max-width: 56ch;
  margin: clamp(36px, 4vw, 56px) auto 0;
  padding: 0 clamp(24px, 4vw, 56px);
  text-align: center;
}
.home-bleed__rule {
  display: block;
  width: 1px; height: 36px;
  background: var(--line);
  margin: 0 auto 28px;
}
.home-bleed__caption p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

/* =====================================================================
   SECTIONS
   ===================================================================== */
.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section--paper    { background: var(--surface); color: var(--ink-soft); }
.section--sand     { background: var(--paper);   color: var(--ink-soft); }
.section--soft     { background: var(--surface); color: var(--ink-soft); }
.section--dark     { background: var(--espresso); color: var(--sand); }
.section--dark .display { color: var(--bg); }
.section--dark .lede    { color: var(--sand); }
.section--bg       { background: var(--bg);      color: var(--ink-soft); }
.section--dark     {
  background: var(--espresso); color: var(--sand);
}
.section--dark .display { color: var(--bg); }
.section--dark .lede { color: var(--sand); }
.section--dark .prose strong { color: var(--bg); }

.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(64px, 9vw, 120px);
}
.section-head--single { grid-template-columns: 1fr; }
.section-head__title { max-width: 14ch; }
.section-head__sub { max-width: 44ch; padding-bottom: 12px; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* =====================================================================
   PLATES — quiet tonal canvases. No labels, no curator captions.
   Just a soft background block that reads as "intentional empty space".
   ===================================================================== */
.plate {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.plate--tonal-1 { background: var(--paper); }
.plate--tonal-2 { background: var(--surface); }
.plate--tonal-3 { background: var(--sand); }
.plate--tonal-4 { background: var(--taupe); }
.plate--tonal-5 { background: var(--surface); }
.plate--dark    { background: var(--walnut); }

/* Subtle paper texture — only on plates without images */
.plate:not(:has(img))::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(255, 248, 232, 0.18), transparent 65%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 0, 0, 0.04), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.plate img {
  position: relative; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* Optional faint signature, bottom-right. Reads as paper watermark, not curator label. */
.plate__sig {
  position: absolute; z-index: 2;
  bottom: 16px; right: 18px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink);
  opacity: 0.18;
  pointer-events: none;
}
.plate--dark .plate__sig { color: var(--bg); opacity: 0.22; }

/* Aspect ratios */
.ar-3-4 { aspect-ratio: 3/4; }
.ar-4-5 { aspect-ratio: 4/5; }
.ar-1-1 { aspect-ratio: 1/1; }
.ar-4-3 { aspect-ratio: 4/3; }
.ar-16-9 { aspect-ratio: 16/9; }
.ar-21-9 { aspect-ratio: 21/9; }

/* =====================================================================
   HOME — Intro / values / preview / atelier teaser
   ===================================================================== */
/* Manifest — full-width statement, much louder */
.manifest {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.manifest__label {
  padding-top: 24px;
  position: sticky; top: 140px;
}
.manifest__statement {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 22ch;
}
.manifest__statement em {
  font-style: normal;
  color: var(--walnut);
}
.manifest__notes {
  margin-top: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.manifest__notes p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 36ch;
}
@media (max-width: 900px) {
  .manifest { grid-template-columns: 1fr; gap: 28px; }
  .manifest__label { position: static; padding-top: 0; }
  .manifest__notes { grid-template-columns: 1fr; gap: 24px; }
}

/* Material teaser strip */
.material-teaser {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.material-teaser__plate { aspect-ratio: 4/5; }
.material-teaser__stat {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(64px, 9vw, 132px);
  color: var(--ink);
  line-height: 0.9;
  display: flex; align-items: baseline; gap: 8px;
  margin: 14px 0 26px;
}
.material-teaser__stat sup {
  font-size: 0.28em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--walnut);
  text-transform: uppercase;
  top: -0.6em;
  margin-left: 8px;
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .material-teaser { grid-template-columns: 1fr; gap: 36px; }
}

/* Collection preview */
.coll-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 64px); }
@media (max-width: 760px) { .coll-grid { grid-template-columns: 1fr; } }

.coll-card {
  background: transparent;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.coll-card__plate { aspect-ratio: 3/4; }
.coll-card__body { padding: 36px 0 0; display: flex; flex-direction: column; gap: 18px; }
.coll-card__edition { display: flex; justify-content: space-between; align-items: center; }
.coll-card__edition small { font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.coll-card__edition span { font-family: var(--font-display); font-style: normal; font-size: 13px; color: var(--walnut); }
.coll-card__name { font-family: var(--font-display); font-style: normal; font-size: clamp(48px, 5vw, 72px); line-height: 1; color: var(--ink); margin-top: 4px; }
.coll-card__desc { font-size: 15.5px; line-height: 1.65; max-width: 36ch; }
.coll-card__swatch {
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase;
}
.coll-card__swatch::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--line);
}
.coll-card--lin .coll-card__swatch::before { background: #BEAA8B; }
.coll-card--ava .coll-card__swatch::before { background: #ECDFC0; }

/* Story teaser (sticky image + text) */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.story-grid__plate-wrap { position: sticky; top: 110px; }
.story-grid__plate { aspect-ratio: 3/4; }
.story-grid__text { padding-top: 12px; }
.story-grid__text .display { margin: 30px 0 28px; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-grid__plate-wrap { position: static; }
  .story-grid__plate { aspect-ratio: 4/3; }
}

/* Atelier teaser — restrained, single quiet strip on home. Not loud. */
.atelier-strip {
  display: grid; grid-template-columns: 1fr auto; gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.atelier-strip__copy { max-width: 56ch; }
.atelier-strip__eyebrow {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px; display: block;
}
.atelier-strip__title {
  font-family: var(--font-display);
  font-style: normal; font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
@media (max-width: 760px) {
  .atelier-strip { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}

/* =====================================================================
   COLLECTION PAGE
   ===================================================================== */
.edition-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 6vw, 96px);
  align-items: center;
  padding: clamp(80px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.edition-block:last-of-type { border-bottom: 0; }
.edition-block--reverse .edition-block__plate { order: 2; }
.edition-block__plate { aspect-ratio: 4/5; }
.edition-block__num {
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 240px);
  font-style: normal;
  line-height: 0.8;
  color: var(--paper);
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 0;
  user-select: none;
}
.edition-block__inner { position: relative; }
.edition-block__copy { position: relative; z-index: 2; }
.edition-block__copy .display { margin: 14px 0 22px; }
.edition-block__copy .prose { max-width: 44ch; margin-bottom: 36px; }
.edition-block__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.edition-block__specs > div {
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.edition-block__specs > div:nth-child(odd) { padding-right: 18px; border-right: 1px solid var(--line); }
.edition-block__specs > div:nth-child(even) { padding-left: 18px; }
.edition-block__specs dt {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 6px;
}
.edition-block__specs dd { font-family: var(--font-display); font-style: normal; font-size: 18px; color: var(--ink); }

@media (max-width: 900px) {
  .edition-block { grid-template-columns: 1fr; gap: 36px; }
  .edition-block--reverse .edition-block__plate { order: 0; }
}

/* Included list — quieter: bordered cells, no fills */
.included-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
}
.included-item {
  background: transparent;
  aspect-ratio: 1/1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px 22px;
  position: relative;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.included-item:nth-child(5n) { border-right: none; }
@media (max-width: 760px) {
  .included-item:nth-child(5n) { border-right: 1px solid var(--line); }
  .included-item:nth-child(2n) { border-right: none; }
}
.included-item__name { font-family: var(--font-display); font-style: normal; font-size: 20px; color: var(--ink); }
.included-item__detail { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.included-item__index { font-family: var(--font-mono); font-size: 10px; color: var(--walnut); letter-spacing: 0.18em; }

@media (max-width: 760px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   MATERIAL PAGE
   ===================================================================== */
.fiber-stat {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.fiber-stat__big {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(140px, 22vw, 340px);
  color: var(--ink);
  line-height: 0.88;
  letter-spacing: -0.04em;
  display: block;
}
.fiber-stat__unit {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--walnut);
  margin-top: 8px;
  display: block;
}
.fiber-stat__bar {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 360px;
}
.fiber-bar { display: flex; flex-direction: column; gap: 6px; }
.fiber-bar__label { display: flex; justify-content: space-between; font-size: 12px; }
.fiber-bar__label span:first-child { letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.fiber-bar__label span:last-child { font-family: var(--font-display); font-style: normal; color: var(--walnut); }
.fiber-bar__track { height: 3px; background: var(--paper); border-radius: 2px; overflow: hidden; }
.fiber-bar__fill { height: 100%; background: var(--walnut); border-radius: 2px; transition: width 1.4s var(--ease) .2s; width: 0; }
.fiber-bar.is-visible .fiber-bar__fill { width: var(--w, 50%); }

/* Pillars — quieter: simple bordered columns, no contrasting fill */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 56px 40px 56px 0;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 320px;
  border-right: 1px solid var(--line);
}
.pillar:nth-child(n+2) { padding-left: 40px; }
.pillar:last-child { border-right: none; padding-right: 0; }
.pillar__num { font-family: var(--font-body); font-size: 10.5px; font-weight: 500; letter-spacing: 0.28em; color: var(--muted); text-transform: uppercase; }
.pillar__title { font-family: var(--font-display); font-style: normal; font-weight: 400; font-size: 28px; color: var(--ink); line-height: 1.15; letter-spacing: -0.005em; }
.pillar__body { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }

@media (max-width: 900px) {
  .fiber-stat { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: 1fr; }
}

/* Care steps — quieter */
.care-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.care-step {
  padding: 44px 28px 56px 0;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  border-right: 1px solid var(--line);
}
.care-step:nth-child(n+2) { padding-left: 28px; }
.care-step:last-child { border-right: none; padding-right: 0; }
.care-step__num {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 44px;
  color: var(--walnut);
  line-height: 1;
}
.care-step__title { font-family: var(--font-display); font-style: normal; font-size: 22px; color: var(--ink); line-height: 1.2; }
.care-step__body { font-size: 14px; line-height: 1.7; }

@media (max-width: 900px) {
  .care-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .care-steps { grid-template-columns: 1fr; }
}

/* =====================================================================
   GESCHICHTE / STORY PAGE
   ===================================================================== */
.story-hero {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(60px, 9vw, 140px);
  align-items: end;
  padding-bottom: clamp(48px, 6vw, 88px);
}
.story-hero--solo {
  grid-template-columns: 1fr;
  max-width: 880px;
}
.story-hero--solo .lede { max-width: 60ch; }
.story-hero__title { margin: 26px 0; }
.story-hero__plate { aspect-ratio: 3/4; }
.story-hero__by {
  font-family: var(--font-display); font-style: normal;
  font-size: 14px; color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .story-hero { grid-template-columns: 1fr; }
}

.long-read {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(72px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.long-read__h { padding-top: 6px; position: sticky; top: 110px; align-self: start; }
.long-read__h .display { margin-bottom: 18px; }
.long-read__h small {
  display: block;
  font-size: 10px; letter-spacing: 0.2em; color: var(--muted);
  text-transform: uppercase; font-weight: 600;
}
.long-read__body p {
  font-size: 18px; line-height: 1.75; max-width: 64ch;
  margin-bottom: 1.3em;
}
.long-read__body p.lede {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 1.5em;
}
.long-read__body figure {
  margin: 60px 0;
}
.long-read__body figure .plate { aspect-ratio: 4/3; }
.long-read__body figcaption {
  margin-top: 14px;
  font-family: var(--font-display); font-style: normal;
  font-size: 13px; color: var(--muted);
}
.long-read__body blockquote {
  font-family: var(--font-display); font-style: normal;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  margin: 60px 0;
  padding-left: 28px;
  border-left: 2px solid var(--walnut);
  max-width: 22ch;
}

@media (max-width: 900px) {
  .long-read { grid-template-columns: 1fr; }
  .long-read__h { position: static; }
}

/* Region map / facts band — quieter */
.facts-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.fact {
  background: transparent;
  padding: 40px 28px 40px 0;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 200px;
  border-right: 1px solid var(--line);
}
.fact:nth-child(n+2) { padding-left: 28px; }
.fact:last-child { border-right: none; padding-right: 0; }
.fact__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--walnut); text-transform: uppercase; }
.fact__v { font-family: var(--font-display); font-style: normal; font-size: clamp(28px, 3vw, 38px); color: var(--ink); line-height: 1.1; }
.fact__sub { font-size: 13px; color: var(--muted); margin-top: auto; line-height: 1.5; }

@media (max-width: 900px) { .facts-band { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .facts-band { grid-template-columns: 1fr; } }

/* =====================================================================
   ATELIER (B2B/OEM) PAGE
   ===================================================================== */
.atelier-hero {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(50px, 7vw, 120px);
  align-items: center;
  padding: clamp(80px, 10vw, 140px) 0;
}
.atelier-hero__plate { aspect-ratio: 4/5; }
.atelier-hero__copy .display { margin: 24px 0 28px; }

@media (max-width: 900px) { .atelier-hero { grid-template-columns: 1fr; } }

.services {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  margin-top: 0;
  border-top: 1px solid var(--line);
}
.service {
  background: transparent;
  padding: 48px 36px 56px 0;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 280px;
  border-right: 1px solid var(--line);
}
.service:nth-child(n+2) { padding-left: 36px; }
.service:last-child { border-right: none; padding-right: 0; }
.service__tag { font-family: var(--font-mono); font-size: 10px; color: var(--walnut); letter-spacing: 0.24em; text-transform: uppercase; }
.service__title { font-family: var(--font-display); font-style: normal; font-size: 28px; color: var(--ink); line-height: 1.15; }
.service__body { font-size: 14.5px; line-height: 1.7; }
.service__list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.service__list li { font-size: 13.5px; padding-left: 18px; position: relative; }
.service__list li::before { content: "—"; position: absolute; left: 0; color: var(--walnut); }

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

.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 0;
}
.process__step {
  padding: 36px 24px 40px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg);
}
.process__step:last-child { border-right: none; }
.process__step h4 { font-family: var(--font-display); font-style: normal; font-size: 22px; color: var(--ink); }
.process__step p { font-size: 14px; line-height: 1.65; }
.process__step__num { font-family: var(--font-mono); font-size: 11px; color: var(--walnut); letter-spacing: 0.22em; }

@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process__step:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
  .process__step { border-right: none; border-bottom: 1px solid var(--line); }
}

/* =====================================================================
   KONTAKT
   ===================================================================== */
.kontakt-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.kontakt-grid__sidebar .display { margin: 20px 0 26px; }
.kontakt-grid__sidebar .lede { margin-bottom: 36px; }
.kontakt-row {
  display: flex; gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.kontakt-row:last-child { border-bottom: 1px solid var(--line); }
.kontakt-row__k {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); min-width: 96px; padding-top: 3px;
}
.kontakt-row__v { font-family: var(--font-display); font-style: normal; font-size: 17px; color: var(--ink); }
.kontakt-row__v a { border-bottom: 1px solid var(--line); }
.kontakt-row__v a:hover { border-color: var(--ink); }

.form {
  display: grid; gap: 22px;
  padding: clamp(36px, 4vw, 56px);
  background: var(--surface);
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 20px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--ease-fast);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); font-style: normal; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 110px; resize: vertical; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 12px) center, calc(100% - 7px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; appearance: none; padding-right: 28px; }
.form__submit { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.form__submit small { font-size: 11px; color: var(--muted); max-width: 28ch; line-height: 1.5; }

@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

.faq-teaser {
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: clamp(40px, 5vw, 64px) 0 0;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.faq-teaser .display { max-width: 22ch; }

/* =====================================================================
   "MEHR AUS KASCHMIR" — secondary products on Kollektion
   ===================================================================== */
.more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.more-card {
  display: flex; flex-direction: column;
  position: relative;
}
.more-card__plate { aspect-ratio: 4/5; }
.more-card__body {
  padding: 28px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.more-card__edition small {
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.more-card__name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(34px, 3.6vw, 48px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.012em;
}
.more-card__desc { font-size: 15px; line-height: 1.65; color: var(--ink-soft); max-width: 38ch; }
.more-card__meta {
  font-family: var(--font-display); font-style: normal;
  font-size: 13px; color: var(--walnut);
  margin-top: 6px;
}
@media (max-width: 900px) { .more-grid { grid-template-columns: 1fr; gap: 48px; } }

/* =====================================================================
   CONTACT FORM SUCCESS STATE
   ===================================================================== */
.form-wrap { position: relative; }
.form__success {
  padding: clamp(40px, 5vw, 64px);
  background: var(--surface);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.form__success.is-visible { opacity: 1; transform: none; }
.form__success .display { color: var(--ink); }

.kontakt-meta { margin-top: 36px; }

/* =====================================================================
   FAQ CTA at bottom of FAQ page
   ===================================================================== */
.faq-cta {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  justify-content: space-between;
}
.faq-cta p {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 800px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__btn {
  width: 100%; text-align: left;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 22px;
}
.faq__q {
  font-family: var(--font-display); font-style: normal;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink); line-height: 1.25;
}
.faq__icon {
  width: 18px; height: 18px; position: relative; flex-shrink: 0;
  transform: rotate(0); transition: transform var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--walnut);
  border-radius: 1px;
}
.faq__icon::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq__icon::after  { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); transition: opacity var(--ease-fast); }
.faq__item[aria-expanded="true"] .faq__icon::after { opacity: 0; }
.faq__answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease);
}
.faq__answer-inner { overflow: hidden; }
.faq__item[aria-expanded="true"] .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner p {
  padding: 0 0 28px;
  font-size: 16px; line-height: 1.7;
  max-width: 60ch;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--espresso);
  color: var(--sand);
  padding: 80px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(213, 190, 148, 0.1);
}
.footer__brand .display { color: var(--bg); margin-bottom: 18px; }
.footer__brand p { font-size: 14px; max-width: 32ch; color: rgba(213, 190, 148, 0.65); line-height: 1.7; }
.footer__col h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bg); margin-bottom: 24px; }
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { font-size: 14px; color: rgba(213, 190, 148, 0.6); transition: color var(--ease-fast); }
.footer__col a:hover { color: var(--bg); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 30px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(213, 190, 148, 0.4);
}
.footer__bottom ul { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--bg); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* =====================================================================
   NEWSLETTER STRIP
   ===================================================================== */
.newsletter {
  background: var(--paper);
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
}
.newsletter__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.newsletter__title { color: var(--ink); max-width: 14ch; }
.newsletter__sub { font-size: 14px; color: var(--muted); margin-top: 14px; max-width: 36ch; }
.newsletter__form { display: flex; gap: 12px; align-items: center; }
.newsletter__form input {
  flex: 1; background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 19px;
  color: var(--ink);
  outline: none;
}
.newsletter__form input::placeholder { color: var(--muted); }

@media (max-width: 900px) {
  .newsletter__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* =====================================================================
   ════ REWRITE — added components (hero, manifest, featured, band,
   cat-tiles, cat-section, variant, placeholders, lighter footer)
   ===================================================================== */

/* ── HERO: centred stack ───────────────────────────────────────────── */
.hero--center {
  padding: clamp(90px, 12vh, 160px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg);
}
.hero__center {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 2.4vw, 32px);
}
.hero__mark {
  width: clamp(280px, 36vw, 440px);
  display: flex; align-items: center; justify-content: center;
}
.hero__mark-img { width: 100%; height: auto; display: block; }
.hero__eyebrow {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 20ch;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}
.hero--center .hero__actions {
  margin-top: 12px;
  justify-content: center;
}
@media (max-width: 600px) {
  .hero--center { padding-top: 64px; }
  .hero__tagline { font-size: clamp(28px, 8vw, 38px); }
}

/* ── MANIFEST: bigger, simpler, centred ────────────────────────────── */
.manifest-section { padding-top: clamp(40px, 5vw, 80px); padding-bottom: clamp(60px, 7vw, 100px); }
.manifest {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
  gap: clamp(28px, 3.5vw, 48px);
}
.manifest__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
}
.manifest__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
  opacity: 0.5;
}
.manifest__statement {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0;
}
.manifest__statement .accent {
  color: var(--walnut);
  font-style: normal;
}
.manifest__notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid var(--line);
  margin-top: clamp(10px, 1vw, 16px);
}
.manifest__notes p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 42ch;
}
@media (max-width: 760px) {
  .manifest__notes { grid-template-columns: 1fr; }
}

/* ── FEATURED — Babyset spotlight on home ──────────────────────────── */
.featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.featured__plate {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.featured__plate img { width: 100%; height: 100%; object-fit: cover; }
.featured__pin {
  position: absolute; top: 20px; left: 20px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}
.featured__copy { display: flex; flex-direction: column; gap: 28px; max-width: 44ch; }
.featured__title {
  margin: 14px 0 0;
}
.featured__prose {
  font-size: 16.5px; line-height: 1.7; color: var(--ink-soft);
  margin: 0;
}
.featured__colors {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.featured__colors-label {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted);
}
.featured__colors-row { display: flex; gap: 28px; flex-wrap: wrap; }
.featured__swatch {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 17px;
  color: var(--ink);
}
.dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-block;
}
.dot--lin { background: #9a8a72; }
.dot--ava { background: #f0e7d4; }
.featured__actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 4px; }
@media (max-width: 900px) {
  .featured { grid-template-columns: 1fr; gap: 36px; }
  .featured__plate { aspect-ratio: 4/3; }
}

/* ── HOME BAND: trade + FAQ in one tight section ───────────────────── */
.home-band { padding-top: clamp(60px, 7vw, 100px); padding-bottom: clamp(60px, 7vw, 100px); }
.home-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.home-band__col {
  display: flex; flex-direction: column;
  gap: 18px;
  padding-right: clamp(0px, 2vw, 24px);
}
.home-band__title {
  margin: 4px 0 0;
  max-width: 18ch;
  color: var(--ink);
}
.home-band__body {
  font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); max-width: 42ch;
  margin: 0;
}
.home-band__col .text-link { margin-top: 12px; align-self: flex-start; }
.home-band__grid > .home-band__col + .home-band__col {
  border-left: 1px solid var(--line);
  padding-left: clamp(30px, 4vw, 64px);
}
@media (max-width: 760px) {
  .home-band__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-band__grid > .home-band__col + .home-band__col {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--line); padding-top: 40px;
  }
}

/* ── PLACEHOLDER plates (landscape/product photo coming) ───────────── */
.plate--placeholder,
.plate--landscape-placeholder {
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.plate--placeholder::before,
.plate--landscape-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 12px,
      rgba(0,0,0,0.022) 12px 13px
    );
  pointer-events: none;
}
.placeholder-note {
  visibility: hidden;
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.3;
  text-align: center;
  color: var(--walnut);
  padding: 16px 24px;
  letter-spacing: 0.01em;
}
.placeholder-note small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ── CATEGORY TILES (Kollektion page, top-of-page nav) ─────────────── */
.cat-tiles {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
.cat-tile {
  display: flex; flex-direction: column;
  background: transparent;
  border: 1px solid var(--line);
  transition: border-color var(--ease-fast), transform var(--ease-fast);
  text-decoration: none;
}
.cat-tile:hover { border-color: var(--ink); transform: translateY(-2px); }
.cat-tile__plate {
  aspect-ratio: 1/1;
  width: 100%;
}
.cat-tile__plate img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile__body {
  padding: 18px 18px 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.cat-tile__index {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.cat-tile__name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  line-height: 1.1;
  margin-top: 2px;
}
.cat-tile__meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
@media (max-width: 760px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ── CAT SECTIONS (product anchor sections) ────────────────────────── */
.cat-section { scroll-margin-top: 96px; }
#kategorien { scroll-margin-top: 96px; }

/* Back-to-categories link at the bottom of each category block */
.back-to-cats {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.back-to-cats .text-link::after { content: ""; display: none; }
.back-to-cats .text-link::before {
  content: "↑";
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0;
  transition: transform var(--ease-fast);
  margin-right: 4px;
}
.back-to-cats .text-link:hover::before { transform: translateY(-3px); }
.cat-section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
}
.cat-section__index {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--walnut);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.cat-section__title { margin: 14px 0 18px; max-width: 16ch; }
.cat-section__sub {
  font-size: 16.5px; line-height: 1.7; color: var(--ink-soft);
  max-width: 56ch; margin: 0;
}
.cat-section__caption {
  margin-top: clamp(32px, 3vw, 44px);
  font-family: var(--font-display);
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .cat-section__head { grid-template-columns: 1fr; gap: 8px; }
}

/* ── VARIANT GRID (within cat-section) ─────────────────────────────── */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.variant {
  display: flex; flex-direction: column; gap: 18px;
}
.variant__plate {
  aspect-ratio: 4/5;
}
.variant__plate img { width: 100%; height: 100%; object-fit: cover; }

/* Text-only variant: no photo, soft note panel keeps grid alignment */
.variant__note {
  aspect-ratio: 4/5;
  background: var(--sand);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px;
  padding: clamp(26px, 7%, 44px);
}
.variant__note-eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.variant__note-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45; color: var(--ink); margin: 0; max-width: 26ch;
}
.variant__note .text-link { margin-top: 4px; align-self: flex-start; }

.variant__body { display: flex; flex-direction: column; gap: 10px; }

/* Editorial colour-overview figure (shawls) + lifestyle figure (set) */
.editorial-figure {
  margin: clamp(40px, 5vw, 72px) 0 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.editorial-figure--wide { grid-template-columns: 1fr; }
.editorial-figure__plate { aspect-ratio: 4/3; }
.editorial-figure--wide .editorial-figure__plate { aspect-ratio: 16/7; }
.editorial-figure__plate img { width: 100%; height: 100%; object-fit: cover; }
.editorial-figure__cap {
  display: flex; flex-direction: column; gap: 14px;
}
.editorial-figure__cap .editorial-figure__rule {
  width: 44px; height: 1px; background: var(--ink); opacity: 0.4;
}
.editorial-figure__cap p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.45; color: var(--ink); margin: 0; max-width: 24ch;
}
@media (max-width: 760px) {
  .editorial-figure { grid-template-columns: 1fr; gap: 22px; }
  .editorial-figure__plate { aspect-ratio: 4/3; }
}
.set-figure { margin: 0 0 clamp(40px, 5vw, 64px); }
.set-figure__plate { aspect-ratio: 16/10; }
.set-figure__plate img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.set-figure figcaption { margin-top: 16px; }
.variant__name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 26px);
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
.variant__desc {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft);
  margin: 0; max-width: 38ch;
}
.variant__swatches { display: flex; gap: 8px; margin-top: 6px; }
.sw {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--c, var(--paper));
  border: 1px solid rgba(0,0,0,0.12);
}
@media (max-width: 900px) { .variant-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .variant-grid { grid-template-columns: 1fr; } }

/* ── INCLUDED grid — four pieces (override) ────────────────────────── */
.included-grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) {
  .included-grid--four { grid-template-columns: repeat(2, 1fr); }
}

/* ── FOOTER — lighter palette, centred logo column ─────────────────── */
.footer {
  background: var(--surface);
  color: var(--ink-soft);
  padding: clamp(72px, 8vw, 110px) 0 36px;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__brand-link { display: inline-flex; }
.footer__wordmark {
  height: 64px; width: auto; display: block;
  margin: 0;
  filter: none; /* keep brand black on light footer */
  opacity: 1;
}
.footer__brand p {
  font-size: 14px; max-width: 36ch; color: var(--ink-soft); line-height: 1.7;
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.footer__col h4 {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; }
.footer__col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.footer__col a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 28px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom ul { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer__bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--ease-fast);
}
.footer__bottom a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 36px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   Section dividers (editorial)
   ===================================================================== */
.section-divider {
  height: 1px; background: var(--line);
  margin: 0;
}

/* Page intro pattern (used on internal pages) */
.page-intro {
  padding: clamp(80px, 11vw, 160px) 0 clamp(40px, 6vw, 80px);
}
.page-intro__crumbs {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 30px;
  display: flex; gap: 10px; align-items: center;
}
.page-intro__crumbs span { color: var(--walnut); }
.page-intro__title { max-width: 16ch; }
.page-intro__sub { margin-top: 26px; max-width: 50ch; }

/* =====================================================================
   UTIL
   ===================================================================== */
.flow > * + * { margin-top: var(--gap, 24px); }
.muted { color: var(--muted); }
.center { text-align: center; }
.hide-mobile { }
@media (max-width: 760px) { .hide-mobile { display: none !important; } }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   ════ OVERHAUL 2026 — text-only wordmark hero, trust block, B2B teaser
   ===================================================================== */

/* Hero wordmark (text logo, no goat) — larger + more prominent */
.hero__mark--wordmark {
  width: clamp(360px, 52vw, 660px);
  margin-bottom: clamp(8px, 1.5vw, 18px);
}

/* =====================================================================
   ════ 2026 FINISH — reduced-motion safety, dark band, assurances
   ===================================================================== */
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1!important;transform:none!important;transition:none!important}
  html{scroll-behavior:auto}
}

/* Dark editorial band — rhythm/contrast against the cream sections */
.dark-band{background:var(--espresso);color:var(--sand);padding:clamp(84px,12vw,156px) 0}
.dark-band__inner{max-width:1000px;margin:0 auto;text-align:center;display:flex;flex-direction:column;align-items:center;gap:clamp(20px,2.5vw,32px)}
.dark-band .eyebrow{color:var(--sand);opacity:.72}
.dark-band__statement{font-family:var(--font-display);font-style:normal;font-weight:300;font-size:clamp(30px,4.4vw,60px);line-height:1.12;letter-spacing:-.02em;color:var(--bg);max-width:20ch;margin:0}
.dark-band__statement .accent{color:var(--sand)}

/* Assurances strip — honest, scannable credibility badges */
.assur-strip{background:var(--bg);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.assur-strip__inner{display:grid;grid-template-columns:repeat(4,1fr);gap:0;padding:0}
.assur{display:flex;align-items:center;gap:14px;padding:24px 4px 24px 0}
.assur+.assur{padding-left:28px;border-left:1px solid var(--line)}
.assur__mark{width:22px;height:22px;flex-shrink:0;border-radius:50%;border:1px solid var(--walnut);display:grid;place-items:center;color:var(--walnut);font-size:11px;line-height:1}
.assur__text{font-family:var(--font-display);font-style:normal;font-size:15px;line-height:1.25;color:var(--ink);letter-spacing:.005em}
.assur__text small{display:block;font-family:var(--font-body);font-size:10px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--muted);margin-top:4px}
@media (max-width:900px){
  .assur-strip__inner{grid-template-columns:1fr 1fr}
  .assur{padding:22px 22px 22px 0}
  .assur+.assur{padding-left:22px}
  .assur:nth-child(3){border-left:0;padding-left:0}
  .assur:nth-child(1),.assur:nth-child(2){border-bottom:1px solid var(--line);padding-bottom:22px}
  .assur:nth-child(3),.assur:nth-child(4){padding-top:22px}
}
@media (max-width:520px){
  .assur-strip__inner{grid-template-columns:1fr}
  .assur{border-left:0!important;padding:20px 0!important;border-bottom:1px solid var(--line)}
  .assur:last-child{border-bottom:none}
}
.hero__mark--wordmark .hero__mark-img { width: 100%; height: auto; }
@media (max-width: 600px) {
  .hero__mark--wordmark { width: min(86vw, 460px); }
}

/* ── TRUST BLOCK — four quality arguments ──────────────────────────── */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.trust__item {
  padding: 44px 32px 48px 0;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 300px;
  border-right: 1px solid var(--line);
}
.trust__item:nth-child(n+2) { padding-left: 32px; }
.trust__item:last-child { border-right: none; padding-right: 0; }
.trust__symbol {
  font-family: var(--font-display);
  font-style: normal; font-weight: 300;
  font-size: clamp(42px, 4.2vw, 60px);
  line-height: 1; color: var(--ink);
  display: flex; align-items: baseline;
  letter-spacing: -0.02em;
}
.trust__symbol small {
  font-family: var(--font-body);
  font-size: 0.30em; font-weight: 500;
  letter-spacing: 0.08em; color: var(--walnut);
  margin-left: 4px;
}
.trust__symbol--glyph { color: var(--walnut); }
.trust__title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.trust__body {
  font-size: 14.5px; line-height: 1.65; color: var(--ink-soft);
  max-width: 30ch; margin-top: auto;
}
@media (max-width: 760px) {
  .trust { grid-template-columns: 1fr 1fr; }
  .trust__item { min-height: 0; padding: 36px 24px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust__item:nth-child(2n) { border-right: none; }
  .trust__item:nth-child(n+2) { padding-left: 24px; }
}
@media (max-width: 480px) {
  .trust { grid-template-columns: 1fr; }
  .trust__item:nth-child(2n) { border-right: none; }
}

/* ── Tonal placeholder plates for category tiles without photos ────── */
.plate--tone::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(0,0,0,0.022) 14px 15px);
  pointer-events: none;
}
.plate--tone-1 { background: var(--paper); }
.plate--tone-2 { background: var(--sand); }
.plate--tone-3 { background: var(--surface); }

/* ── B2B TEASER (home) — strategic retail-partner block ────────────── */
.b2b-teaser__head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }
.b2b-teaser__title { margin: 16px 0 24px; }
.b2b-teaser__lede {
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  font-size: clamp(19px, 1.9vw, 26px); line-height: 1.4;
  color: var(--espresso); letter-spacing: -0.005em;
  max-width: 56ch; margin: 0;
}
.b2b-teaser__cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.b2b-teaser__col {
  padding: 40px 40px 44px 0;
  display: flex; flex-direction: column; gap: 14px;
  border-right: 1px solid var(--line);
}
.b2b-teaser__col:nth-child(2) { padding-left: 40px; padding-right: 0; border-right: none; }
.b2b-teaser__tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--walnut);
}
.b2b-teaser__col-title {
  font-family: var(--font-display); font-style: normal; font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px); color: var(--ink); line-height: 1.15;
  margin: 0;
}
.b2b-teaser__col-body {
  font-size: 15px; line-height: 1.7; color: var(--ink-soft); max-width: 42ch; margin: 0;
}
.b2b-teaser__cta { margin-top: clamp(36px, 4vw, 52px); }
@media (max-width: 760px) {
  .b2b-teaser__cols { grid-template-columns: 1fr; }
  .b2b-teaser__col { padding: 36px 0; border-right: none; border-bottom: 1px solid var(--line); }
  .b2b-teaser__col:nth-child(2) { padding-left: 0; }
}

/* ── ATELIER trust bullets ─────────────────────────────────────────── */
.trust-checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}
.trust-check {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 26px 32px 26px 0;
  border-bottom: 1px solid var(--line);
}
.trust-check:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-check:nth-child(even) { padding-left: 32px; }
.trust-check__mark {
  font-family: var(--font-display); font-style: normal;
  color: var(--walnut); font-size: 20px; line-height: 1.2; flex-shrink: 0;
}
.trust-check__text {
  font-size: 15.5px; line-height: 1.55; color: var(--ink); max-width: 40ch;
}
.trust-check__text small {
  display: block; font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.5;
}
@media (max-width: 700px) {
  .trust-checks { grid-template-columns: 1fr; }
  .trust-check { padding: 22px 0; border-right: none !important; }
  .trust-check:nth-child(even) { padding-left: 0; }
}

/* ── Retailer hint above contact form ──────────────────────────────── */
.kontakt-hint {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 26px;
  background: var(--surface);
  border-left: 2px solid var(--walnut);
  border-radius: 3px;
  margin-bottom: 32px;
}
.kontakt-hint__icon {
  font-family: var(--font-display); font-style: normal;
  color: var(--walnut); font-size: 18px; line-height: 1.3; flex-shrink: 0;
}
.kontakt-hint p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 58ch;
}
.kontakt-hint strong { color: var(--ink); font-weight: 600; }

/* ── MATERIAL: balanced, centred fibre intro (replaces cramped sidebar) ── */
.fiber-read {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(16px, 3vw, 40px) 0;
}
.fiber-read__head {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.fiber-read__stat { letter-spacing: -0.03em; }
.fiber-read__body { max-width: 60ch; margin: 0 auto; }
.fiber-read__body p {
  font-size: 18px; line-height: 1.78; color: var(--ink-soft);
  margin-bottom: 1.3em;
}
.fiber-read__body p:last-child { margin-bottom: 0; }
.fiber-read__body p.lede {
  font-size: clamp(22px, 2vw, 28px); line-height: 1.4;
  color: var(--espresso); text-align: center; margin-bottom: 1.4em;
}
