/* ==========================================================================
   Kopfkunst Wien — Design-System
   Farbe: warmes Pastell + Terrakotta/Koralle-Akzent, Plum als Avantgarde-Signatur
   Typografie: Bricolage Grotesque (Display) / Instrument Sans (Text) / Space Mono (Utility)
   ========================================================================== */

:root{
  /* Farben */
  --ivory: #FBF3EC;
  --warm-white: #FFFDF9;
  --terracotta: #D9603D;
  --terracotta-dark: #B84E30;
  --peach: #F3B79A;
  --peach-light: #FAD9C6;
  --espresso: #2E211D;
  --espresso-70: rgba(46, 33, 29, .7);
  --espresso-45: rgba(46, 33, 29, .45);
  --plum: #5B2A42;
  --plum-light: #7A3D59;
  --line: rgba(46, 33, 29, .14);

  /* Typografie */
  --font-display: 'Bricolage Grotesque', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --fs-100: 0.8125rem;
  --fs-200: 0.9375rem;
  --fs-300: 1rem;
  --fs-400: 1.15rem;
  --fs-500: clamp(1.4rem, 1.2rem + 0.8vw, 1.75rem);
  --fs-600: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
  --fs-700: clamp(2.6rem, 1.9rem + 2.8vw, 3.8rem);
  --fs-800: clamp(3.2rem, 2rem + 5vw, 5.5rem);

  /* Abstand */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1.1rem;
  --space-md: 1.75rem;
  --space-lg: 2.75rem;
  --space-xl: 4.5rem;
  --space-2xl: 6.5rem;

  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 999px;

  --shadow-soft: 0 20px 45px -25px rgba(46, 33, 29, .35);
  --shadow-lift: 0 30px 60px -20px rgba(91, 42, 66, .35);

  --ease: cubic-bezier(.25,.8,.35,1);
  --dur: .5s;

  --max-w: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
body{
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: var(--fs-300);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4{ font-family: var(--font-display); margin: 0; line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; }
p{ margin: 0; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea{ font: inherit; color: inherit; }

:focus-visible{
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section{ padding-block: var(--space-2xl); }
.section--tight{ padding-block: var(--space-xl); }
.section--alt{ background: var(--warm-white); }
.section--dark{ background: var(--espresso); color: var(--ivory); }

.eyebrow{
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--terracotta-dark);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: var(--space-sm);
}
.eyebrow::before{
  content: "";
  width: 1.6em;
  height: 2px;
  background: currentColor;
  display: inline-block;
}
.section--dark .eyebrow{ color: var(--peach); }

.lede{
  font-size: var(--fs-400);
  color: var(--espresso-70);
  max-width: 46ch;
}
.section--dark .lede{ color: rgba(251,243,236,.75); }

/* ---------- Signature squiggle ---------- */
.squiggle{
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  color: var(--plum);
  margin-block: var(--space-2xs) 0;
}
.squiggle path{
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.reveal.is-visible .squiggle path,
.squiggle.is-visible path{ stroke-dashoffset: 0; }

.underline-accent{ position: relative; white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.7em;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-300);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  min-height: 44px;
}
.btn--primary{
  background: var(--terracotta);
  color: var(--warm-white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover{ background: var(--terracotta-dark); transform: translateY(-2px); }
.btn--ghost{
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn--ghost:hover{ background: var(--espresso); color: var(--ivory); }
.section--dark .btn--ghost{ border-color: var(--ivory); color: var(--ivory); }
.section--dark .btn--ghost:hover{ background: var(--ivory); color: var(--espresso); }
.btn--on-dark{ background: var(--peach); color: var(--espresso); }
.btn--on-dark:hover{ background: var(--warm-white); transform: translateY(-2px); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 236, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-xs);
}
.logo{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.logo-mark{ width: 34px; height: 34px; color: var(--terracotta); flex-shrink: 0; }
.logo-sub{
  font-family: var(--font-mono);
  font-size: .55em;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--espresso-45);
  font-weight: 400;
  display: block;
}

.nav-list{
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-list a{
  font-size: var(--fs-200);
  font-weight: 600;
  position: relative;
  padding-block: .3em;
}
.nav-list a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--terracotta);
  transition: right .3s var(--ease);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after{ right: 0; }
.nav-list a[aria-current="page"]{ color: var(--terracotta-dark); }

.header-cta{ display: flex; align-items: center; gap: var(--space-md); }
.header-cta .btn{ padding: .7em 1.4em; font-size: var(--fs-200); }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--espresso);
  position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before{ position: absolute; top: -7px; }
.nav-toggle span::after{ position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top: 0; transform: rotate(-45deg); }

.nav-cta{ display: none; }

@media (max-width: 860px){
  .nav-toggle{ display: inline-flex; }
  .nav-list{
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 340px);
    height: 100dvh;
    background: var(--espresso);
    color: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav-list.is-open{ transform: translateX(0); }
  .nav-list a{ font-size: var(--fs-500); font-family: var(--font-display); }
  .nav-list a::after{ background: var(--peach); }
  .nav-list a.btn{ font-family: var(--font-body); font-size: var(--fs-300); font-weight: 600; }
  .nav-list a.btn::after{ display: none; }
  .header-cta{ display: none; }
  .nav-cta{
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    margin-top: var(--space-md);
  }
  .nav-cta .btn{ width: 100%; justify-content: center; }
  .nav-cta .btn--ghost{ border-color: var(--ivory); color: var(--ivory); }
  .nav-cta .btn--ghost:hover{ background: var(--ivory); color: var(--espresso); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  padding-block: var(--space-xl) var(--space-2xl);
  overflow: hidden;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-title{
  font-size: var(--fs-800);
  margin-block: var(--space-sm) var(--space-md);
}
.hero-title em{
  font-style: italic;
  color: var(--terracotta);
  display: inline-block;
  transform: rotate(-3deg);
}
.hero-actions{
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.hero-meta{
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}
.hero-meta div{ font-family: var(--font-mono); font-size: var(--fs-100); color: var(--espresso-70); }
.hero-meta strong{ display: block; font-family: var(--font-display); font-size: var(--fs-500); color: var(--espresso); font-weight: 700; }

.hero-visual{ position: relative; }
.hero-blob{
  position: absolute;
  inset: -12% -10%;
  background: var(--peach);
  border-radius: 42% 58% 63% 37% / 41% 45% 55% 59%;
  z-index: 0;
  animation: blob-morph 14s ease-in-out infinite;
}
@keyframes blob-morph{
  0%, 100%{ border-radius: 42% 58% 63% 37% / 41% 45% 55% 59%; }
  50%{ border-radius: 58% 42% 39% 61% / 55% 60% 40% 45%; }
}
@media (prefers-reduced-motion: reduce){ .hero-blob{ animation: none; } }

.placeholder-frame{
  position: relative;
  z-index: 1;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xs);
  box-shadow: var(--shadow-lift);
  transform: rotate(2deg);
}
.placeholder-frame__inner{
  aspect-ratio: 4 / 5;
  border: 2px dashed var(--peach);
  border-radius: calc(var(--radius-md) - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  text-align: center;
  color: var(--espresso-45);
  background: repeating-linear-gradient(135deg, rgba(217,96,61,.05) 0 12px, transparent 12px 24px);
}
.placeholder-frame__inner svg{ width: 34px; height: 34px; color: var(--terracotta); }
.placeholder-frame__inner span{ font-family: var(--font-mono); font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .08em; }
.placeholder-frame figcaption{
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  text-align: center;
  color: var(--espresso-45);
  padding-block: .6rem .3rem;
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ max-width: 380px; margin-inline: auto; order: -1; }
}

/* ==========================================================================
   Feature teaser cards (Startseite)
   ========================================================================== */
.teaser-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.teaser-card{
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.teaser-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.teaser-card .num{
  font-family: var(--font-mono);
  color: var(--terracotta);
  font-size: var(--fs-200);
}
.teaser-card h3{ font-size: var(--fs-500); margin-block: var(--space-xs) var(--space-2xs); }
.teaser-card p{ color: var(--espresso-70); font-size: var(--fs-200); }

@media (max-width: 860px){ .teaser-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.section-head h2{ font-size: var(--fs-700); }

/* ==========================================================================
   Preisliste (leistungen.html) — Galerie-Etiketten-Optik
   ========================================================================== */
.price-groups{
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.price-group-label{
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--espresso-45);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--space-2xs);
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: space-between;
}
.price-list{ display: flex; flex-direction: column; }
.price-row{
  display: flex;
  align-items: baseline;
  gap: .5em;
  padding-block: var(--space-sm);
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child{ border-bottom: none; }
.price-name{ font-family: var(--font-display); font-weight: 700; font-size: var(--fs-400); }
.price-desc{ display: block; font-size: var(--fs-200); color: var(--espresso-70); margin-top: .2em; font-weight: 400; font-family: var(--font-body); }
.price-leader{
  flex: 1;
  border-bottom: 2px dotted var(--espresso-45);
  transform: translateY(-.4em);
  min-width: 2rem;
}
.price-value{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--fs-400);
  color: var(--terracotta-dark);
  white-space: nowrap;
}
.price-note{
  margin-top: var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  color: var(--espresso-45);
}

@media (max-width: 640px){
  .price-row{ flex-wrap: wrap; }
  .price-leader{ display: none; }
}

/* ==========================================================================
   Fähigkeiten (Skill-Chips)
   ========================================================================== */
.skill-chips{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: var(--space-md);
}
.skill-chip{
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  padding: .6em 1.1em;
  border-radius: var(--radius-full);
  background: var(--warm-white);
  border: 1px solid var(--line);
  color: var(--espresso-70);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.skill-chip:hover{ background: var(--plum); color: var(--ivory); border-color: var(--plum); }

/* ==========================================================================
   Über uns — Editorial-Story + Dropcap
   ========================================================================== */
.story-layout{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}
.story-copy p{ margin-bottom: var(--space-md); color: var(--espresso-70); }
.story-copy p:first-of-type::first-letter{
  font-family: var(--font-display);
  font-size: 4.2rem;
  float: left;
  line-height: .8;
  padding: .1em .12em 0 0;
  color: var(--terracotta);
  font-weight: 700;
}
.story-sticky{ position: sticky; top: 6.5rem; }

@media (max-width: 900px){
  .story-layout{ grid-template-columns: 1fr; }
  .story-sticky{ position: static; order: -1; }
}

/* ==========================================================================
   Galerie — Platzhalter-Raster
   ========================================================================== */
.gallery-grid{
  columns: 3 260px;
  column-gap: var(--space-md);
}
.gallery-item{
  break-inside: avoid;
  margin-bottom: var(--space-md);
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px dashed var(--peach);
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xs);
  text-align: center;
  color: var(--espresso-45);
  padding: var(--space-md);
}
.gallery-item svg{ width: 30px; height: 30px; color: var(--terracotta); }
.gallery-item span{ font-family: var(--font-mono); font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .06em; }
.gallery-item::after{
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 0 0;
  background: var(--plum);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.gallery-item:hover::after{ width: 34px; height: 34px; }
.gallery-item--tall{ min-height: 380px; }
.gallery-item--med{ min-height: 280px; }
.gallery-item--short{ min-height: 190px; }

@media (max-width: 640px){ .gallery-grid{ columns: 1 100%; } }

/* ==========================================================================
   Bewertungen
   ========================================================================== */
.review-scroller{
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: var(--space-2xs) var(--space-md);
  margin-inline: calc(var(--space-md) * -1);
  padding-inline: var(--space-md);
  scrollbar-width: thin;
}
.review-card{
  scroll-snap-align: start;
  flex: 0 0 min(360px, 84vw);
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--line);
  position: relative;
}
.review-quote-mark{ width: 46px; height: 30px; color: var(--plum); margin-bottom: var(--space-xs); }
.review-stars{ display: flex; gap: .3rem; margin-bottom: var(--space-sm); }
.review-stars svg{ width: 18px; height: 18px; color: var(--terracotta); }
.review-text{ font-size: var(--fs-400); color: var(--espresso); margin-bottom: var(--space-md); }
.review-author{ font-family: var(--font-mono); font-size: var(--fs-100); color: var(--espresso-45); text-transform: uppercase; letter-spacing: .06em; }
.review-author strong{ display: block; font-family: var(--font-display); text-transform: none; letter-spacing: 0; font-size: var(--fs-300); color: var(--espresso); font-weight: 700; margin-bottom: .15em; }

.review-controls{ display: flex; gap: var(--space-2xs); margin-top: var(--space-md); }
.review-controls button{
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.review-controls button:hover{ background: var(--espresso); color: var(--ivory); }
.review-controls svg{ width: 18px; height: 18px; }

.review-summary{
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.review-summary .score{ font-family: var(--font-display); font-size: var(--fs-700); color: var(--terracotta); }
.review-summary .score-meta{ font-family: var(--font-mono); font-size: var(--fs-100); color: var(--espresso-70); }

/* ==========================================================================
   Kontakt / Anfahrt
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.info-list{ display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.info-row{ display: flex; gap: var(--space-sm); align-items: flex-start; }
.info-row svg{ width: 22px; height: 22px; color: var(--terracotta); flex-shrink: 0; margin-top: .2em; }
.info-row strong{ display: block; font-family: var(--font-display); font-size: var(--fs-400); margin-bottom: .1em; }
.info-row span, .info-row a{ color: var(--espresso-70); font-size: var(--fs-200); }
.info-row a:hover{ color: var(--terracotta-dark); }

.map-panel{
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--peach-light), var(--peach) 60%, var(--terracotta));
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}
.map-panel::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,33,29,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,33,29,.14) 1px, transparent 1px);
  background-size: 46px 46px;
}
.map-pin{
  position: absolute;
  top: 42%; left: 46%;
  width: 46px; height: 46px;
  color: var(--espresso);
  filter: drop-shadow(0 8px 10px rgba(46,33,29,.35));
}
.map-panel__label{
  position: relative;
  background: var(--warm-white);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  color: var(--espresso-70);
  max-width: 320px;
}

.form-grid{ display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
.field{ display: flex; flex-direction: column; gap: .5rem; }
.field label{ font-family: var(--font-mono); font-size: var(--fs-100); text-transform: uppercase; letter-spacing: .06em; color: var(--espresso-70); }
.field input, .field textarea{
  padding: .85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--warm-white);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus{ border-color: var(--terracotta); }
.form-note{ font-size: var(--fs-100); color: var(--espresso-45); margin-top: var(--space-2xs); }

@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Impressum
   ========================================================================== */
.legal{ max-width: 72ch; }
.legal h2{ font-size: var(--fs-500); margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.legal h2:first-child{ margin-top: 0; }
.legal p, .legal li{ color: var(--espresso-70); margin-bottom: var(--space-sm); }
.legal ul{ padding-left: 1.2em; list-style: disc; }
.legal a{ color: var(--terracotta-dark); text-decoration: underline; text-underline-offset: .2em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--espresso); color: var(--ivory); padding-block: var(--space-xl) var(--space-md); }
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(251,243,236,.14);
}
.footer-brand .logo{ color: var(--ivory); margin-bottom: var(--space-sm); }
.footer-brand .logo-mark{ color: var(--peach); }
.footer-brand p{ color: rgba(251,243,236,.65); font-size: var(--fs-200); max-width: 32ch; }
.footer-col h4{
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--peach);
  margin-bottom: var(--space-sm);
  font-weight: 400;
}
.footer-col ul{ display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col span{ color: rgba(251,243,236,.75); font-size: var(--fs-200); }
.footer-col a:hover{ color: var(--peach); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: var(--fs-100);
  color: rgba(251,243,236,.5);
}
.footer-bottom a{ color: rgba(251,243,236,.7); }
.footer-bottom a:hover{ color: var(--peach); }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Page hero (untergeordnete Seiten)
   ========================================================================== */
.page-hero{ padding-block: var(--space-xl) var(--space-lg); }
.page-hero h1{ font-size: var(--fs-800); max-width: 16ch; }
.page-hero .lede{ margin-top: var(--space-md); }

/* Utility */
.text-center{ text-align: center; }
.mt-lg{ margin-top: var(--space-lg); }
