/* ============================================================
 * LUKAS & MARTHA — Eismanufaktur Musterort
 * ============================================================
 * One-Pager Macro-Layout — Sticky-Top-Nav mit Scroll-Anchors.
 * Warm & Persönlich — Cream + Coral + Mint, runde Formen,
 * persönlich-handwerkliche Fotografie.
 */

:root {
  /* Farben */
  --paper: #fdf6e8;
  --paper-deep: #f5e9d0;
  --paper-soft: #fffaf0;
  --ink: #2e1f17;
  --ink-soft: #4a3a2f;
  --coral: #ed6f54;
  --coral-deep: #c95a40;
  --coral-soft: #f3917a;
  --mint: #79c4a4;
  --mint-deep: #5da585;
  --mint-soft: #a4dabf;
  --honey: #e9b649;
  --honey-deep: #c89a35;
  --stone: #7a6a5e;
  --stone-soft: #a89684;
  --line: #e9dcc0;

  /* Typo */
  --display: 'Newsreader', 'Source Serif 4', Georgia, serif;
  --serif:   'Newsreader', 'Source Serif 4', Georgia, serif;
  --sans:    'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --hand:    'Caveat', 'Comic Sans MS', cursive;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --nav-h: 72px;
  --container: 1240px;
  --container-narrow: 980px;

    --demo-banner-bg: #2e1f17;
    --demo-banner-fg: #fdf6e8;
    --demo-banner-accent: #ed6f54;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--coral); color: var(--paper); }

/* Typo */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.04;
  font-variation-settings: "opsz" 36;
}
h1 { font-size: clamp(3rem, 7vw, 5.6rem); font-weight: 500; letter-spacing: -0.022em; font-variation-settings: "opsz" 60; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -0.018em; font-variation-settings: "opsz" 48; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-variation-settings: "opsz" 24; }
h4 { font-size: 1.1rem; font-weight: 600; }
em {
  font-style: italic;
  color: var(--coral);
  font-variation-settings: "opsz" 60;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
strong { font-weight: 600; }

.hand {
  font-family: var(--hand);
  color: var(--coral);
  font-style: normal;
  font-weight: 500;
  display: inline-block;
  transform: rotate(-2deg);
}
.hand--mint { color: var(--mint-deep); }
.hand--honey { color: var(--honey-deep); transform: rotate(1.5deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
}
.eyebrow--mint { color: var(--mint-deep); }
.eyebrow--mint::before { background: var(--mint-deep); }
.eyebrow--paper { color: var(--paper); }
.eyebrow--paper::before { background: var(--honey); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
  scroll-margin-top: var(--nav-h);
}
.section--paper { background: var(--paper); }
.section--cream { background: var(--paper-soft); }
.section--deep { background: var(--paper-deep); }
.section--coral {
  background: var(--coral);
  color: var(--paper-soft);
}
.section--coral h2, .section--coral h3 { color: var(--paper); }
.section--coral em { color: var(--honey); }
.section--coral p { color: rgba(253, 246, 232, 0.88); }
.section--mint {
  background: var(--mint);
  color: var(--ink);
}
.section--mint p { color: var(--ink-soft); }
.section--ink {
  background: var(--ink);
  color: var(--paper-soft);
}
.section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink em { color: var(--honey); }
.section--ink p { color: rgba(253, 246, 232, 0.82); }

.section__head { max-width: 760px; margin: 0 auto 56px; }
.section__head--left { margin: 0 0 56px; max-width: 760px; }
.section__head--center { text-align: center; }
.section__head p { color: var(--stone); font-size: 1.08rem; max-width: 580px; margin: 18px 0 0; line-height: 1.62; }
.section__head--center p { margin: 18px auto 0; }
.section--coral .section__head p,
.section--ink .section__head p { color: rgba(253, 246, 232, 0.78); }

/* Sticky Top Nav (für Onepager-Anchors) */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(253, 246, 232, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand-mark {
  width: 40px; height: 40px;
  background: var(--coral);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nav__brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: 4px 0;
  position: relative;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--coral); }
.nav__links a.is-active { color: var(--coral); }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--coral);
  border-radius: 1px;
}
.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.nav__cta:hover { background: var(--coral); }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 60;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
  border-radius: 1px;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--coral);
  color: var(--paper);
  border: 2px solid var(--coral);
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.18s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--coral-deep); border-color: var(--coral-deep); transform: translateY(-2px); }
.btn--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--coral); border-color: var(--coral); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--mint {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}
.btn--mint:hover { background: var(--mint-deep); border-color: var(--mint-deep); color: var(--paper); }
.btn--paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--paper:hover { background: var(--honey); border-color: var(--honey); }
.btn--paper-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--paper-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero — image with text overlay, with hand-drawn sticker */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 7vw, 100px);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.hero__copy h1 {
  margin: 0 0 28px;
  max-width: 12ch;
}
.hero__copy h1 em {
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__sticker {
  position: absolute;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--hand);
  font-size: 1.6rem;
  padding: 22px 28px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
  transform: rotate(-8deg);
  z-index: 3;
  top: -28px;
  right: -10px;
}
.hero__sticker--coral {
  background: var(--coral);
  color: var(--paper);
  transform: rotate(6deg);
  top: auto; bottom: -22px;
  right: auto; left: -22px;
  width: 110px; height: 110px;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1.5px dashed var(--line);
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}
.hero__meta strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0;
  font-weight: 500;
}

/* Saison-Sorten (Eis-Cards) */
.sorten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.sorte {
  background: var(--paper-soft);
  border-radius: 24px;
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sorte:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(46, 31, 23, 0.08);
}
.sorte__media {
  aspect-ratio: 1;
  overflow: hidden;
  margin: 0 0 18px;
  border-radius: 18px;
  background: var(--paper-deep);
}
.sorte__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sorte:hover .sorte__media img { transform: scale(1.04); }
.sorte__cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
  font-weight: 500;
}
.sorte__cat--mint { color: var(--mint-deep); }
.sorte__cat--honey { color: var(--honey-deep); }
.sorte__title {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.15;
}
.sorte__title em { color: var(--coral); font-style: italic; }
.sorte__desc {
  color: var(--stone);
  font-size: 0.92rem;
  margin: 0 0 14px;
  line-height: 1.5;
  flex: 1;
}
.sorte__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--stone);
}
.sorte__meta strong {
  color: var(--coral);
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.96rem;
  letter-spacing: 0;
}

/* Manufaktur Story (3-Schritte) */
.manufaktur {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  display: flex;
  flex-direction: column;
}
.step__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 22px;
  border-radius: 20px;
}
.step__media img { width: 100%; height: 100%; object-fit: cover; }
.step__num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--coral);
  margin-bottom: 8px;
  line-height: 1;
}
.step h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 500;
}
.step h3 em { color: var(--coral); font-style: italic; }
.step p { color: var(--ink-soft); margin: 0; line-height: 1.65; }

/* Standort-Block */
.standort {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.standort__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
}
.standort__media img { width: 100%; height: 100%; object-fit: cover; }
.standort__body .hours {
  margin-top: 24px;
  background: var(--paper-soft);
  border-radius: 18px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  display: grid;
  gap: 0;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.hours__row:last-child { border-bottom: 0; }
.hours__day { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hours__row--closed { color: var(--stone); font-style: italic; }

/* Eisfahrrad-Feature */
.eisfahrrad-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
.eisfahrrad-grid__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}
.eisfahrrad-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.eisfahrrad-grid__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1.5px dashed rgba(253, 246, 232, 0.3);
  border-bottom: 1.5px dashed rgba(253, 246, 232, 0.3);
}
.facts-grid > div {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: rgba(253, 246, 232, 0.78);
  letter-spacing: 0.02em;
}
.facts-grid strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--honey);
  margin-bottom: 4px;
  letter-spacing: 0;
}

/* Workshop-Termine */
.workshops {
  display: grid;
  gap: 0;
  border-top: 1.5px solid var(--ink);
}
.workshop {
  display: grid;
  grid-template-columns: 100px 1fr 200px 160px;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.workshop__date {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--coral);
  line-height: 1.1;
  font-weight: 500;
}
.workshop__date strong {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-size: 2.4rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.workshop__date span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.workshop__title h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0 0 6px;
  font-weight: 500;
}
.workshop__title h3 em { color: var(--coral); font-style: italic; }
.workshop__title p { color: var(--stone); margin: 0; font-size: 0.92rem; line-height: 1.5; }
.workshop__meta {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.workshop__meta strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0;
}
.workshop__cta { display: flex; justify-content: flex-end; }
.workshop__status {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.workshop__status--free { background: var(--mint-soft); color: var(--ink); }
.workshop__status--last { background: var(--honey); color: var(--ink); }
.workshop__status--full { background: var(--paper-deep); color: var(--stone); }

/* About Split (Geschwister) */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: flex-start;
}
.about-split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body p { color: var(--ink-soft); margin: 0 0 16px; line-height: 1.7; }
.about-split__quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 24px;
  font-weight: 500;
}
.about-split__quote em { color: var(--coral); }
.about-split__sig {
  display: block;
  margin-top: 24px;
  font-family: var(--hand);
  font-size: 2rem;
  color: var(--ink);
}
.about-split__sig-role {
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-top: 4px;
}

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; border-top: 1.5px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--coral);
  font-style: italic;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  color: var(--ink-soft);
  padding: 0 0 22px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq__answer p { margin-bottom: 12px; }
.faq__answer p:last-child { margin-bottom: 0; }

/* Jobs / Karriere */
.jobs { display: grid; gap: 16px; }
.job {
  background: var(--paper-soft);
  border-radius: 18px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
}
.job h3 { font-family: var(--display); font-size: 1.35rem; margin: 0 0 6px; font-weight: 500; }
.job h3 em { color: var(--coral); font-style: italic; }
.job__tag-row { display: flex; gap: 6px; flex-wrap: wrap; }
.job__tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: var(--paper-deep);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.job__cell {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--stone);
}
.job__cell strong { display: block; color: var(--ink); font-family: var(--display); font-style: italic; font-size: 1rem; font-weight: 500; margin-bottom: 2px; letter-spacing: 0; }

/* Newsletter */
.newsletter {
  background: var(--ink);
  color: var(--paper-soft);
  border-radius: 24px;
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.newsletter h2 { color: var(--paper); }
.newsletter em { color: var(--honey); }
.newsletter p { color: rgba(253, 246, 232, 0.82); margin: 0 0 18px; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 0;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
}
.newsletter-form button {
  background: var(--coral);
  color: var(--paper);
  border: 0;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.newsletter-form button:hover { background: var(--coral-deep); }
.newsletter__note { font-family: var(--mono); font-size: 0.82rem; color: rgba(253, 246, 232, 0.5); margin-top: 12px; flex-basis: 100%; }

/* Form */
.form {
  background: var(--paper-soft);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
.form__row--two { grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--stone);
  margin: 12px 0 20px;
}
.form__consent input { margin-top: 4px; accent-color: var(--coral); }
.form__submit { width: 100%; justify-content: center; }
.form__status {
  display: none;
  background: var(--mint-soft);
  border-left: 3px solid var(--mint-deep);
  padding: 14px 18px;
  color: var(--ink);
  margin-bottom: 16px;
  font-size: 0.94rem;
  border-radius: 0 12px 12px 0;
}

/* Map */
.map {
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  border: 1px solid var(--line);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 50%, var(--coral-soft) 0%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(46, 31, 23, 0.06) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(46, 31, 23, 0.06) 48px 49px),
    var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__pin {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--coral);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--coral);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid var(--coral);
  opacity: 0.4;
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(253, 246, 232, 0.72);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253, 246, 232, 0.16);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--paper);
  text-decoration: none;
}
.footer__brand-mark {
  width: 40px; height: 40px;
  background: var(--honey);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  border-radius: 50%;
}
.footer__brand-name {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--paper);
  font-weight: 500;
}
.footer__about { font-size: 0.94rem; line-height: 1.65; color: rgba(253, 246, 232, 0.72); max-width: 320px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey);
  margin: 0 0 18px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: rgba(253, 246, 232, 0.72);
  font-size: 0.94rem;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--honey); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(253, 246, 232, 0.5);
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(253, 246, 232, 0.7);
  text-decoration: none;
  margin-left: 18px;
}
.footer__legal a:hover { color: var(--honey); }

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 460px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 24px;
  border-radius: 20px;
  z-index: 200;
  display: none;
  border-bottom: 3px solid var(--coral);
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--paper);
  margin: 0 0 8px;
  font-weight: 500;
  font-style: italic;
}
.cookie p {
  font-size: 0.92rem;
  margin: 0 0 16px;
  color: rgba(253, 246, 232, 0.78);
  line-height: 1.55;
}
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; font-size: 0.86rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Page hero (legal pages) */
.page-hero {
  padding: clamp(72px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
  font-weight: 500;
}
.page-hero__crumbs a { color: var(--stone); text-decoration: none; }
.page-hero h1 { font-weight: 500; max-width: 700px; }
.page-hero p { color: var(--stone); max-width: 580px; font-size: 1.06rem; margin: 20px 0 0; }

.legal { max-width: 780px; }
.legal h2 { margin: 48px 0 14px; font-size: 1.55rem; font-family: var(--display); font-weight: 500; }
.legal h2 em { font-style: italic; color: var(--coral); }
.legal h3 { margin: 32px 0 10px; font-size: 1.1rem; font-weight: 600; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; margin: 0 0 12px; }
.legal address { font-style: normal; color: var(--ink-soft); }
.legal ul { padding-left: 20px; }
.legal__note { background: var(--paper-soft); border-left: 3px solid var(--coral); padding: 18px 24px; font-size: 0.92rem; margin: 18px 0; border-radius: 0 12px 12px 0; }

/* Responsive */
@media (max-width: 1024px) {
  .manufaktur { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-split__media:nth-child(2) { display: none; }
  .workshop { grid-template-columns: 76px 1fr; gap: 16px; }
  .workshop__meta, .workshop__cta { grid-column: 2; justify-self: flex-start; }
  .job { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  :root { --nav-h: 64px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__brand-text { display: none; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 55;
  }
  .nav__links a { font-size: 1.4rem; font-family: var(--display); }
  body.menu-open .nav__links { transform: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__sticker { right: 16px; top: -16px; }
  .hero__sticker--coral { left: 16px; bottom: -16px; }
  .standort, .eisfahrrad-grid, .newsletter { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__meta { grid-template-columns: 1fr; }
}
