@font-face {
  font-family: "Newsreader";
  src: url(../fonts/Newsreader-400.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url(../fonts/Newsreader-500.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url(../fonts/Newsreader-Italic-400.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url(../fonts/Karla-400.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url(../fonts/Karla-600.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url(../fonts/Karla-Italic-400.woff2) format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --bg: #F7F3EA;
  --bg-2: #EFE8D8;
  --surface: #F1EBDC;
  --ink: #23241F;
  --ink-soft: #4B4A3F;
  --ink-mute: #6B6858;
  --line: #DED4BE;
  --line-soft: #E8E0CC;
  --salbei: #3E5747;
  --salbei-deep: #2F4436;
  --salbei-tint: #E4E9E1;
  --salbei-veil: rgba(62, 87, 71, 0.10);
  --salbei-hair: rgba(62, 87, 71, 0.30);
  --ocker: #A9793A;
  --ocker-deep: #986D34;
  --night: #23241F;
  --night-2: #2B2C25;
  --night-ink: #F3EFE3;
  --night-mute: #B9B29D;
  --night-salbei: #9FBBA9;
  --night-line: #3A3B31;
  --font-display:
    "Newsreader",
    ui-serif,
    Georgia,
    serif;
  --font-body:
    "Karla",
    ui-sans-serif,
    system-ui,
    sans-serif;
  --text-display: clamp(2.75rem, 2rem + 3.2vw, 5.5rem);
  --text-h2: clamp(2rem, 1.6rem + 1.8vw, 3.25rem);
  --text-h3: clamp(1.375rem, 1.2rem + .8vw, 1.75rem);
  --text-lead: clamp(1.125rem, 1.05rem + .3vw, 1.375rem);
  --text-body: 1.0625rem;
  --text-small: .9375rem;
  --text-caption: .8125rem;
  --text-micro: .68rem;
  --text-subhead: 1.15rem;
  --text-brand: 1.25rem;
  --text-accent-lg: 1.5rem;
  --tracking-display: -0.015em;
  --tracking-eyebrow: 0.12em;
  --space-s: 1rem;
  --space-m: 1.75rem;
  --space-l: 3rem;
  --space-xl: clamp(4rem, 3rem + 5vw, 7.5rem);
  --container: 72rem;
  --measure: 40rem;
  --radius-s: 0.6rem;
  --radius-m: 1rem;
  --radius-l: 1.5rem;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(35, 36, 31, 0.06), 0 10px 24px -14px rgba(35, 36, 31, 0.22);
  --shadow-card-hover: 0 18px 32px -16px rgba(62, 87, 71, 0.35), 0 2px 6px rgba(35, 36, 31, 0.1);
  --ease-leaf: cubic-bezier(.6, .14, 0, 1);
  --ease-page: cubic-bezier(.65, .05, 0, 1);
  --ease-soft: cubic-bezier(.33, 0, .2, 1);
  --fade: 700ms var(--ease-soft);
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: hp-page-out 480ms var(--ease-page) both;
}
::view-transition-new(root) {
  animation: hp-page-in 520ms var(--ease-page) both;
}
@keyframes hp-page-out {
  to {
    opacity: 0;
    clip-path: inset(0 0 0 4%);
  }
}
@keyframes hp-page-in {
  from {
    opacity: 0;
    clip-path: inset(0 4% 0 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * {
  position: relative;
  z-index: 1;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: var(--tracking-display);
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 em,
h2 em,
h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--salbei);
}
h1 {
  font-size: var(--text-display);
}
h2 {
  font-size: var(--text-h2);
}
h3,
.h3 {
  font-size: var(--text-h3);
}
p {
  margin: 0 0 1.2em;
  max-width: var(--measure);
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: inherit;
  text-decoration-color: var(--line);
  text-underline-offset: 0.2em;
}
a:hover {
  text-decoration-color: var(--salbei);
}
main a:not([class]) {
  color: var(--salbei);
  text-decoration: underline;
  text-decoration-color: var(--salbei-hair);
}
main a:not([class]):hover {
  text-decoration-color: var(--salbei);
}
img,
svg {
  max-width: 100%;
  height: auto;
}
::selection {
  background: var(--salbei-veil);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--salbei);
  outline-offset: 3px;
  border-radius: 2px;
}
.hp-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.hp-skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1.1rem;
  font-size: var(--text-caption);
  text-decoration: none;
}
.hp-skip-link:focus {
  left: 0.75rem;
}
.hp-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--salbei);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25em;
  margin-bottom: 1.1rem;
}
.hp-lead {
  font-size: var(--text-lead);
  color: var(--ink-soft);
  max-width: var(--measure);
}
.hp-mute {
  color: var(--ink-mute);
}
.hp-prose {
  max-width: 62ch;
}
.hp-prose p {
  font-size: var(--text-body);
  color: var(--ink-soft);
}
.hp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.hp-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.25rem;
}
.hp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  margin-right: auto;
}
.hp-brand-mark {
  flex: none;
}
.hp-brand-text {
  font-family: var(--font-display);
  font-size: var(--text-brand);
  font-weight: 500;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.hp-brand-text small {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.2rem;
}
.hp-nav ul {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.hp-nav a {
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--ink-soft);
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
}
.hp-nav a:hover {
  color: var(--salbei);
}
.hp-nav a[aria-current=page] {
  color: var(--salbei);
  border-bottom-color: var(--salbei-hair);
}
.hp-header-cta {
  display: inline-block;
  background: var(--salbei);
  color: #FFFFFF;
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  transition: background 200ms var(--ease-soft);
}
.hp-header-cta:hover {
  background: var(--ocker-deep);
}
.hp-nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 47.9rem) {
  .hp-nav-toggle {
    display: inline-flex;
  }
  .hp-header-cta {
    display: none;
  }
  .hp-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 1rem 1.5rem 1.5rem;
  }
  .hp-nav[data-open=true] {
    display: block;
  }
  .hp-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }
  .hp-nav a {
    display: block;
    padding: 0.65rem 0;
    font-size: var(--text-body);
  }
}
.hp-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  pointer-events: none;
}
.hp-progress path {
  fill: none;
  stroke: var(--salbei);
  stroke-width: 2;
  stroke-linecap: round;
}
@media (prefers-reduced-motion: reduce) {
  .hp-progress {
    display: none;
  }
}
.hp-hero {
  position: relative;
  padding-block: var(--space-xl) var(--space-l);
  overflow: hidden;
}
.hp-hero-inner {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 60rem) {
  .hp-hero-inner {
    grid-template-columns: 42% 1fr;
    align-items: start;
  }
}
.hp-hero-visual {
  position: relative;
  min-height: 12rem;
  display: grid;
  place-items: center;
}
@media (min-width: 60rem) {
  .hp-hero-visual {
    position: sticky;
    top: 6.5rem;
    min-height: 26rem;
  }
}
.hp-hero-visual svg {
  width: auto;
  height: min(16rem, 34vh);
  overflow: visible;
}
@media (min-width: 60rem) {
  .hp-hero-visual svg {
    width: min(22rem, 90%);
    height: auto;
  }
}
.hp-petal-a {
  animation: hp-petal-drift 22s ease-in-out infinite;
  transform-origin: 50% 30%;
}
.hp-petal-b {
  animation: hp-petal-drift-b 26s ease-in-out infinite;
  transform-origin: 60% 60%;
}
@keyframes hp-petal-drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0.4rem, -0.6rem) rotate(1deg);
  }
}
@keyframes hp-petal-drift-b {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-0.35rem, 0.5rem) rotate(-0.8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hp-petal-a,
  .hp-petal-b {
    animation: none;
  }
}
.hp-hero-content h1 {
  max-width: 16ch;
}
.hp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: var(--space-m);
}
.hp-hero-note {
  margin-top: var(--space-m);
  font-size: var(--text-caption);
  color: var(--ink-mute);
  max-width: 30rem;
}
.hp-headline .hp-line {
  display: block;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease-leaf);
}
.hp-headline.is-in .hp-line:nth-child(1) {
  clip-path: inset(0 0 0% 0);
  transition-delay: 0ms;
}
.hp-headline.is-in .hp-line:nth-child(2) {
  clip-path: inset(0 0 0% 0);
  transition-delay: 140ms;
}
.hp-headline.is-in .hp-line:nth-child(3) {
  clip-path: inset(0 0 0% 0);
  transition-delay: 280ms;
}
@media (prefers-reduced-motion: reduce) {
  .hp-headline .hp-line {
    clip-path: none;
    transition: none;
  }
}
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: var(--text-small);
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: var(--radius-pill);
  transition:
    background 200ms var(--ease-soft),
    color 200ms var(--ease-soft),
    border-color 200ms var(--ease-soft);
}
.hp-btn-primary {
  background: var(--salbei);
  color: #FFFFFF;
}
.hp-btn-primary:hover {
  background: var(--salbei-deep);
}
.hp-btn-ghost {
  border: 1px solid var(--salbei-hair);
  color: var(--salbei);
}
.hp-btn-ghost:hover {
  border-color: var(--salbei);
  background: var(--salbei-veil);
}
.hp-night .hp-btn-primary {
  background: var(--night-salbei);
  color: var(--night);
}
.hp-night .hp-btn-primary:hover {
  background: #B7D0C1;
}
.hp-night .hp-btn-ghost {
  border-color: rgba(159, 187, 169, 0.4);
  color: var(--night-salbei);
}
.hp-night .hp-btn-ghost:hover {
  border-color: var(--night-salbei);
  background: rgba(159, 187, 169, 0.12);
}
.hp-section {
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hp-section-tint {
  background: var(--bg-2);
}
.hp-section-head {
  max-width: 46rem;
  margin-bottom: var(--space-l);
}
.hp-section-deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: var(--salbei);
  opacity: 0.1;
  will-change: transform;
}
.hp-usp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 40rem) {
  .hp-usp-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hp-usp-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.hp-usp-icon {
  flex: none;
  color: var(--salbei);
  margin-top: 0.2rem;
}
.hp-usp-list p {
  margin: 0;
  font-size: var(--text-small);
  color: var(--ink-soft);
}
.hp-usp-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-body);
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.hp-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-m);
  counter-reset: hp-step;
}
@media (min-width: 44rem) {
  .hp-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hp-steps li {
  counter-increment: hp-step;
  position: relative;
  padding-top: 2.6rem;
}
.hp-steps li::before {
  content: counter(hp-step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-subhead);
  color: var(--salbei);
}
.hp-steps h3 {
  font-size: var(--text-subhead);
  margin-bottom: 0.35rem;
}
.hp-steps p {
  font-size: var(--text-small);
  color: var(--ink-soft);
}
.hp-card-grid {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 40rem) {
  .hp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .hp-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hp-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 1.9rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow-card);
  transition:
    transform 320ms var(--ease-soft),
    box-shadow 320ms var(--ease-soft),
    border-color 320ms var(--ease-soft);
}
.hp-card:hover,
.hp-card:focus-within {
  transform: translateY(-3px) rotate(-0.4deg);
  border-color: var(--salbei-hair);
  box-shadow: var(--shadow-card-hover);
}
.hp-card-icon {
  margin: 0 0 1.1rem;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  background: var(--salbei-tint);
  border-radius: var(--radius-m);
  color: var(--salbei);
}
.hp-card h3 {
  margin-bottom: 0.1rem;
  font-size: var(--text-subhead);
}
.hp-card-latein {
  font-style: italic;
  font-size: var(--text-caption);
  color: var(--ink-mute);
  margin-bottom: 0.5rem;
}
.hp-card p {
  font-size: var(--text-small);
  color: var(--ink-soft);
  flex-grow: 1;
}
.hp-card .hp-mehr {
  margin-top: 0.9rem;
  font-weight: 600;
  font-size: var(--text-small);
  color: var(--salbei);
  text-decoration: none;
}
.hp-card .hp-mehr:hover {
  text-decoration: underline;
  text-decoration-color: var(--salbei-hair);
}
.hp-card-hinweis {
  margin-top: 0.7rem;
  font-size: var(--text-caption);
  color: var(--ink-mute);
  border-top: 1px solid var(--line-soft);
  padding-top: 0.6rem;
}
.hp-register {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 1.7rem 1.6rem 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 320ms var(--ease-soft), box-shadow 320ms var(--ease-soft);
  position: relative;
}
.hp-register:hover,
.hp-register:focus-within {
  transform: translateY(-3px) rotate(-0.35deg);
  box-shadow: var(--shadow-card-hover);
}
.hp-register-tab {
  position: absolute;
  left: 0;
  top: 1.6rem;
  bottom: 1.4rem;
  width: 0.5rem;
  border-radius: 0 4px 4px 0;
  background: var(--salbei);
}
.hp-register-kopf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.hp-register h3 {
  font-size: var(--text-subhead);
  margin-bottom: 0.1rem;
}
.hp-register-nr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-small);
  color: var(--ink-mute);
  flex: none;
}
.hp-register-teaser {
  font-size: var(--text-small);
  color: var(--ink-soft);
  margin: 0.5rem 0 0;
}
.hp-register-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 420ms var(--ease-soft), opacity 320ms var(--ease-soft);
}
.hp-register:hover .hp-register-details,
.hp-register:focus-within .hp-register-details,
.hp-register.is-open .hp-register-details {
  max-height: 22rem;
  opacity: 1;
}
.hp-register-details ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.4rem;
}
.hp-register-details li {
  font-size: var(--text-small);
  color: var(--ink-soft);
  padding-left: 1rem;
  position: relative;
}
.hp-register-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--salbei);
}
.hp-register-mehr {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--salbei);
  text-decoration: none;
}
.hp-register-toggle {
  display: none;
}
@media (hover: none) {
  .hp-register-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: 1rem;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--salbei);
    flex: none;
    font-size: var(--text-subhead);
    line-height: 1;
    transition: transform 250ms var(--ease-soft);
  }
  .hp-register.is-open .hp-register-toggle {
    transform: rotate(45deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hp-register,
  .hp-register:hover {
    transform: none;
  }
}
.hp-stroke {
  fill: none;
  stroke: var(--salbei);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dashoffset 1100ms var(--ease-leaf);
}
.hp-zitat {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.hp-zitat blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--text-h2);
  line-height: 1.3;
  color: var(--ink-soft);
  text-wrap: balance;
}
.hp-zitat figcaption {
  margin-top: 1.2rem;
  font-size: var(--text-caption);
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hp-night {
  background: var(--night);
  color: var(--night-ink);
  position: relative;
  overflow: hidden;
}
.hp-night h2,
.hp-night h3 {
  color: var(--night-ink);
}
.hp-night .hp-eyebrow {
  color: var(--night-salbei);
}
.hp-night p {
  color: var(--night-mute);
}
.hp-night .hp-lead {
  color: var(--night-ink);
}
.hp-night .hp-stroke {
  stroke: var(--night-salbei);
}
.hp-night-grid {
  display: grid;
  gap: var(--space-l);
  align-items: center;
}
@media (min-width: 56rem) {
  .hp-night-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.hp-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 34rem;
}
.hp-info-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: var(--text-small);
}
.hp-info-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.hp-info-list .hp-wert {
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}
.hp-night .hp-info-list li {
  border-color: var(--night-line);
}
.hp-bio-grid {
  display: grid;
  gap: var(--space-l);
  align-items: start;
}
@media (min-width: 56rem) {
  .hp-bio-grid {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.hp-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-l);
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      165deg,
      var(--salbei-tint),
      var(--bg-2));
  border: 1px solid var(--line-soft);
  color: var(--salbei);
}
.hp-stimmen {
  display: grid;
  gap: var(--space-m);
}
@media (min-width: 44rem) {
  .hp-stimmen {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hp-stimme {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-l);
  padding: 1.7rem 1.6rem;
}
.hp-stimme p {
  font-size: var(--text-small);
  color: var(--ink-soft);
  font-style: italic;
}
.hp-stimme cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: var(--text-caption);
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hp-faq {
  max-width: 46rem;
}
.hp-faq details {
  border-top: 1px solid var(--line);
  padding-block: 0.4rem;
}
.hp-faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.hp-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lead);
  padding-block: 0.8rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.hp-faq summary::-webkit-details-marker {
  display: none;
}
.hp-faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: var(--text-accent-lg);
  font-weight: 400;
  color: var(--salbei);
  flex: none;
  transition: transform 250ms var(--ease-soft);
}
.hp-faq details[open] summary::after {
  transform: rotate(45deg);
}
.hp-faq details > p {
  padding-bottom: 1rem;
  color: var(--ink-soft);
}
.hp-breadcrumb {
  font-size: var(--text-caption);
  color: var(--ink-mute);
  margin-bottom: var(--space-m);
}
.hp-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hp-breadcrumb li + li::before {
  content: "·";
  margin-right: 0.4rem;
  color: var(--line);
}
.hp-breadcrumb a {
  color: var(--ink-mute);
}
.hp-artikel {
  max-width: var(--measure);
}
.hp-artikel h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-l);
}
.hp-artikel ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}
.hp-artikel li {
  margin-bottom: 0.4rem;
}
.hp-artikel-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.1em;
  line-height: 0.78;
  float: left;
  padding: 0.07em 0.12em 0 0;
  color: var(--ink);
}
.hp-notebox {
  background: var(--salbei-tint);
  border-radius: var(--radius-m);
  padding: 1.5rem 1.75rem;
  margin-block: var(--space-m);
  font-size: var(--text-small);
}
.hp-notebox strong {
  color: var(--salbei-deep);
}
.hp-night .hp-notebox strong {
  color: var(--night-salbei);
}
.hp-kontakt-grid {
  display: grid;
  gap: var(--space-l);
}
@media (min-width: 56rem) {
  .hp-kontakt-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}
.hp-form {
  max-width: 34rem;
}
.hp-field {
  margin-bottom: 1.2rem;
}
.hp-field label {
  display: block;
  font-size: var(--text-caption);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.hp-field input,
.hp-field select,
.hp-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.7rem 0.9rem;
}
.hp-field input:focus,
.hp-field select:focus,
.hp-field textarea:focus {
  outline: 2px solid var(--salbei);
  outline-offset: 1px;
  border-color: var(--salbei);
}
.hp-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.hp-form-status {
  display: block;
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-size: var(--text-caption);
  color: var(--salbei-deep);
  font-weight: 600;
}
.hp-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-block: var(--space-l);
  font-size: var(--text-small);
  color: var(--ink-soft);
}
.hp-footer-grid {
  display: grid;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}
@media (min-width: 44rem) {
  .hp-footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}
.hp-footer h2 {
  font-size: var(--text-caption);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.8rem;
}
.hp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hp-footer li {
  margin-bottom: 0.4rem;
}
.hp-footer a {
  text-decoration: none;
}
.hp-footer a:hover {
  text-decoration: underline;
}
.hp-footer-marke {
  font-family: var(--font-display);
  font-size: var(--text-subhead);
  margin-bottom: 0.5rem;
  display: block;
}
.hp-footer-legal {
  border-top: 1px solid var(--line);
  padding-top: var(--space-m);
  font-size: var(--text-caption);
  color: var(--ink-mute);
}
.hp-footer-legal p {
  max-width: none;
}
.js .hp-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--fade), transform var(--fade);
}
.js .hp-reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .hp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hp-card,
  .hp-card:hover,
  .hp-register,
  .hp-register:hover {
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.hp-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--space-xl);
}
