/* ============================================================
   Jott Events – Landingpage · Revisionsrunde Briefing v2
   Farben und Typografie gemäß Brand Sheet (assets/brand-sheet.png)
   ============================================================ */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "DM Serif Display";
  src: url("fonts/DMSerifDisplay-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("fonts/DMSerifDisplay-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* Body-Font: Outfit statt Inter (bewusste Abweichung vom Brand Sheet,
   K14-Regel "keine Default-Schriften" – greift die runden Letterformen
   des "events"-Schriftzugs im Logo auf. Mit Julia abstimmen. */
@font-face {
  font-family: "Outfit";
  src: url("fonts/Outfit-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Variablen ---------- */
:root {
  --bg: #f5f3ef;          /* Warm White */
  --ink: #2b2b2b;         /* Dark Anthracite */
  --sand: #d7c3aa;        /* Muted Sand */
  --bronze: #b07a4f;      /* Warm Bronze – sehr sparsam */
  --sand-soft: #ece5da;   /* abgeleitet: sehr helle Sand-Tönung */
  --ink-soft: #55524d;    /* abgeleitet: gedämpfter Fließtext */
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
  --maxw: 1240px;         /* Briefing v2: ca. 1200–1280px */
}

/* ---------- Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth-Scroll nur bei Interaktion (Nav-Klick), nicht beim Laden mit Anker –
   sonst springt die Seite beim Deep-Link sichtbar durch alle Sektionen */
html:focus-within {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1em;
}

/* Erkennungselement: der Bronze-Schlusspunkt am Ende der Headlines
   (abgeleitet aus dem Leitsatz). NICHT an der Wortmarke (Logo-Regel v2). */
.dot {
  color: var(--bronze);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid var(--sand);
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: #fff;
}

/* ---------- Bild-Harmonisierung ----------
   Seit 08/2026 liegen finale Profi-Fotos vor: nur noch ein Hauch
   Entsättigung für Ruhe im Gesamtbild, das Grading der Fotografen bleibt. */
.work-media img,
.julia-portrait img,
.gallery img {
  filter: saturate(0.92) contrast(0.98);
}

/* ---------- Scroll-Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal,
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible,
  .reveal-stagger.visible > * {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.48s; }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.6s; }

  @keyframes hero-rise {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
  }

  .hero .eyebrow,
  .hero .hero-statement,
  .hero .hero-sub,
  .hero .btn {
    animation: hero-rise 0.8s ease both;
  }

  .hero .hero-statement { animation-delay: 0.15s; }
  .hero .hero-sub       { animation-delay: 0.3s; }
  .hero .btn            { animation-delay: 0.45s; }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(245, 243, 239, 0.94);
  backdrop-filter: blur(6px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(43, 43, 43, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.brand-jott {
  letter-spacing: 0.3em;
  font-weight: 500;
  color: var(--ink);
}

.brand-events {
  letter-spacing: 0.06em;
  font-weight: 300;
  color: var(--bronze);
}

.site-nav {
  display: flex;
  gap: 38px;
}

.site-nav a {
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  border-color: var(--bronze);
  color: var(--bronze);
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 24px;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Nav-Variante Dunkel (body.nav-dunkel) ----------
   nav-hell ist der Default (Warm White, Anthrazit-Text, Regeln oben).
   Helle Wortmarke: JOTT in Warm White, events in Sand (Kontrast ~8:1,
   Bronze wäre auf Anthrazit zu schwach). */
body.nav-dunkel .site-header {
  background: rgba(43, 43, 43, 0.96);
}

body.nav-dunkel .site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

body.nav-dunkel .brand-jott {
  color: var(--bg);
}

body.nav-dunkel .brand-events {
  color: var(--sand);
}

body.nav-dunkel .site-nav a {
  color: var(--bg);
}

body.nav-dunkel .site-nav a:hover {
  color: var(--sand);
  border-color: var(--sand);
}

body.nav-dunkel .nav-toggle span {
  background: var(--bg);
}

/* ---------- 1. Hero: Video als Hintergrund, volle Breite ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Hochformat-Quelle: Ausschnitt auf die Personengruppe legen */
  object-position: 50% 45%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(30, 27, 24, 0.6), rgba(30, 27, 24, 0.68));
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 90px;
}

.hero .eyebrow {
  color: var(--sand);
}

/* SEO: die H1 ist die Eyebrow (Keyword), das Statement bleibt visuell die Headline */
.hero h1.eyebrow {
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.65;
  margin: 0 0 1.1em;
}

.hero-statement {
  font-family: var(--serif);
  line-height: 1.15;
  /* Minimum 2.2rem, damit die Headline mobil dreizeilig bleibt (Feedback 09/2026) */
  font-size: clamp(2.2rem, 6.2vw, 4.8rem);
  max-width: 12em;
  margin: 0 0 0.35em;
}

.hero .hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  max-width: 34em;
  margin-bottom: 2.4em;
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Sektionen allgemein ---------- */
.section {
  padding: 110px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

.section-head p {
  color: var(--ink-soft);
}

/* ---------- 2. Warum: Statement + typografische Liste ---------- */
/* Icon-Grid aus v1 (Julia-Entscheid) */
.pains {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 0;
}

.pain {
  text-align: center;
  /* Abstand als Innenabstand, damit der Text mittig zwischen den Linien sitzt */
  padding: 0 32px;
}

.pain + .pain {
  border-left: 1px solid rgba(43, 43, 43, 0.1);
}

.pain svg {
  width: 40px;
  height: 40px;
  stroke: var(--bronze);
  margin-bottom: 18px;
}

.pain h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

.pain p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- 3. Leistungen: Wechsellayout ---------- */
.section-leistungen {
  background: #fff;
}

.work {
  display: grid;
  gap: 40px;
}

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.work-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Platzhalter-Fläche, bis ein Foto vorliegt (z. B. Ostalbbar) */
.work-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-soft);
  color: var(--ink-soft);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-row.reverse .work-media {
  order: 2;
}

.work-text h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 0.4em;
}

.work-text p {
  color: var(--ink-soft);
  max-width: 30em;
  margin: 0;
}

/* ---------- 4. Testimonials (dunkle Sektion) ---------- */
.section-testimonials {
  background: var(--ink);
  color: #fff;
}

.section-testimonials .eyebrow {
  color: var(--sand);
}

.section-testimonials .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials {
  display: grid;
  /* Vier Einträge im 2x2-Raster – Karten breiter, Videos größer */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
}

.t-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sand);
  overflow: hidden;
}

/* PLATZHALTER-Poster aus Eventfotos; echte Video-Standbilder folgen */
.t-poster-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) sepia(0.12) brightness(0.82);
}

.t-poster {
  position: absolute;
  inset: 0;
  display: flex;
  /* Label unten, damit der Play-Button es nicht überdeckt */
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 18px;
  text-align: center;
  /* Verlauf von unten für Lesbarkeit auf dem Foto */
  background: linear-gradient(rgba(30, 27, 24, 0) 55%, rgba(30, 27, 24, 0.55));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.t-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: rgba(43, 43, 43, 0.88);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.t-play:hover {
  background: var(--bronze);
  transform: translate(-50%, -50%) scale(1.06);
}

.t-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.t-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.t-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Kundenlogos: einheitlich weiß, alle im gleichen Rahmen (max 34x96) */
.t-logo {
  width: auto;
  height: auto;
  max-height: 34px;
  max-width: 96px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

/* Platzhalter-Chip, bis die Logo-Datei vorliegt */
.t-logo-chip {
  flex-shrink: 0;
  font-size: 0.7188rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px 12px;
}

.t-name {
  font-family: var(--sans);
  font-size: 1.0313rem;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.t-name span {
  display: block;
  font-weight: 400;
  font-size: 0.8438rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.95);
}

.t-transcript {
  margin-bottom: 18px;
}

.t-transcript summary {
  list-style: none;
  cursor: pointer;
  font-size: 0.8438rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block;
  padding-bottom: 2px;
}

.t-transcript summary::-webkit-details-marker {
  display: none;
}

.t-transcript summary:hover {
  color: var(--sand);
  border-color: var(--sand);
}

.t-transcript p {
  margin: 12px 0 0;
  font-size: 0.9063rem;
  color: rgba(255, 255, 255, 0.7);
}

.t-result {
  margin: auto 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8438rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* Medien-Zustände je Karte (Briefing v2.1), per Klasse am article umschaltbar:
   .media-video = 16:9-Video/Poster mit Play (Standard)
   .media-foto  = 16:9-Foto, kein Play-Button, kein Label
   .media-zitat = kein Medienslot, Zitat rückt hoch und wird größer */
.testimonial.media-foto .t-play,
.testimonial.media-foto .t-poster {
  display: none;
}

.testimonial.media-zitat .t-video {
  display: none;
}

.testimonial.media-zitat .t-body {
  padding-top: 34px;
}

.testimonial.media-zitat blockquote {
  font-size: 1.7rem;
  line-height: 1.3;
}



/* Echte Testimonial-Videos im 16:9-Slot */
.t-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

/* Sobald ein Video läuft, verschwindet der Play-Button */
.t-video.playing .t-play {
  display: none;
}

/* Verlinkte Firmen-/Formatzeile in der Namenszeile */
.t-name span a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.t-name span a:hover {
  color: var(--sand);
  text-decoration: underline;
}

/* ---------- 5. Über Julia: großes, angeschnittenes Portrait ---------- */
.section-julia {
  background: var(--bg);
  padding: 110px 0;
  overflow: hidden;
}

.julia-layout {
  display: grid;
  /* Portrait deutlich über 50% der Sektionsbreite (Briefing v2) */
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

/* Portrait läuft links aus dem Raster (asymmetrischer Anschnitt) */
.julia-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 38%;
}

.julia-text {
  padding-right: 48px;
  max-width: 600px;
}

.julia-text h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 1em;
}

.argument {
  margin-bottom: 1.5em;
}

.argument h3 {
  font-family: var(--sans);
  font-size: 1.0313rem;
  font-weight: 600;
  margin-bottom: 0.25em;
}

.argument p {
  font-size: 0.9688rem;
  color: var(--ink-soft);
  margin: 0;
}

.signature {
  margin-top: 2.2em;
}

.signature .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--bronze);
}

.signature .role {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---------- 6. FAQ (helle Sand-Tönung als Hintergrundwechsel) ---------- */
.section-faq {
  background: var(--sand-soft);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq {
  border-bottom: 1px solid rgba(43, 43, 43, 0.14);
}

.faq:first-child {
  border-top: 1px solid rgba(43, 43, 43, 0.14);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 4px;
  font-weight: 500;
  font-size: 1.0313rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bronze);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  padding: 0 4px 24px;
  margin: 0;
  max-width: 42em;
  font-size: 0.9688rem;
  color: var(--ink-soft);
}

/* ---------- 7. CTA ---------- */
.section-cta {
  background: var(--sand);
  text-align: center;
  padding: 120px 0;
}

.section-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18em;
  margin: 0 auto 0.5em;
}

.section-cta p {
  max-width: 36em;
  margin: 0 auto 2.2em;
  color: rgba(43, 43, 43, 0.85);
}

.section-cta .btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.section-cta .btn:hover {
  background: #000;
  border-color: #000;
}

.google-note {
  margin-top: 34px;
}

.google-note a {
  font-size: 0.8438rem;
  color: rgba(43, 43, 43, 0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.google-note a:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* ---------- 8. Galerie mit Lightbox ---------- */
.section-galerie {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery button {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery button:hover img {
  transform: scale(1.04);
  filter: saturate(0.9) sepia(0.06);
}

.insta-follow {
  text-align: center;
  margin: 40px 0 0;
}

.insta-follow a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.insta-follow a:hover {
  color: var(--bronze);
  border-color: var(--bronze);
}

.insta-follow svg {
  width: 18px;
  height: 18px;
}

/* Lightbox-Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(22, 20, 17, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.lightbox-close:hover {
  color: var(--sand);
}

/* ---------- 9. Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 36px;
  font-size: 0.9063rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

/* Wortmarke als Text – KEIN Punkt (Logo-Regel Briefing v2) */
.footer-brand .wordmark {
  font-family: var(--sans);
  font-size: 1.5rem;
  letter-spacing: 0.34em;
  color: #fff;
  font-weight: 400;
}

.footer-brand .wordmark span {
  color: var(--sand);
  letter-spacing: 0.1em;
  font-weight: 300;
  text-transform: lowercase;
}

.footer-brand p {
  max-width: 26em;
  margin-top: 1.2em;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 1.2em;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.65em;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal {
  max-width: 720px;
}

.legal .brand {
  display: inline-block;
  margin-bottom: 40px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.8em;
}

.legal h2 {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 2em 0 0.5em;
}

.legal h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 1.6em 0 0.4em;
}

.legal {
  /* Lange Rechtsbegriffe und URLs duerfen umbrechen (mobil) */
  overflow-wrap: break-word;
}

.legal a {
  overflow-wrap: anywhere;
}

.legal p,
.legal li {
  font-size: 0.9688rem;
  color: var(--ink-soft);
}

.legal a {
  color: var(--ink);
}

.legal ul {
  padding-left: 1.2em;
  margin: 0 0 1em;
}

.legal-back {
  margin-top: 3em;
}

.legal-back a {
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section {
    padding: 84px 0;
  }

  .hero .wrap {
    padding-top: 130px;
    padding-bottom: 72px;
  }

  .pains {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain + .pain {
    border-left: 0;
  }

  .work {
    gap: 56px;
  }

  .work-row,
  .work-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-row.reverse .work-media {
    order: 0;
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .section-julia {
    padding: 84px 0;
  }

  .julia-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .julia-portrait img {
    min-height: 0;
    max-height: 520px;
    object-position: 60% 15%;
  }

  .julia-text {
    padding: 0 24px;
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid rgba(43, 43, 43, 0.08);
    box-shadow: 0 12px 24px rgba(43, 43, 43, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.open {
    max-height: 320px;
  }

  .site-nav a {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(43, 43, 43, 0.06);
  }

  .pains {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Mobile-Dropdown der dunklen Nav-Variante */
  body.nav-dunkel .site-nav {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.nav-dunkel .site-nav a {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Briefing v2: Impressum/Datenschutz auf Mobile zentriert */
  .footer-legal {
    text-align: center;
  }
}
