/* ============================================================
   TOUCH NOISE — Landing Page
   Raw Touch · True Noise
   ============================================================ */

/* ---- Self-hosted fonts (no Google CDN request — DSGVO compliant) ---- */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-500-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-700-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/barlow-condensed-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --obsidian:   #0C0A09;
  --surface:    #15110D;
  --card:       #1F1813;
  --border:     #2E2620;
  --taupe:      #A6988A;
  --white:      #F4EFE8;
  --copper:     #BE7339;
  --copper-dim: #8A4F26;
  --amber:      #D89A4C;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

::selection { background: var(--copper); color: var(--obsidian); }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.4rem;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-head h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); }

.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4em 1em;
}
.badge--accent {
  color: var(--obsidian);
  background: var(--copper);
  border-color: var(--copper);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
/* Blur/background live on a pseudo-element layer so that backdrop-filter does
   NOT turn .nav into the containing block for the fixed mobile menu drawer. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nav.scrolled::before {
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  opacity: 1;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 26px; width: auto; opacity: 0.95; transition: opacity 0.25s var(--ease); will-change: opacity; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.nav__logo:hover img { opacity: 1; }

.nav__links { display: flex; align-items: center; gap: 2.4rem; }
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  color: var(--white) !important;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55em 1.3em;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease) !important;
}
.nav__cta:hover { border-color: var(--copper); background: rgba(190, 115, 57, 0.08); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.5rem 2rem 4rem;
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__canvas.ready { opacity: 1; }
.hero__glow {
  position: absolute;
  top: 38%;
  left: 50%;
  width: min(900px, 120vw);
  height: min(900px, 120vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(190, 115, 57, 0.16) 0%, rgba(190, 115, 57, 0.05) 35%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 42%, transparent 30%, rgba(12, 10, 9, 0.55) 100%),
    linear-gradient(to bottom, rgba(12, 10, 9, 0.65) 0%, transparent 22%, transparent 70%, rgba(12, 10, 9, 0.9) 100%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__logo {
  width: clamp(148px, 14vw, 183px);
  height: auto;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6));
}
.hero__tagline {
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.hero__tagline span { color: var(--white); margin: 0 0.3em; }
.hero__statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.32rem, 6.3vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--white);
  max-width: 15ch;
  margin: 0 auto 1.3rem;
}
.hero__cta-sub {
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: var(--taupe);
  max-width: 58ch;
  margin: 0 auto 1.8rem;
  text-wrap: balance;
}

.hero__cta {
  display: inline-block;
  background: var(--copper);
  color: var(--obsidian);
  border-radius: 100px;
  padding: 1.05em 2.7em;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.hero__cta:hover { background: var(--amber); transform: translateY(-2px); box-shadow: 0 14px 38px rgba(190, 115, 57, 0.35); }
.hero__cta:active { transform: translateY(0) scale(0.98); }
.hero__cta:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }

.hero__launch {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--copper);
  border-radius: 2px;
  animation: scroll-hint 1.8s var(--ease) infinite;
}
@keyframes scroll-hint {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(14px); }
}

/* Flache Viewports: Hero weiter straffen, damit der Scroll-Indikator sichtbar bleibt */
@media (max-height: 1000px) {
  .hero { padding: 4.2rem 2rem 2.6rem; }
  .hero__logo { margin-bottom: 0.9rem; width: clamp(130px, 12vw, 170px); }
  .hero__tagline { margin-bottom: 0.7rem; }
  .hero__statement { font-size: clamp(2.09rem, 5.4vw, 3.5rem); margin-bottom: 0.85rem; }
  .hero__cta-sub { margin-bottom: 1.2rem; }
  .hero__launch { margin-top: 0.9rem; }
  .hero__scroll { bottom: 1.2rem; }
}
@media (max-height: 820px) {
  .hero { padding: 3.4rem 2rem 2rem; }
  .hero__logo { width: clamp(110px, 10.5vw, 144px); margin-bottom: 0.6rem; }
  .hero__tagline { margin-bottom: 0.5rem; }
  .hero__statement { font-size: clamp(1.75rem, 4.3vw, 2.83rem); margin-bottom: 0.65rem; }
  .hero__cta-sub { margin-bottom: 0.85rem; }
  .hero__launch { margin-top: 0.55rem; }
}

/* ---------- Signup form (shared) ---------- */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 460px;
  margin: 0 auto;
}
.signup-form__row {
  display: flex;
  gap: 0.6rem;
}
/* Honeypot — für Menschen unsichtbar, von Bots ausgefüllt */
.signup-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.signup-form input {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.95em 1.4em;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.signup-form input::placeholder { color: #6c6258; }
.signup-form input:focus {
  outline: none;
  border-color: var(--copper);
  background: rgba(190, 115, 57, 0.05);
}
.signup-form input:-webkit-autofill,
.signup-form input:-webkit-autofill:hover,
.signup-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1F1813 inset;
  -webkit-text-fill-color: #F4EFE8;
  caret-color: #F4EFE8;
  border-color: var(--copper);
  transition: background-color 600000s 0s;
}
.signup-form button {
  flex-shrink: 0;
  background: var(--copper);
  color: var(--obsidian);
  border: none;
  border-radius: 100px;
  padding: 0.95em 1.7em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease);
}
.signup-form button:hover { background: var(--amber); }
.signup-form button:active { transform: scale(0.97); }

/* E-Mail-Feld teilt sich die Reihe mit dem Button */
.signup-form__row input { flex: 1; width: auto; }

.signup-form__note {
  max-width: 460px;
  margin: 1.2rem auto 0;
  color: var(--copper);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.signup-form__note.is-error { color: #e0775c; }

.signup-form__consent {
  max-width: 460px;
  margin: 0.85rem auto 0;
  color: var(--taupe);
  font-size: 0.72rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.signup-form__consent a { color: var(--copper); text-decoration: none; }
.signup-form__consent a:hover { text-decoration: underline; }

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.6rem, 6vw, 4.5rem) 2rem;
}
.band__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.2em 0.45em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}
.band__inner span { white-space: nowrap; }

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 13vw, 11rem) 2rem;
}
.philosophy__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(340px, 52vw, 640px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.philosophy h2 { font-size: clamp(3rem, 9vw, 6rem); font-weight: 700; }
.rule {
  width: 60px;
  height: 2px;
  background: var(--copper);
  margin: 2.4rem auto;
}
.philosophy__lead {
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.philosophy__body {
  color: var(--taupe);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0 auto;
}

/* ============================================================
   COLLECTION
   ============================================================ */
.collection { padding: clamp(4rem, 9vw, 7rem) 2rem clamp(6rem, 12vw, 10rem); }
.collection > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* Featured — SUBSTANCE */
.featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(4rem, 9vw, 7rem);
}
.featured__art {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 80px rgba(190, 115, 57, 0.12);
}
.featured__art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.featured__art:hover img { transform: scale(1.04); }
.featured__info .badge--accent { margin-bottom: 1.5rem; }
.featured__info h3 { font-size: clamp(3rem, 7vw, 5rem); font-weight: 700; }
.featured__sub {
  color: var(--copper);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.7rem 0 1.6rem;
}
.featured__desc { color: var(--taupe); font-size: 1.05rem; max-width: 42ch; }
.featured__meta {
  margin-top: 1.8rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
}

.grid-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2.6rem;
  position: relative;
}

/* The four remaining cards */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card__art { overflow: hidden; }
.card__art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--copper-dim);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 56px var(--glow, transparent);
}
.card:hover .card__art img { transform: scale(1.07); }
.card__body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 { font-size: 1.7rem; font-weight: 600; }
.card__body p {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0.5rem 0 1.1rem;
}
.card__body .badge { margin-top: auto; align-self: flex-start; }

/* ============================================================
   VALUES
   ============================================================ */
.values {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(6rem, 12vw, 10rem) 2rem;
}
.values__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.value { text-align: center; }
.value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--copper);
  margin-bottom: 1.6rem;
}
.value__icon svg { width: 34px; height: 34px; stroke-linecap: round; stroke-linejoin: round; }
.value h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.8rem; }
.value p { color: var(--taupe); font-size: 0.95rem; line-height: 1.65; }

/* ============================================================
   SIGNUP
   ============================================================ */
.signup {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 2rem;
  text-align: center;
  overflow: hidden;
}
.signup__glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: min(800px, 120vw);
  height: min(800px, 120vw);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(190, 115, 57, 0.16) 0%, transparent 65%);
  pointer-events: none;
}
.signup__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.signup h2 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 600; }
.signup__lead { color: var(--taupe); font-size: 1.05rem; margin: 1.3rem auto 0.45rem; max-width: 46ch; text-wrap: balance; }
.signup__bonus { color: var(--taupe); font-size: 0.95rem; margin: 0 auto 2.3rem; max-width: 46ch; text-wrap: balance; }
.signup__bonus strong { color: var(--copper); font-weight: 600; }
.signup-form--lg { max-width: 500px; }
.signup-form--lg button { padding: 1.15em 1.7em; font-size: 0.84rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border);
  padding: clamp(3.5rem, 7vw, 5rem) 2rem 2.5rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer__brand a { display: inline-block; }
.footer__brand img { height: 28px; width: auto; margin-bottom: 0.9rem; opacity: 0.95; transition: opacity 0.25s var(--ease); will-change: opacity; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.footer__brand a:hover img { opacity: 1; }
.footer__brand p {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
}
.footer__brand p .dot { color: var(--white); }
.footer__nav { display: flex; gap: 2rem; }
.footer__nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color 0.25s var(--ease);
}
.footer__nav a:hover { color: var(--white); }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--taupe);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__social a:hover { color: var(--copper); border-color: var(--copper); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer__legal { display: flex; gap: 1.6rem; }
.footer__legal a {
  font-size: 0.78rem;
  color: var(--taupe);
  transition: color 0.25s var(--ease);
}
.footer__legal a:hover { color: var(--white); }
.footer__copy { font-size: 0.78rem; color: #6c6258; }

/* ============================================================
   BACK-TO-TOP BUTTON
   ============================================================ */
.to-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(21, 17, 13, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--taupe);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
              visibility 0.3s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { color: var(--copper); border-color: var(--copper); transform: translateY(-3px); }
.to-top svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .to-top { bottom: 1.1rem; right: 1.1rem; width: 42px; height: 42px; }
}

/* ============================================================
   FILM GRAIN OVERLAY
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .featured { grid-template-columns: 1fr; gap: 2.5rem; }
  .featured__info { text-align: center; }
  .featured__desc { margin-left: auto; margin-right: auto; }
  .philosophy__grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .philosophy__text { max-width: none; text-align: center; }
  .rule { margin-left: auto; margin-right: auto; }
  .philosophy__body { margin-left: auto; margin-right: auto; }
  .philosophy__media { order: -1; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .nav__inner { padding: 1.1rem 1.4rem; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.4rem;
    background: var(--surface);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.05rem; }
  .nav__links .nav__cta { margin-left: -1.3em; }
  .nav__toggle { display: flex; z-index: 101; }

  .hero { padding: 6rem 1.4rem 4rem; }
  .band, .philosophy, .collection, .values, .signup { padding-left: 1.4rem; padding-right: 1.4rem; }
  .grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .values__grid { grid-template-columns: 1fr; gap: 3rem; max-width: 360px; }
  .signup-form__row { flex-direction: column; }
  .signup-form button { padding: 1em; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LEGAL PAGES  (impressum / datenschutz / agb)
   ============================================================ */

.legal-page {
  min-height: 100vh;
  padding-top: 5rem;
}

/* Solid nav permanently on legal pages (no hero behind it) */
.legal-page .nav::before {
  background: rgba(12, 10, 9, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  opacity: 1;
}

.legal-page main {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
/* Englische Seite → englischen Abschnitt zuerst anzeigen, Deutsch darunter.
   (Rein visuelle Reihenfolge; Rechtstext bleibt unverändert.) */
.legal-page .legal-back:not(.legal-back--bottom) { order: 0; align-self: flex-start; }
.legal-page .legal-section[lang="en"] { order: 1; }
.legal-page .legal-lang-divider       { order: 2; }
.legal-page .legal-section[lang="de"] { order: 3; }
.legal-page .legal-back--bottom       { order: 4; align-self: flex-start; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--taupe);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--white); }
.legal-back svg { width: 14px; height: 14px; }

/* Back link below the legal text (mirrors the one at the top) */
.legal-back--bottom {
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* No floating scroll-up arrow on legal pages — the back link replaces it */
.legal-page .to-top { display: none; }

.legal-section { margin-bottom: 4rem; }

.legal-section .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}

.legal-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.legal-section .legal-updated {
  font-size: 0.78rem;
  color: var(--taupe);
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.legal-section h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
}

.legal-section p,
.legal-section li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--taupe);
  max-width: 66ch;
}

.legal-section a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { color: var(--amber); }

.legal-section ul {
  padding-left: 1.4rem;
  margin-top: 0.4rem;
  margin-bottom: 0.8rem;
}

.legal-section li + li { margin-top: 0.3rem; }

.legal-placeholder {
  background: rgba(190, 115, 57, 0.12);
  border: 1px solid var(--copper-dim);
  border-radius: 4px;
  padding: 0.15em 0.45em;
  font-size: 0.82em;
  color: var(--amber);
  font-weight: 600;
  white-space: nowrap;
}

.legal-lang-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4rem 0;
  position: relative;
}
.legal-lang-divider::after {
  content: "— EN —";
  position: absolute;
  top: -0.7em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--obsidian);
  padding: 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--taupe);
}

@media (max-width: 640px) {
  .legal-page main { padding: 2.5rem 1.4rem 5rem; }
}
