/* ============================================================
 * FELDLINIE — Studio für Marke & Magazin · Musterort
 * ============================================================
 * Verspielt & Kreativ — warmes Cremepapier, kräftiges Kobalt,
 * Tomato-Akzent, große Display-Serif, asymmetrische Layouts,
 * Mono-Marginalien wie im Lektorat.
 */

:root {
  /* Farben */
  --paper: #f5ecd9;
  --paper-deep: #ede1c4;
  --paper-soft: #faf3e3;
  --ink: #1a1816;
  --ink-soft: #2a2723;
  --cobalt: #1f3dd8;
  --cobalt-deep: #1730aa;
  --tomato: #e25234;
  --tomato-deep: #c33d1f;
  --mustard: #e6b04a;
  --muted: #6b655d;
  --muted-soft: #948d83;
  --line: #d8cda9;
  --line-soft: #e8dec0;

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

  /* Layout */
  --nav-h: 76px;
  --container: 1280px;

    --demo-banner-bg: #1a1816;
    --demo-banner-fg: #f5ecd9;
    --demo-banner-accent: #e25234;
}

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

/* Typo */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.04;
}
h1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
em {
  font-style: italic;
  color: var(--cobalt);
  font-family: var(--display);
}
p { margin: 0 0 1em; }
strong { font-weight: 700; }

.hand {
  font-family: var(--hand);
  color: var(--tomato);
  font-style: normal;
  font-weight: 500;
  font-size: 1.15em;
  letter-spacing: 0;
  display: inline-block;
  transform: rotate(-2deg);
}
.hand--cobalt { color: var(--cobalt); }
.hand--mustard { color: var(--mustard); }

.margin-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.margin-note::before {
  content: "§";
  color: var(--tomato);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
}
.margin-note--cobalt::before { color: var(--cobalt); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}
.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.section--soft { background: var(--paper-soft); }
.section--deep { background: var(--paper-deep); }
.section--cobalt {
  background: var(--cobalt);
  color: var(--paper);
}
.section--cobalt h1, .section--cobalt h2, .section--cobalt h3 { color: var(--paper); }
.section--cobalt em { color: var(--mustard); }
.section--cobalt .hand { color: var(--mustard); }
.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(--tomato); }

.section__head { margin: 0 0 64px; max-width: 820px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head p { color: var(--muted); font-size: 1.08rem; max-width: 580px; margin: 18px 0 0; }
.section__head--center p { margin: 18px auto 0; }
.section--cobalt .section__head p,
.section--ink .section__head p { color: rgba(245, 236, 217, 0.78); }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245, 236, 217, 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: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
}
.nav__brand-name { color: var(--ink); }
.nav__brand-name em { color: var(--cobalt); font-style: italic; font-family: var(--display); }
.nav__brand-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.96rem;
  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(--cobalt); }
.nav__links a[aria-current="page"] { color: var(--tomato); }
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: -4px;
  height: 3px;
  background: var(--tomato);
  transform: skewX(-12deg);
}
.nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav__cta:hover { background: var(--tomato); transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.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;
}
.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: 15px 28px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.btn:hover {
  background: var(--tomato);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--cobalt {
  background: var(--cobalt);
  color: var(--paper);
}
.btn--cobalt:hover { background: var(--ink); box-shadow: 4px 4px 0 var(--cobalt); }
.btn--tomato {
  background: var(--tomato);
  color: var(--paper);
}
.btn--tomato:hover { background: var(--ink); box-shadow: 4px 4px 0 var(--tomato); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 13px 26px;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--tomato);
}
.btn--paper {
  background: var(--paper);
  color: var(--ink);
}
.btn--paper:hover { background: var(--mustard); }
.btn--paper-ghost {
  background: transparent;
  color: var(--paper);
  border: 2px solid var(--paper);
  padding: 13px 26px;
}
.btn--paper-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero */
.hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.hero__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.hero__copy {
  position: relative;
  z-index: 2;
}
.hero__copy h1 {
  margin: 0 0 28px;
  max-width: 18ch;
  font-weight: 400;
}
.hero__copy h1 em {
  font-style: italic;
}
.hero__copy h1 .hand {
  font-size: 0.8em;
  vertical-align: 2%;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.5;
}
.hero__media {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  align-items: flex-end;
}
.hero__media-main {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: 0;
  background: var(--paper-deep);
}
.hero__media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-side {
  display: grid;
  gap: 16px;
}
.hero__media-side-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  position: relative;
  background: var(--paper-deep);
}
.hero__media-side-item img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-side-item--cobalt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cobalt);
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.hero__sticker {
  position: absolute;
  background: var(--tomato);
  color: var(--paper);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  padding: 14px 22px;
  font-size: 1.05rem;
  border-radius: 999px;
  z-index: 3;
  transform: rotate(-6deg);
  bottom: -18px;
  right: 10%;
}

/* Metrics */
.metrics {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.metrics__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.metrics__cell { display: flex; flex-direction: column; gap: 6px; border-left: 1px solid rgba(245, 236, 217, 0.16); padding-left: 24px; }
.metrics__cell:first-child { border-left: 0; padding-left: 0; }
.metrics__num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--mustard);
  line-height: 1;
}
.metrics__label {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: rgba(245, 236, 217, 0.7);
  line-height: 1.4;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  border: 1px solid var(--ink);
}
.service {
  padding: 40px 36px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink);
  margin: -1px;
  transition: background 0.25s ease;
  min-height: 360px;
}
.service:hover { background: var(--paper-soft); }
.service__tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--tomato);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  font-weight: 500;
}
.service__title { margin-bottom: 16px; line-height: 1.08; }
.service__title em { font-style: italic; color: var(--cobalt); }
.service__desc { color: var(--muted); margin: 0 0 26px; line-height: 1.65; flex: 1; max-width: 460px; }
.service__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 6px;
}
.service__list li {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.service__list li::before {
  content: "→";
  color: var(--tomato);
  font-weight: 700;
}
.service__link {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border-bottom: 2px solid var(--tomato);
  padding-bottom: 4px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.service__link:hover { color: var(--cobalt); border-color: var(--cobalt); }

/* Cases (Hauptelement der Seite) */
.cases {
  display: grid;
  gap: 96px;
}
.case {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
}
.case:nth-child(even) { grid-template-columns: 1.4fr 1fr; }
.case:nth-child(even) .case__media { order: -1; }
.case__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  background: var(--paper-deep);
  position: relative;
}
.case__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.case:hover .case__media img { transform: scale(1.03); }
.case__media-num {
  position: absolute;
  bottom: 16px; left: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.case__body { padding-top: 16px; }
.case__tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--tomato);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: inline-flex;
  gap: 12px;
  font-weight: 500;
}
.case__tag span { color: var(--muted-soft); }
.case__title { margin-bottom: 18px; line-height: 1.04; }
.case__title em { font-style: italic; color: var(--cobalt); }
.case__desc { color: var(--ink-soft); margin: 0 0 24px; line-height: 1.65; max-width: 560px; font-size: 1.04rem; }
.case__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px 36px;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.case__meta span { display: block; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }

/* About-Split (Manifesto) */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: flex-start;
}
.about-split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body p { color: var(--ink-soft); margin: 0 0 18px; line-height: 1.7; max-width: 580px; }
.about-split__quote {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 24px;
  max-width: 580px;
  font-weight: 400;
}
.about-split__quote em { color: var(--tomato); }
.about-split__sig {
  display: block;
  margin-top: 32px;
  font-family: var(--hand);
  font-size: 1.8rem;
  color: var(--ink);
}
.about-split__sig-role {
  display: block;
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--cobalt);
  margin-top: 4px;
  font-weight: 500;
}

/* Magazin-Feature */
.magazin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.magazin__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: var(--paper-deep);
}
.magazin__media img { width: 100%; height: 100%; object-fit: cover; }
.magazin__sticker {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--display);
  font-style: italic;
  padding: 18px 24px;
  font-size: 1.05rem;
  z-index: 2;
  transform: rotate(6deg);
  line-height: 1.25;
  text-align: center;
}
.magazin__sticker strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
}
.magazin__body h2 em { color: var(--tomato); }
.magazin__body p { color: var(--paper-soft); margin: 0 0 18px; line-height: 1.7; max-width: 540px; opacity: 0.88; }
.magazin__issues {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 236, 217, 0.18);
  display: grid;
  gap: 10px;
}
.magazin__issue {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 0.88rem;
  color: rgba(245, 236, 217, 0.78);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(245, 236, 217, 0.18);
}
.magazin__issue:last-child { border-bottom: 0; }
.magazin__issue-num { color: var(--mustard); font-weight: 600; }
.magazin__issue-title { color: var(--paper); font-family: var(--display); font-style: italic; font-size: 1.1rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card { display: flex; flex-direction: column; }
.team-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 18px;
  background: var(--paper-deep);
  position: relative;
}
.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-size: 1.45rem; margin: 0 0 4px; }
.team-card__role {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--tomato);
  font-weight: 500;
  margin: 0 0 14px;
}
.team-card__bio { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.55; }

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.journal-item { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.journal-item__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 0 18px;
  background: var(--paper-deep);
}
.journal-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.journal-item:hover .journal-item__media img { transform: scale(1.04); }
.journal-item--featured { grid-row: span 2; }
.journal-item--featured .journal-item__media { aspect-ratio: 4 / 5; }
.journal-item--featured h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.journal-item__meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--cobalt);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-weight: 500;
}
.journal-item h3 { font-size: 1.35rem; margin: 0 0 10px; line-height: 1.15; }
.journal-item:hover h3 { color: var(--cobalt); }
.journal-item p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.55; }

/* Big CTA */
.big-cta {
  background: var(--cobalt);
  color: var(--paper);
  padding: clamp(60px, 8vw, 110px) clamp(32px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 110%, var(--tomato) 0%, transparent 35%);
  opacity: 0.6;
  pointer-events: none;
}
.big-cta > * { position: relative; z-index: 1; }
.big-cta h2 { color: var(--paper); margin-bottom: 16px; max-width: 560px; }
.big-cta em { color: var(--mustard); }
.big-cta p { color: rgba(245, 236, 217, 0.78); max-width: 540px; margin: 0; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; border-top: 2px 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;
  font-style: italic;
}
.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: 2.2rem;
  color: var(--tomato);
  font-weight: 400;
  transition: transform 0.25s ease;
  line-height: 1;
  font-style: normal;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  color: var(--ink-soft);
  padding: 0 0 26px;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq__answer p { margin-bottom: 12px; }
.faq__answer p:last-child { margin-bottom: 0; }

/* Jobs */
.jobs { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.job {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 180px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.job h3 { font-size: 1.45rem; margin-bottom: 6px; font-style: italic; }
.job h3 em { font-style: italic; color: var(--cobalt); }
.job__tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.job__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  background: var(--paper-deep);
  color: var(--ink);
  padding: 4px 10px;
  font-weight: 500;
}
.job__cell {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--muted);
}
.job__cell strong { display: block; color: var(--ink); font-family: var(--display); font-size: 1rem; font-weight: 700; margin-bottom: 2px; font-style: italic; }
.job__apply { display: flex; justify-content: flex-end; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-card {
  background: var(--paper-soft);
  padding: 32px 28px;
  border: 1px solid var(--ink);
}
.contact-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--tomato);
  font-weight: 600;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.contact-card__value {
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.contact-card__value a { text-decoration: none; }
.contact-card__value a:hover { color: var(--cobalt); }
.contact-card__sub {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Form */
.form {
  background: var(--paper-soft);
  padding: clamp(36px, 4vw, 52px);
  border: 1px 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;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  background: var(--paper-soft);
}
.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 14px;
  cursor: pointer;
  letter-spacing: normal;
  font-size: 0.92rem;
  text-transform: none;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--sans);
}
.form__radios input { accent-color: var(--tomato); }
.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 12px 0 20px;
}
.form__consent input { margin-top: 4px; accent-color: var(--tomato); }
.form__submit { width: 100%; justify-content: center; }
.form__status {
  display: none;
  background: var(--paper);
  border-left: 3px solid var(--cobalt);
  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: 1px solid var(--ink);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 50%, var(--mustard) 0%, transparent 30%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(26, 24, 22, 0.06) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(26, 24, 22, 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(--tomato);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--tomato), 0 8px 20px rgba(0,0,0,0.16);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--tomato);
  opacity: 0.4;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* Hours */
.hours { display: grid; gap: 0; font-family: var(--sans); max-width: 420px; }
.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__row:last-child { border-bottom: 0; }
.hours__day { color: var(--ink); font-weight: 600; font-family: var(--mono); font-size: 0.86rem; letter-spacing: 0.04em; }
.hours__row--closed { color: var(--muted-soft); font-style: italic; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(245, 236, 217, 0.68);
  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(245, 236, 217, 0.16);
}
.footer__brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--paper);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 400;
}
.footer__brand em { font-style: italic; color: var(--mustard); }
.footer__about { font-size: 0.96rem; line-height: 1.7; max-width: 360px; margin-bottom: 22px; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mustard);
  margin: 0 0 22px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: rgba(245, 236, 217, 0.72);
  font-size: 0.96rem;
  margin-bottom: 12px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--mustard); }
.footer__memberships {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(245, 236, 217, 0.48);
  margin-top: 14px;
}
.footer__memberships span {
  background: rgba(245, 236, 217, 0.06);
  padding: 4px 10px;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 6px;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.84rem;
  color: rgba(245, 236, 217, 0.5);
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(245, 236, 217, 0.68);
  text-decoration: none;
  margin-left: 18px;
}
.footer__legal a:hover { color: var(--mustard); }

/* 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 (subpages) */
.page-hero {
  padding: clamp(80px, 9vw, 130px) 0 clamp(48px, 6vw, 80px);
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-end;
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--tomato);
  margin-bottom: 20px;
  font-weight: 600;
}
.page-hero__crumbs a { color: var(--cobalt); text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--tomato); }
.page-hero h1 { margin: 0; max-width: 700px; font-weight: 400; }
.page-hero h1 em { font-style: italic; color: var(--cobalt); }
.page-hero p { color: var(--ink-soft); 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-left: 4px solid var(--tomato);
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--paper);
  margin: 0 0 8px;
  font-weight: 400;
}
.cookie p {
  font-size: 0.94rem;
  margin: 0 0 16px;
  color: rgba(245, 236, 217, 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: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-item--featured { grid-row: auto; }
  .journal-item--featured .journal-item__media { aspect-ratio: 4 / 3; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; row-gap: 28px; }
  .metrics__cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .job { grid-template-columns: 1.4fr 1fr 1fr; }
  .job__apply { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 880px) {
  :root { --nav-h: 64px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__brand-sub { display: none; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 36px;
    gap: 16px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav__links a { font-size: 1.5rem; font-family: var(--display); font-style: italic; }
  body.menu-open .nav__links { transform: none; }
  .hero__media { grid-template-columns: 1fr; }
  .hero__sticker { right: 16px; bottom: -16px; }
  .case { grid-template-columns: 1fr; }
  .case:nth-child(even) { grid-template-columns: 1fr; }
  .case:nth-child(even) .case__media { order: 0; }
  .case__meta { grid-template-columns: 1fr 1fr; }
  .services { grid-template-columns: 1fr; }
  .about-split, .magazin { grid-template-columns: 1fr; }
  .magazin__sticker { top: -14px; right: 12px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .big-cta { grid-template-columns: 1fr; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .team-grid, .journal-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .case__meta { grid-template-columns: 1fr; }
}
