@font-face {
  font-family: Fraunces;
  src: url("../fonts/fraunces-latin-ext.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Fraunces;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Sora;
  src: url("../fonts/sora-latin-ext.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Sora;
  src: url("../fonts/sora-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --plaster: #f3eee4;
  --plaster-deep: #e4d8c6;
  --cream: #faf7f1;
  --ink: #171412;
  --ink-soft: #3f382f;
  --muted: #6d6458;
  --oxide: #b44528;
  --oxide-deep: #8e341c;
  --cyan: #2eb4c9;
  --gold: #e8b82a;
  --rose: #d62872;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: rgba(23, 20, 18, 0.28);
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 10% -10%, #fff6e8 0%, transparent 55%),
    radial-gradient(900px 600px at 110% 20%, #ead7bf 0%, transparent 50%),
    linear-gradient(180deg, var(--plaster) 0%, #efe6d6 48%, var(--plaster) 100%);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  letter-spacing: -0.011em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.brand-name {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}

.skip:focus {
  top: 1rem;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem var(--pad);
  color: var(--cream);
  background: rgba(23, 20, 18, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 1px solid rgba(250, 247, 241, 0.55);
  background: transparent;
  color: var(--cream);
  min-height: 2.35rem;
  padding: 0 0.8rem;
  cursor: pointer;
  position: relative;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  z-index: 61;
  top: 0;
  right: var(--pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  color: var(--cream);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  border: 1px solid currentColor;
  padding: 0.45rem 0.8rem;
}

@media (max-width: 859px) {
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    width: auto;
    margin: 0;
    flex: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem var(--pad) 3rem;
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    overflow: auto;
    z-index: 70;
    pointer-events: none;
  }

  .site-header.is-open + .site-nav,
  .site-nav.is-open {
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    text-transform: none;
    letter-spacing: -0.03em;
    font-weight: 300;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(250, 247, 241, 0.12);
    width: 100%;
  }

  .nav-cta {
    border: 0;
    padding-left: 0;
    margin-top: 1rem;
    color: var(--gold);
  }
}

@media (max-width: 859px) {
  .site-header {
    z-index: 80;
  }

  .nav-toggle {
    position: fixed;
    top: 0.85rem;
    right: 1.15rem;
    z-index: 81;
    margin: 0;
    background: var(--oxide);
    border-color: var(--oxide);
    color: var(--cream);
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    gap: 1.15rem;
  }
}

@media (min-width: 1100px) {
  .site-nav {
    gap: 1.75rem;
  }
}

/* Buttons */

.leistungen,
.arbeiten,
.section,
.page-hero,
.page-title {
  scroll-margin-top: var(--header-h);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.15rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--cream);
  color: var(--ink);
}

.btn-solid:hover {
  background: #fff;
}

.btn-ghost {
  border-color: rgba(250, 247, 241, 0.55);
  color: var(--cream);
}

.btn-ghost:hover {
  background: rgba(250, 247, 241, 0.12);
}

.btn-oxide {
  background: var(--oxide);
  color: var(--cream);
}

.btn-oxide:hover {
  background: var(--oxide-deep);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  transform: scale(1.08);
  animation: kenburns 22s ease-out forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 14, 12, 0.55) 0%, rgba(17, 14, 12, 0.12) 52%, rgba(17, 14, 12, 0.2) 100%),
    linear-gradient(180deg, rgba(17, 14, 12, 0.28) 0%, rgba(17, 14, 12, 0.08) 38%, rgba(17, 14, 12, 0.72) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 1rem) var(--pad) clamp(1.5rem, 5vh, 3rem);
  max-width: 78rem;
}

.hero-mark {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.hero-mark i {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
}

.hero-mark i:nth-child(1) {
  background: var(--cyan);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero-mark i:nth-child(2) {
  background: var(--gold);
  border-radius: 50%;
}

.hero-mark i:nth-child(3) {
  background: var(--rose);
}

.hero h1 {
  font-size: clamp(2.4rem, 6.8vw, 5.8rem);
  max-width: 14ch;
}

.hero .role {
  margin-top: 0.85rem;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

.hero .lead {
  margin-top: 1.1rem;
  max-width: 28ch;
  font-size: 1.05rem;
  color: rgba(250, 247, 241, 0.86);
}

@keyframes kenburns {
  to {
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-hero {
  position: relative;
  min-height: min(78svh, 42rem);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 20%;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 14, 12, 0.25), rgba(17, 14, 12, 0.72));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) var(--pad) 3rem;
  max-width: 46rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.page-hero h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
}

.page-hero .role,
.kicker {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-hero .lead {
  margin-top: 1rem;
  max-width: 34ch;
  color: rgba(250, 247, 241, 0.88);
}

.page-title {
  padding: calc(var(--header-h) + 3.5rem) var(--pad) 1.5rem;
  max-width: 48rem;
}

.page-title h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
}

.page-title .lead {
  margin-top: 1rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

/* Sections */

.section {
  padding: clamp(3.5rem, 8vw, 7rem) var(--pad);
}

.section-head {
  max-width: 36rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  max-width: 36ch;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-mark,
  .hero h1,
  .hero .role,
  .hero .lead,
  .hero .cta-row {
    opacity: 0;
    animation: rise 0.9s var(--ease) forwards;
  }

  .hero-mark { animation-delay: 0.12s; }
  .hero h1 { animation-delay: 0.22s; }
  .hero .role { animation-delay: 0.34s; }
  .hero .lead { animation-delay: 0.46s; }
  .hero .cta-row { animation-delay: 0.58s; }

  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }

  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* Leistungen */

.optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 400;
}

.leistungen {
  display: grid;
  min-height: 100svh;
  margin-top: clamp(2.75rem, 6vw, 5rem);
}

.leistungen-copy {
  padding: clamp(5rem, 10vw, 8rem) var(--pad) clamp(3.5rem, 8vw, 6rem);
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leistungen-copy .section-head p {
  color: rgba(250, 247, 241, 0.72);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.15rem;
}

.service-list button,
.service-list a {
  appearance: none;
  display: block;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(250, 247, 241, 0.12);
  color: rgba(250, 247, 241, 0.48);
  text-align: left;
  padding: 0.85rem 0;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  transition: color 0.3s var(--ease);
}

.service-list button:hover,
.service-list button[aria-pressed="true"],
.service-list a:hover,
.service-list a.is-active {
  color: var(--cream);
}

.service-list button[aria-pressed="true"],
.service-list a.is-active {
  color: var(--gold);
}

.service-note {
  margin-top: 1.25rem;
  min-height: 4.5rem;
  max-width: 34ch;
  color: rgba(250, 247, 241, 0.78);
}

.leistungen-visual {
  position: relative;
  min-height: 58vh;
  background: #2a241e;
  order: -1;
}

.leistungen-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}

.leistungen-visual img.is-active {
  opacity: 1;
}

@media (min-width: 900px) {
  .leistungen {
    grid-template-columns: minmax(22rem, 0.9fr) 1.15fr;
  }

  .leistungen-visual {
    min-height: 100%;
    order: 0;
  }
}

/* Arbeiten */

.arbeiten {
  padding: 0;
  background: #1b1714;
  color: var(--cream);
}

.arbeiten-head {
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad) 1.25rem;
}

.arbeiten-head h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.arbeiten-head p {
  margin-top: 0.8rem;
  color: rgba(250, 247, 241, 0.7);
  max-width: 36ch;
}

.gallery {
  position: relative;
}

.gallery-frame {
  position: relative;
  height: min(82svh, 52rem);
  background: #111;
  overflow: hidden;
}

.gallery-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 1.1s var(--ease);
  transform: scale(1.04);
}

.gallery-frame img.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad) 2.5rem;
  font-size: 0.92rem;
}

.gallery-nav button {
  appearance: none;
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  padding: 0.4rem 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
}

.gallery-nav button:hover {
  color: var(--gold);
}

.gallery-count {
  color: rgba(250, 247, 241, 0.55);
  font-variant-numeric: tabular-nums;
}

/* Call */

.call {
  background:
    linear-gradient(135deg, #c75a32 0%, #9c3318 48%, #6e2718 100%);
  color: var(--cream);
  text-align: left;
}

.call h2 {
  font-size: clamp(2.6rem, 8vw, 6rem);
}

.call a.phone {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.5vw, 3.6rem);
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 1.05;
  border-bottom: 1px solid rgba(250, 247, 241, 0.35);
}

.call p {
  margin-top: 1rem;
  max-width: 42ch;
  color: rgba(250, 247, 241, 0.82);
}

.call p a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 247, 241, 0.45);
}

/* About */

.prose {
  max-width: 40rem;
  padding: clamp(4.5rem, 10vw, 8rem) var(--pad) clamp(3.5rem, 8vw, 6rem);
}

.prose + .prose {
  padding-top: 0;
}

.prose h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-top: clamp(2.75rem, 6vw, 4.25rem);
  margin-bottom: 1.25rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p + p {
  margin-top: 1rem;
}

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

.prose ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.prose li + li {
  margin-top: 0.4rem;
}

.prose a {
  color: var(--oxide-deep);
}

.split-photo {
  min-height: 70svh;
}

.split-photo img {
  width: 100%;
  height: min(88svh, 54rem);
  object-fit: cover;
}

/* Contact */

.kontakt-grid {
  display: grid;
  gap: 3rem;
  padding: 1.5rem var(--pad) clamp(4rem, 8vw, 6.5rem);
}

#formular,
.form-block {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

@media (min-width: 880px) {
  .kontakt-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: start;
  }
}

.kontakt-direct h2,
.form-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.kontakt-direct p,
.form-block p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  max-width: 34ch;
}

.kontakt-direct a.mail {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: inline-block;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.kontakt-direct .tel-line {
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
}

.address {
  color: var(--ink-soft);
}

.address a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 0.55rem 0;
  color: var(--ink);
  border-radius: 0;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--oxide);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

.form-status.is-error {
  color: var(--oxide-deep);
}

.form-status.is-ok {
  color: #2d6a3f;
}

.legal {
  max-width: 46rem;
  padding: 2.5rem var(--pad) 5rem;
}

.legal h2,
.legal h3 {
  font-size: 1.5rem;
  margin: 2rem 0 0.7rem;
  line-height: 1.2;
}

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

.legal ul {
  padding-left: 1.1rem;
}

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

/* Footer */

.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 241, 0.78);
  padding: 3rem var(--pad) 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  width: 2rem;
  height: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

@media (min-width: 1040px) {
  .footer-grid {
    grid-template-columns: 1.15fr 1fr 1.15fr 0.9fr;
  }
}

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

.footer-links li + li {
  margin-top: 0.35rem;
}

.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250, 247, 241, 0.12);
  font-size: 0.85rem;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  padding: 6rem var(--pad);
}

.error-page h1 {
  font-size: clamp(2.6rem, 10vw, 7rem);
  text-wrap: balance;
  max-width: 12ch;
}

.error-page p {
  margin: 1rem 0 1.5rem;
  color: var(--ink-soft);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .hero-mark {
    display: none;
  }

  .hero h1 {
    font-size: 2.15rem;
    max-width: none;
  }

  .hero .role {
    margin-top: 0.5rem;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
  }

  .hero .lead {
    margin-top: 0.55rem;
    font-size: 0.98rem;
  }

  .hero .cta-row {
    margin-top: 0.85rem;
  }

  .hero-inner {
    padding-bottom: 1.4rem;
  }
}

@media (max-height: 740px) {
  .hero h1 {
    font-size: clamp(2.15rem, 6vh, 3.8rem);
  }

  .hero .lead {
    margin-top: 0.55rem;
  }

  .hero-inner {
    padding-bottom: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .reveal,
  .hero-mark,
  .hero h1,
  .hero .role,
  .hero .lead,
  .hero .cta-row,
  .gallery-frame img,
  .leistungen-visual img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* SEO content blocks */

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--oxide);
}

.page-hero .crumbs {
  color: rgba(250, 247, 241, 0.72);
}

.page-hero .crumbs a {
  color: inherit;
}

.page-hero .crumbs a:hover {
  color: var(--gold);
}

.faq {
  padding: clamp(3.5rem, 8vw, 7rem) var(--pad);
  background: var(--cream);
}

.faq .section-head {
  margin-bottom: 1.5rem;
}

.faq-list {
  max-width: 46rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.25;
  list-style: none;
}

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

.faq details p {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  max-width: 48ch;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
  padding: 0 var(--pad) clamp(4rem, 8vw, 6.5rem);
}

@media (min-width: 800px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1140px) {
  .card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  text-decoration: none;
  min-height: 100%;
  box-shadow: 0 1px 0 var(--line);
}

.card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.card-body {
  padding: 1.15rem 1.2rem 1.4rem;
}

.card h2,
.card h3 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  margin-bottom: 0.5rem;
}

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

.card:hover h2,
.card:hover h3 {
  color: var(--oxide);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.area-list a,
.area-list span {
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--ink-soft);
}

.area-list a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.related {
  padding: 0 var(--pad) clamp(4rem, 8vw, 6rem);
}

.related h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}

.consent input {
  margin-top: 0.25rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--oxide);
}

.intro-copy {
  max-width: 46rem;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.intro-copy p {
  color: var(--ink-soft);
}
