/* ============================================================
 * ATELIER VOGEL — Goldschmiedemeisterin & Schmuckatelier
 * Musterort · seit 1958
 * ============================================================
 * Editorial Macro-Layout — magazinhaft, asymmetrische Spalten,
 * große Serif-Headlines, Marginalien, Cream-Papier-Hintergrund.
 */

:root {
  /* Farben */
  --paper: #f6efe0;
  --paper-deep: #ede2c8;
  --paper-soft: #fbf6e9;
  --ink: #1a1814;
  --ink-soft: #2b2723;
  --aubergine: #5a1d2b;
  --aubergine-deep: #401320;
  --gold: #c39a52;
  --gold-soft: #d8b573;
  --gold-deep: #a07d3a;
  --stone: #6f675b;
  --stone-soft: #948b7c;
  --line: #d8c8a8;
  --line-soft: #e8dcbf;

  /* Typo */
  --display: 'Source Serif 4', 'PT Serif', Georgia, serif;
  --serif:   'Source Serif 4', 'PT Serif', Georgia, serif;
  --sans:    'Inter Tight', 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --body:    'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --nav-h: 88px;
  --container: 1320px;
  --container-narrow: 980px;
  --gutter: 24px;
  --rule: 1px solid var(--line);

    --demo-banner-bg: #1a1814;
    --demo-banner-fg: #f6efe0;
    --demo-banner-accent: #c79c5b;
}

/* Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  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(--aubergine); color: var(--paper); }

/* Typo */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.06;
}
h1 { font-size: clamp(3rem, 7.5vw, 6.4rem); font-weight: 400; letter-spacing: -0.022em; }
h2 { font-size: clamp(2.2rem, 4.8vw, 3.8rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--display); }
em {
  font-style: italic;
  color: var(--aubergine);
}
p { margin: 0 0 1em; }
strong { font-weight: 600; }
.serif { font-family: var(--display); }
.italic { font-style: italic; }

/* Editorial: Ausgabe-Header + Marginalia */
.issue-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.issue-head__center { color: var(--stone); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aubergine);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "N°";
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--gold);
  text-transform: none;
  font-weight: 500;
}
.eyebrow--gold { color: var(--gold-deep); }
.eyebrow--stone { color: var(--stone); }
.eyebrow--paper { color: var(--paper); }
.eyebrow--paper::before { color: var(--gold); }

.dropcap::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 4.4em;
  float: left;
  line-height: 0.86;
  padding: 0.08em 0.12em 0 0;
  color: var(--aubergine);
}

.pull-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.28;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.pull-quote em { color: var(--aubergine); }
.pull-quote--gold em { color: var(--gold-deep); }

.rule { border: 0; border-top: 1.5px solid var(--ink); margin: 32px 0; }
.rule--hair { border-top: 1px solid var(--line); }

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

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section--paper { background: var(--paper); }
.section--cream { background: var(--paper-soft); }
.section--deep { background: var(--paper-deep); }
.section--aubergine {
  background: var(--aubergine);
  color: var(--paper-soft);
}
.section--aubergine h1, .section--aubergine h2, .section--aubergine h3 { color: var(--paper); }
.section--aubergine em { color: var(--gold-soft); }
.section--aubergine .eyebrow { color: var(--gold-soft); }
.section--aubergine .eyebrow::before { color: var(--paper); }
.section--ink {
  background: var(--ink);
  color: var(--paper-soft);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink em { color: var(--gold-soft); }

.section__head {
  max-width: 760px;
  margin: 0 0 64px;
}
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head p { color: var(--stone); font-size: 1.08rem; max-width: 580px; margin: 18px 0 0; line-height: 1.6; }
.section__head--center p { margin: 18px auto 0; }
.section--aubergine .section__head p,
.section--ink .section__head p { color: rgba(246, 239, 224, 0.78); }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(246, 239, 224, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1.5px solid var(--ink);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
  text-decoration: none;
  color: var(--ink);
}
.nav__brand-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.95rem;
  color: var(--aubergine);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.nav__brand-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: none;
}
.nav__brand-sub {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--stone);
  text-transform: uppercase;
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--body);
  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(--aubergine); }
.nav__links a[aria-current="page"] { color: var(--aubergine); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1.5px;
  background: var(--aubergine);
}
.nav__cta {
  background: var(--aubergine);
  color: var(--paper);
  padding: 12px 22px;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--aubergine);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 60;
}
.nav__burger span {
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
}
.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(--aubergine);
  color: var(--paper);
  border: 1.5px solid var(--aubergine);
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--ink); border-color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.btn--paper {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.btn--paper:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.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 — Editorial Split */
.hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 90px);
  position: relative;
}
.hero__head {
  margin-bottom: 32px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
  border-top: 1.5px solid var(--ink);
  padding-top: clamp(32px, 4vw, 56px);
}
.hero__copy {
  display: flex;
  flex-direction: column;
}
.hero__copy h1 {
  margin: 0 0 28px;
  font-weight: 400;
  max-width: 14ch;
}
.hero__copy h1 em {
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  color: var(--stone);
  max-width: 480px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero__meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.hero__meta strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0;
}
.hero__meta-cell { color: var(--stone); }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-deep);
  margin: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__caption {
  position: absolute;
  bottom: 18px; left: 18px;
  right: 18px;
  background: rgba(246, 239, 224, 0.96);
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.4;
}
.hero__caption strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--aubergine);
  margin-bottom: 2px;
}

/* USP — Numbered Editorial Block */
.usp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.usp__lead {
  position: sticky;
  top: 120px;
  align-self: start;
}
.usp__lead h2 {
  max-width: 12ch;
}
.usp__lead p {
  margin-top: 24px;
  color: var(--stone);
  max-width: 380px;
  line-height: 1.65;
}
.usp__items {
  display: grid;
  gap: 0;
}
.usp__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.usp__item:first-child { border-top: 1.5px solid var(--ink); }
.usp__item-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 0.9;
}
.usp__item h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin: 0 0 12px;
  font-weight: 500;
}
.usp__item h3 em { color: var(--aubergine); font-style: italic; }
.usp__item p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.65;
  max-width: 480px;
}

/* Werkstücke (Beweis-Block) — Magazine Spread */
.pieces {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  row-gap: 56px;
}
.piece {
  display: flex;
  flex-direction: column;
}
.piece__media {
  overflow: hidden;
  margin: 0 0 14px;
  background: var(--paper-deep);
}
.piece__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.piece:hover .piece__media img { transform: scale(1.03); }
.piece__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.piece__meta-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  color: var(--aubergine);
  text-transform: none;
}
.piece__title {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.15;
  margin: 0 0 6px;
  font-weight: 500;
}
.piece__title em { color: var(--aubergine); font-style: italic; }
.piece__desc {
  font-size: 0.94rem;
  color: var(--stone);
  margin: 0;
  line-height: 1.55;
  max-width: 420px;
}
/* Asymmetric column spans */
.piece--feature  { grid-column: span 7; }
.piece--feature .piece__media { aspect-ratio: 4 / 3; }
.piece--feature .piece__title { font-size: clamp(1.6rem, 2.2vw, 2rem); }
.piece--small    { grid-column: span 5; }
.piece--small .piece__media { aspect-ratio: 1 / 1; }
.piece--half     { grid-column: span 6; }
.piece--half .piece__media { aspect-ratio: 4 / 3; }
.piece--third    { grid-column: span 4; }
.piece--third .piece__media { aspect-ratio: 3 / 4; }

/* Leistungen — Editorial 4-column list with marginalia */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
}
.service {
  grid-column: span 6;
  border-top: 1.5px solid var(--ink);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
}
.service__num {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--aubergine);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0 0 14px;
  line-height: 1.08;
  font-weight: 500;
}
.service__title em { color: var(--aubergine); font-style: italic; }
.service__desc {
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.65;
  max-width: 460px;
}
.service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--stone);
}
.service__list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.service__list li:last-child { border-bottom: 0; }
.service__list strong {
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0;
}
.service__link {
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--aubergine);
  border-bottom: 1.5px solid var(--aubergine);
  padding-bottom: 3px;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.service__link:hover { color: var(--ink); border-color: var(--ink); }

/* Material-Streifen (Magazin-Inset) */
.material-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 48px 0;
}
.material-strip__cell {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--paper-deep);
}
.material-strip__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.material-strip__cell::after {
  content: attr(data-label);
  position: absolute;
  top: 12px; left: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Ringkurs-Feature */
.ringkurs {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.ringkurs__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}
.ringkurs__media img { width: 100%; height: 100%; object-fit: cover; }
.ringkurs__body h2 { max-width: 16ch; margin-bottom: 24px; }
.ringkurs__body em { color: var(--gold-soft); font-style: italic; }
.ringkurs__body p {
  color: rgba(246, 239, 224, 0.85);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 16px;
}
.ringkurs__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(246, 239, 224, 0.16);
  border-bottom: 1px solid rgba(246, 239, 224, 0.16);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.ringkurs__facts strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin-bottom: 2px;
  letter-spacing: 0;
}
.ringkurs__facts > div { color: rgba(246, 239, 224, 0.78); }

/* About-Split (Werkstatt + Inhaberin) */
.about-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
}
.about-split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: var(--paper-deep);
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-split__body p { color: var(--ink-soft); margin: 0 0 16px; line-height: 1.7; }
.about-split__quote {
  grid-column: span 2;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.28;
  color: var(--ink);
  margin: 0 0 24px;
  font-weight: 400;
  max-width: 760px;
}
.about-split__quote em { color: var(--aubergine); }
.about-split__sig {
  grid-column: span 2;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--stone);
}
.about-split__sig strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card { display: flex; flex-direction: column; }
.team-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 16px;
  background: var(--paper-deep);
}
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card__media img { transform: scale(1.04); }
.team-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0 0 4px;
  font-weight: 500;
}
.team-card__role {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--aubergine);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.team-card__bio { color: var(--stone); font-size: 0.94rem; margin: 0; line-height: 1.55; }

/* Timeline */
.timeline {
  border-top: 1.5px solid var(--ink);
  max-width: 900px;
  margin: 0 auto;
}
.timeline__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline__year {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 0.95;
  font-weight: 500;
}
.timeline__body h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 500;
}
.timeline__body h3 em { color: var(--aubergine); font-style: italic; }
.timeline__body p { color: var(--stone); margin: 0; line-height: 1.65; max-width: 560px; }

/* 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: 26px 60px 26px 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  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-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--aubergine);
  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 24px;
  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 */
.jobs { border-top: 1.5px solid var(--ink); }
.job {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 160px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.job h3 { font-family: var(--display); font-size: 1.45rem; margin-bottom: 6px; font-weight: 500; }
.job h3 em { font-style: italic; color: var(--aubergine); }
.job__tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.job__tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: var(--paper-deep);
  color: var(--ink);
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.job__cell {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}
.job__cell strong { display: block; color: var(--ink); font-family: var(--display); font-style: italic; font-size: 1.05rem; font-weight: 400; margin-bottom: 2px; letter-spacing: 0; }
.job__apply { display: flex; justify-content: flex-end; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1.5px solid var(--ink);
  padding-top: 32px;
  margin-bottom: 64px;
}
.contact-card { display: flex; flex-direction: column; }
.contact-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--aubergine);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.contact-card__value {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
}
.contact-card__value a { text-decoration: none; }
.contact-card__value a:hover { color: var(--aubergine); }
.contact-card__sub {
  display: block;
  margin-top: 14px;
  font-family: var(--body);
  font-size: 0.94rem;
  color: var(--stone);
  line-height: 1.6;
}

/* Hours */
.hours {
  display: grid; gap: 0;
  font-family: var(--body);
  max-width: 420px;
  border-top: 1px solid var(--line);
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.hours__day { color: var(--ink); font-weight: 500; font-family: var(--mono); font-size: 0.86rem; letter-spacing: 0.04em; }
.hours__row--closed { color: var(--stone); font-style: italic; }

/* Form */
.form {
  background: var(--paper-soft);
  padding: clamp(36px, 4vw, 52px);
  border: 1.5px solid var(--ink);
  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(--aubergine);
  font-weight: 500;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  transition: background 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  background: var(--paper-deep);
}
.form__field textarea { resize: vertical; min-height: 130px; }
.form__radios { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.form__radios label {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: normal;
  font-size: 0.92rem;
  text-transform: none;
  font-weight: 400;
  color: var(--ink);
  font-family: var(--body);
}
.form__radios input { accent-color: var(--aubergine); }
.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(--aubergine); }
.form__submit { width: 100%; justify-content: center; }
.form__status {
  display: none;
  background: var(--paper-deep);
  border-left: 3px solid var(--aubergine);
  padding: 14px 18px;
  color: var(--ink);
  margin-bottom: 16px;
  font-size: 0.94rem;
}

/* Map */
.map {
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1.5px solid var(--ink);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold-soft) 0%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(26, 24, 20, 0.06) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(26, 24, 20, 0.06) 48px 49px),
    var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__pin {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--aubergine);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 1.5px var(--aubergine);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1.5px solid var(--aubergine);
  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(246, 239, 224, 0.72);
  padding: 80px 0 28px;
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(246, 239, 224, 0.16);
}
.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--display);
}
.footer__brand-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.footer__brand-name {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--paper);
  font-weight: 500;
}
.footer__about { font-size: 0.96rem; line-height: 1.7; max-width: 340px; margin-bottom: 22px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 22px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: rgba(246, 239, 224, 0.72);
  font-size: 0.96rem;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 239, 224, 0.08);
  color: var(--gold-soft);
  padding: 6px 12px;
  border: 1px solid rgba(246, 239, 224, 0.18);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 14px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: rgba(246, 239, 224, 0.5);
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(246, 239, 224, 0.68);
  text-decoration: none;
  margin-left: 18px;
}
.footer__legal a:hover { color: var(--gold-soft); }

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

/* Page hero (subpages) */
.page-hero {
  padding: clamp(72px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
  background: var(--paper-deep);
  border-bottom: 1.5px solid var(--ink);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-end;
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aubergine);
  margin-bottom: 22px;
  font-weight: 500;
}
.page-hero__crumbs a { color: var(--stone); text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--aubergine); }
.page-hero h1 { margin: 0; max-width: 700px; font-weight: 400; }
.page-hero h1 em { font-style: italic; color: var(--aubergine); }
.page-hero p { color: var(--stone); max-width: 480px; font-size: 1.08rem; margin: 0; line-height: 1.6; }

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 460px;
  background: var(--ink);
  color: var(--paper);
  padding: 24px 26px;
  z-index: 200;
  display: none;
  border-top: 3px solid var(--gold);
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--paper);
  margin: 0 0 8px;
  font-weight: 500;
}
.cookie p {
  font-size: 0.94rem;
  margin: 0 0 16px;
  color: rgba(246, 239, 224, 0.78);
  line-height: 1.55;
}
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; font-size: 0.86rem; }

/* Responsive */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pieces { gap: 20px; row-gap: 40px; }
  .piece--feature, .piece--small, .piece--half, .piece--third { grid-column: span 12; }
}
@media (max-width: 880px) {
  :root { --nav-h: 70px; }
  .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;
  }
  .nav__links a { font-size: 1.5rem; font-family: var(--display); }
  body.menu-open .nav__links { transform: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr; }
  .usp, .ringkurs, .about-split, .page-hero__inner { grid-template-columns: 1fr; }
  .usp__lead { position: static; }
  .about-split__body { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .material-strip { grid-template-columns: 1fr 1fr; }
  .timeline__row { grid-template-columns: 80px 1fr; gap: 18px; }
  .timeline__year { font-size: 1.8rem; }
  .job { grid-template-columns: 1fr; }
  .issue-head { font-size: 0.66rem; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .material-strip { grid-template-columns: 1fr; }
}
