/* =========================================================
   OURS Studios — Design System v2
   Haltung: neutral, monochrom, laut nur in der Typografie.
   Farbe:   Greige-Basis, Tiefschwarz, kein Farbakzent.
   Type:    Archivo (variabel, Breite + Gewicht) — keine Serifen.
   ========================================================= */

:root {
  color-scheme: light only;
  --stone: #e7e5e0;
  --paper: #f3f2ef;
  --ash: #cbc8c2;
  --ink: #0f0f0e;
  --grey: #4a4945;
  --brand: #5b413d;   /* Braun aus dem Logo — ausschliesslich fuer die Wortmarke */
  --line: rgba(15, 15, 14, 0.16);
  --line-light: rgba(243, 242, 239, 0.2);

  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.7rem, 7.6vw, 7.2rem);
  --fs-h1: clamp(2.2rem, 5.4vw, 4.6rem);
  --fs-h2: clamp(1.6rem, 3.4vw, 2.9rem);
  --fs-h3: clamp(1rem, 1.3vw, 1.2rem);
  --fs-lead: clamp(1rem, 1.25vw, 1.2rem);
  --fs-body: 1rem;
  --fs-label: 0.74rem;

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(5rem, 10vw, 11rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #e7e5e0;
  color-scheme: light only;
}
body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 350;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  counter-reset: chapter;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 1px solid var(--ink); outline-offset: 4px; }

.wrap { width: 100%; max-width: 1560px; margin-inline: auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink); color: var(--paper); padding: 0.75rem 1.25rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Typografie ---------- */
.display {
  font-size: var(--fs-display);
  line-height: 0.93;
  letter-spacing: -0.025em;
  font-weight: 500;
  font-stretch: 108%;
  text-transform: uppercase;
}
.h1 { text-wrap: balance; font-size: var(--fs-h1); line-height: 0.98; letter-spacing: -0.02em; font-weight: 500; font-stretch: 106%; text-transform: uppercase; }
.h2 { text-wrap: balance; font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -0.018em; font-weight: 500; font-stretch: 104%; text-transform: uppercase; }
.h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: 0.1em; font-weight: 500; text-transform: uppercase; }
.lead { text-wrap: pretty; font-size: var(--fs-lead); line-height: 1.5; max-width: 40ch; color: var(--grey); font-weight: 300; }
.meta { font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); font-weight: 400; }
.prose p, .split__text p, .feature__text p, .card p, .person p { color: var(--grey); font-weight: 300; }

/* ---------- Buttons & Links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.05rem 2.1rem; border: 1px solid var(--ink); border-radius: 0;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--light { background: transparent; color: var(--paper); border-color: rgba(243, 242, 239, 0.55); }
.btn--light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btns { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Auf dunklem Grund invertiert */
.hero .btn, .section--dark .btn, .newsletter .btn {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.hero .btn:hover, .section--dark .btn:hover, .newsletter .btn:hover {
  background: transparent; color: var(--paper); border-color: rgba(243, 242, 239, 0.55);
}
.hero .btn--light, .section--dark .btn--light {
  background: transparent; color: var(--paper); border-color: rgba(243, 242, 239, 0.55);
}
.hero .btn--light:hover, .section--dark .btn--light:hover {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.section--dark .link { border-bottom-color: var(--paper); }

.link {
  display: inline-block; text-decoration: none; padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  transition: opacity 0.3s var(--ease);
}
.link:hover { opacity: 0.55; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center; color: var(--paper);
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-solid { background: var(--stone); color: var(--ink); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; }
.brand { display: block; margin-right: auto; padding: 0.6rem 0; line-height: 0; color: var(--paper); transition: color 0.45s var(--ease); }
.brand svg { display: block; height: 34px; width: auto; }
.header.is-solid .brand { color: var(--brand); }
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a { text-decoration: none; font-size: var(--fs-label); letter-spacing: 0.13em; text-transform: uppercase; font-weight: 400; opacity: 0.75; transition: opacity 0.3s; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.header__side { display: flex; align-items: center; gap: 1.25rem; }
.lang { display: flex; gap: 0.35rem; font-size: var(--fs-label); letter-spacing: 0.13em; }
.lang a { text-decoration: none; opacity: 0.45; padding: 0.8rem 0.3rem; margin: -0.8rem -0.3rem; }
.lang a.is-active { opacity: 1; }
.header .btn { padding: 0.7rem 1.3rem; }
.header:not(.is-solid) .btn--head { background: transparent; border-color: rgba(243, 242, 239, 0.55); color: var(--paper); }
.header:not(.is-solid) .btn--head:hover { background: var(--paper); color: var(--ink); }

.burger { display: none; background: none; border: 0; color: inherit; padding: 0.7rem 0.5rem; cursor: pointer; }
.burger span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px 0; transition: transform 0.35s var(--ease), opacity 0.2s; }
.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--ink); color: var(--paper);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
  overflow-y: auto;
}
.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer a {
  font-size: clamp(1.5rem, 7vw, 2.2rem); text-transform: uppercase; letter-spacing: -0.01em;
  font-weight: 500; font-stretch: 104%; text-decoration: none; padding: 0.45rem 0;
  border-bottom: 1px solid var(--line-light);
}
.drawer__cta { margin-top: 2rem; }
.drawer__cta .btn {
  width: 100%; background: var(--paper); color: var(--ink); border-color: var(--paper);
  font-size: var(--fs-label); letter-spacing: 0.14em; padding: 1.1rem 1.5rem; border-bottom-width: 1px;
}
.drawer__foot { margin-top: auto; padding-top: 2rem; display: flex; gap: 1.5rem; }
.drawer__foot a { font-size: var(--fs-label); letter-spacing: 0.14em; border: 0; padding: 0.6rem 0; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 620px; height: 100svh; display: flex; align-items: flex-end; color: var(--paper); }
.hero__media { position: absolute; inset: 0; overflow: hidden; background: var(--ash); }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.02); }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 15, 14, 0.62) 0%, rgba(15, 15, 14, 0.08) 42%, rgba(15, 15, 14, 0.3) 100%);
}
.hero__inner { position: relative; width: 100%; padding-bottom: clamp(2.5rem, 6vh, 5rem); display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; align-items: end; }
.hero__inner > .display { grid-column: 1 / 9; max-width: 15ch; }
.hero__aside { grid-column: 9 / 13; padding-bottom: 0.6rem; }
.hero__lead { font-size: var(--fs-lead); font-weight: 300; color: rgba(243, 242, 239, 0.82); max-width: 32ch; margin-bottom: 1.75rem; }

.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(103%); }
.js .hero.is-ready .reveal-line > span { transform: none; transition: transform 1.15s var(--ease); }
.js .hero .hero__aside { opacity: 0; }
.js .hero.is-ready .hero__aside { opacity: 1; transition: opacity 1s 0.4s var(--ease); }

/* ---------- Seitenkopf ---------- */
.pagehead { padding: calc(var(--header-h) + clamp(5rem, 13vh, 9rem)) 0 clamp(3rem, 6vw, 5rem); }
.pagehead--compact { padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.pagehead .lead { margin-top: 1.75rem; }

/* ---------- Sektionen ---------- */
.section { padding: var(--section) 0; }
.section--tight { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dark .lead, .section--dark p { color: rgba(243, 242, 239, 0.7); }
.section--bone { background: var(--paper); }

.section__head {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem;
  align-items: baseline; margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.25rem; border-top: 1px solid var(--line);
  counter-increment: chapter;
}
.section__head::before {
  content: counter(chapter, decimal-leading-zero);
  grid-column: 1 / 2; font-size: var(--fs-label); letter-spacing: 0.14em; color: var(--grey);
}
.section__head h2 { grid-column: 2 / 9; }
.section__head .link, .section__head .meta { grid-column: 10 / 13; justify-self: start; }
.section--dark .section__head { border-top-color: var(--line-light); }

/* Statement */
.statement { text-wrap: balance; font-size: clamp(1.6rem, 3.6vw, 3.1rem); line-height: 1.12; letter-spacing: -0.02em; font-weight: 400; font-stretch: 102%; max-width: 24ch; }
.statement__foot { margin-top: 2rem; font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }

/* Zitat */
.quote { padding: clamp(6rem, 14vw, 12rem) 0; }
.quote p { text-wrap: balance; font-size: clamp(2rem, 6.5vw, 5.6rem); line-height: 0.98; letter-spacing: -0.03em; font-weight: 500; font-stretch: 110%; text-transform: uppercase; max-width: 18ch; margin: 0; }

/* Panels */
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.panel { display: block; text-decoration: none; }
.panel__media { position: relative; overflow: hidden; aspect-ratio: 3 / 4.2; background: var(--ash); }
.panel__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); transition: transform 1.1s var(--ease), filter 0.6s var(--ease); }
.panel:hover .panel__media img { transform: scale(1.03); filter: grayscale(0); }
.panel__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 15, 14, 0.45), transparent 45%); }
.panel__label { position: absolute; left: 1.25rem; bottom: 1.1rem; z-index: 1; color: var(--paper); font-size: var(--fs-label); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.panel p { margin-top: 1.1rem; max-width: 38ch; font-size: 0.95rem; }

/* Split */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.split--portrait .split__media { aspect-ratio: 4 / 5; grid-column: 1 / 7; }
.split--portrait .split__text { grid-column: 8 / 13; }
.split__media { grid-column: 1 / 8; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ash); }
.split__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); }
.split__text { grid-column: 9 / 13; }
.split--right .split__media { grid-column: 6 / 13; order: 2; }
.split--right .split__text { grid-column: 1 / 5; order: 1; }
.split__text .meta { display: block; margin-bottom: 0.9rem; }
.split__text h2 { margin-bottom: 1.5rem; }
.split__text p { max-width: 40ch; font-size: 0.95rem; }
.split__text .link { margin-top: 0.75rem; }

/* Feature */
.feature { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; padding: clamp(3rem, 6vw, 6rem) 0; border-top: 1px solid var(--line); }
.feature__media { grid-column: 1 / 7; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ash); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); }
.feature__text { grid-column: 8 / 13; }
.feature:nth-child(even) .feature__media { grid-column: 7 / 13; order: 2; }
.feature:nth-child(even) .feature__text { grid-column: 1 / 6; order: 1; }
.feature__text h2 { margin-bottom: 1rem; }
.feature__text .meta { display: block; margin-bottom: 1.75rem; }
.feature__text p { max-width: 44ch; font-size: 0.95rem; }

/* Karten */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.card { padding: 1.5rem 1.75rem 2rem 0; border-top: 1px solid var(--line); text-decoration: none; display: block; transition: border-color 0.35s var(--ease); }
.card:hover { border-top-color: var(--ink); }
.card h3 { margin-bottom: 0.9rem; }
.card p { font-size: 0.92rem; }

/* Prosa */
.proseblock { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); padding-top: 1.25rem; border-top: 1px solid var(--line); }
.proseblock h2 { grid-column: 1 / 5; }
.proseblock__body { grid-column: 6 / 12; }
.proseblock__body p { max-width: 58ch; font-size: 0.95rem; }

/* Personen */
.people { display: grid; gap: clamp(1rem, 2vw, 2rem); }
.people--featured { grid-template-columns: repeat(3, 1fr); }
.people--grid { grid-template-columns: repeat(4, 1fr); }
.person__media { aspect-ratio: 3 / 4; background: var(--ash); overflow: hidden; position: relative; }
.person__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); }
.person__ph { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.6rem; letter-spacing: 0.2em; color: var(--grey); background: var(--ash); }
.person h3 { margin: 1.1rem 0 0.4rem; }
.person .meta { display: block; margin-bottom: 0.8rem; }
.person p { font-size: 0.92rem; max-width: 34ch; }

/* Produkte */
.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(0.75rem, 1.5vw, 1.5rem); }
.product__media { aspect-ratio: 1 / 1; background: var(--ash); overflow: hidden; position: relative; }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product h3 { margin: 0.9rem 0 0.3rem; font-size: 0.78rem; letter-spacing: 0.1em; }
.product .meta { font-size: 0.72rem; }

/* Formular */
.formgrid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); border-top: 1px solid var(--line); padding-top: 2.5rem; }
.formgrid > h2 { grid-column: 1 / 5; }
.formgrid > form { grid-column: 6 / 12; display: grid; gap: 1.75rem; }
.formfield { display: grid; gap: 0.5rem; }
.formfield label { font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey); }
.formfield input, .formfield textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 0.7rem 0; font: inherit; color: var(--ink); border-radius: 0;
}
.formfield textarea { min-height: 130px; resize: vertical; }
.formfield input:focus, .formfield textarea:focus { outline: none; border-bottom-color: var(--ink); }
.formgrid .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; }

/* Karte */
.map { border: 1px solid var(--line); max-width: 1000px; }
.map iframe { display: block; width: 100%; aspect-ratio: 4 / 3; max-height: 680px; border: 0; filter: grayscale(1) contrast(1.05); }

/* Widget */
.widget { background: var(--paper); border: 1px solid var(--line); padding: clamp(1rem, 2vw, 1.75rem); min-height: 320px; }
.widget--quiet { min-height: 0; }
.widget__fallback { text-align: center; padding: clamp(2.5rem, 6vw, 5rem) 1rem; }
.widget__fallback p { color: var(--grey); margin-bottom: 1.75rem; max-width: 44ch; margin-inline: auto; font-size: 0.92rem; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.6rem 3rem 1.6rem 0; position: relative;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem); letter-spacing: 0.01em; font-weight: 400;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after, .faq summary::before { content: ""; position: absolute; right: 0.25rem; top: 50%; width: 12px; height: 1px; background: var(--ink); transition: transform 0.35s var(--ease); }
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0deg); }
.faq details p { padding: 0 6rem 1.8rem 0; color: var(--grey); max-width: 72ch; font-weight: 300; font-size: 0.95rem; }

/* Kontakt */
.contactgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); border-top: 1px solid var(--line); padding-top: 2rem; }
.contactgrid h3 { margin-bottom: 1.1rem; color: var(--grey); }
.contactgrid p { font-size: 0.95rem; }
.contactgrid a { text-decoration: none; border-bottom: 1px solid var(--line); display: inline-block; padding: 0.2rem 0; }
.contactgrid a:hover { border-bottom-color: var(--ink); }

/* CTA */
.ctaband h2 { max-width: 18ch; }
.ctaband p { max-width: 44ch; margin: 1.5rem 0 2.25rem; font-size: 0.95rem; }

/* Newsletter */
.newsletter { background: var(--ink); color: var(--paper); padding: clamp(4rem, 8vw, 7rem) 0; }
.newsletter__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.newsletter__text { grid-column: 1 / 6; }
.newsletter__text p { color: rgba(243, 242, 239, 0.62); max-width: 36ch; margin-top: 1.25rem; font-size: 0.95rem; font-weight: 300; }
.newsletter__form { grid-column: 7 / 13; }
.field { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.field input { flex: 1 1 240px; background: transparent; border: 0; border-bottom: 1px solid var(--line-light); color: var(--paper); padding: 0.95rem 0; font: inherit; }
.field input::placeholder { color: rgba(243, 242, 239, 0.4); }
.field input:focus { outline: none; border-bottom-color: var(--paper); }
.consent { font-size: var(--fs-label); letter-spacing: 0.04em; color: rgba(243, 242, 239, 0.42); margin-top: 1.25rem; max-width: 52ch; line-height: 1.7; }
.consent a { color: inherit; }
.formnote { margin-top: 1rem; font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; }

/* Footer */
.footer { background: var(--ink); color: var(--paper); padding: clamp(4rem, 8vw, 7rem) 0 2rem; border-top: 1px solid var(--line-light); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
.footer h3 { font-size: var(--fs-label); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(243, 242, 239, 0.45); margin-bottom: 1.25rem; font-weight: 400; }
.footer a { text-decoration: none; color: rgba(243, 242, 239, 0.8); }
.footer a:hover { color: var(--paper); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.2rem; font-size: 0.9rem; font-weight: 300; }
.footer ul a { display: inline-block; padding: 0.4rem 0; }
.footer__mark { line-height: 0; margin-bottom: 2rem; color: var(--paper); }
.footer__mark svg { width: min(300px, 80%); height: auto; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; margin-top: clamp(3rem, 6vw, 5rem); padding-top: 1.5rem; border-top: 1px solid var(--line-light); font-size: var(--fs-label); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(243, 242, 239, 0.45); }
.footer__bottom a { color: inherit; }

/* Cookie-Leiste */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--ink); color: var(--paper); border-top: 1px solid var(--line-light);
  padding: 1.1rem var(--gutter); display: none;
}
.cookie.is-visible { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie p { margin: 0; font-size: 0.82rem; font-weight: 300; color: rgba(243, 242, 239, 0.62); max-width: 72ch; }
.cookie .btns { margin: 0; }
.cookie .btn { padding: 0.62rem 1.15rem; background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cookie .btn:hover { background: transparent; color: var(--paper); border-color: rgba(243, 242, 239, 0.55); }
.cookie .btn:last-child { background: transparent; color: var(--paper); border-color: rgba(243, 242, 239, 0.45); }
.cookie .btn:last-child:hover { background: var(--paper); color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .panels { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .people--grid { grid-template-columns: repeat(3, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .formgrid > h2, .formgrid > form { grid-column: 1 / 13; }
  .newsletter__text, .newsletter__form { grid-column: 1 / 13; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__inner > .display { grid-column: 1 / 13; }
  .split--portrait .split__media { grid-column: 1 / 8; }
  .split--portrait .split__text { grid-column: 9 / 13; }
  .hero__aside { grid-column: 1 / 13; padding-top: 1.75rem; }
  .section__head h2 { grid-column: 2 / 13; }
  .section__head .link, .section__head .meta { grid-column: 2 / 13; margin-top: 1.25rem; }
}

@media (max-width: 760px) {
  :root { --header-h: 62px; }
  .hero { min-height: 560px; }
  .split, .feature, .proseblock { grid-template-columns: 1fr; }
  .split__media, .split__text, .feature__media, .feature__text,
  .split--portrait .split__media, .split--portrait .split__text,
  .split--right .split__media, .split--right .split__text,
  .feature:nth-child(even) .feature__media, .feature:nth-child(even) .feature__text,
  .proseblock h2, .proseblock__body { grid-column: 1 / -1; order: 0; }
  .panels, .cards, .people--featured, .contactgrid { grid-template-columns: 1fr; }
  .people--grid { grid-template-columns: 1fr 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  .card { padding-right: 0; }
  .faq summary { padding-right: 2.5rem; }
  .faq details p { padding-right: 0; }
  .cookie.is-visible { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .statement { max-width: none; }
  .header .btn--head { display: none; }
  .brand svg { height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js .hero .reveal-line > span { transform: none; }
  .js .hero .hero__aside { opacity: 1; }
}


/* ===== Dunkelmodus: eigene Farben behalten =====
   Ohne diesen Block faerben manche Browser (vor allem iOS in dunkler
   Systemeinstellung) den Hintergrund selbst dunkel und lassen die
   dunkle Schrift stehen — das Ergebnis ist schwarz auf schwarz. */
@media (prefers-color-scheme: dark) {
  html, body { background: var(--stone) !important; color: var(--ink) !important; }
  .section--bone, .widget, .tier, .plan, .cookie { background: var(--paper) !important; }
  .section--dark, .newsletter, .footer, .drawer, .welcome { background: var(--ink) !important; color: var(--paper) !important; }
  .header.is-solid, .tabbar { background: var(--stone) !important; color: var(--ink) !important; }
  input, textarea, select, button { color-scheme: light; }
}

/* ===== Warteliste für Events ===== */
.waitlist { border: 1px solid var(--ink); padding: clamp(1.75rem, 4vw, 3rem); }
.waitlist--image { display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.waitlist__media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--ash); }
.waitlist__media img { width: 100%; height: 100%; object-fit: cover; }
.waitlist--image .waitlist__form { grid-column: 2 / 3; }
.waitlist__head .meta { display: block; margin-bottom: 0.9rem; }
.waitlist__head h2 { margin-bottom: 1.25rem; max-width: 20ch; }
.waitlist__head p { color: var(--ink-80, var(--grey)); max-width: 56ch; font-weight: 300; }
.waitlist__facts { list-style: none; margin: 1.75rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; }
.waitlist__facts li { font-size: var(--fs-label); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.waitlist__form { margin-top: 2rem; }
.waitlist__form summary { list-style: none; display: inline-flex; cursor: pointer; }
.waitlist__form summary::-webkit-details-marker { display: none; }
.waitlist__form[open] summary { display: none; }
.waitlist__form form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 0.5rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.formfield--wide { grid-column: 1 / -1; }
.waitlist__form .formnote { margin-top: 1rem; }

@media (max-width: 860px) {
  .waitlist--image { grid-template-columns: 1fr; }
  .waitlist--image .waitlist__form { grid-column: 1 / -1; }
  .waitlist__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 760px) {
  .waitlist__form form { grid-template-columns: 1fr; }
  .waitlist__form summary { width: 100%; justify-content: center; }
}

/* Rueckmeldung nach dem Absenden */
.formnote { padding: 0.9rem 1.1rem; border: 1px solid var(--ink); background: var(--paper); color: var(--ink);
  font-size: 0.95rem; letter-spacing: 0; text-transform: none; }
.formnote.is-error { border-color: #8a2c1d; color: #8a2c1d; }
.newsletter .formnote { background: transparent; color: var(--paper); border-color: rgba(243,242,239,.5); }
