/* ==========================================================================
   Pension by Anna – Stylesheet
   Waldgrün (#12572b) auf hellem Grund, Georgia als Markenstimme.
   Alle Assets lokal, keine Webfonts, keine externen Abhängigkeiten.
   ========================================================================== */

:root {
  /* Farben */
  --bg: #f4f7ee;
  --surface: #e6eedd;
  --ink: #1b2a1d;
  --ink-soft: #455744;
  --brand: #2f7d4e;
  --brand-deep: #12572b;
  --line: #d3ddc8;
  --dark-bg: #143a23;
  --dark-ink: #eef3e6;
  --dark-soft: #b9c9af;
  --white: #ffffff;

  /* Typografie */
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Abstände (4pt-Skala, fluid wo sinnvoll) */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-section: clamp(4rem, 9vw, 7.5rem);

  /* Z-Index-Skala */
  --z-header: 100;
  --z-menu: 110;
  --z-dialog: 200;

  --radius: 4px;
  --container: 70rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset / Basis ----------------------------------------------------------- */

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: var(--brand-deep); }

a:hover { color: var(--ink); }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: var(--z-menu);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* Markenornament: die Linie der alten Platzhalterseite lebt weiter */
.flourish {
  width: 60px;
  height: 2px;
  background-color: var(--brand);
  border: 0;
  margin: var(--space-lg) 0;
}

.flourish--center { margin-inline: auto; }

.section-title {
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 2.9rem);
}

.lead {
  font-size: 1.1875rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.btn--primary {
  background-color: var(--brand-deep);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--ink);
  color: var(--white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn--outline {
  background-color: transparent;
  color: var(--brand-deep);
  border-color: var(--brand);
}

.btn--outline:hover {
  background-color: var(--brand-deep);
  border-color: var(--brand-deep);
  color: var(--white);
}

/* Header / Navigation ------------------------------------------------------ */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  transition: background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 4.25rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  transition: color 240ms var(--ease-out);
}

.site-header.is-solid {
  background-color: rgba(244, 247, 238, 0.96);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-solid .brand { color: var(--ink); }

.site-nav ul {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  list-style: none;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid transparent;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.site-nav a:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.6); }

.site-header.is-solid .site-nav a { color: var(--ink-soft); }

.site-header.is-solid .site-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--brand);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid currentColor;
  border-radius: var(--radius);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
}

.site-header.is-solid .nav-toggle { color: var(--ink); }

/* Vereinfachte Navigation der Unterseiten: immer sichtbar, kein Menü-Button */
.site-nav--simple,
.site-nav--simple ul { display: flex; position: static; }

@media (max-width: 47.9375rem) {
  .nav-toggle { display: inline-block; }

  .site-nav:not(.site-nav--simple) {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background-color: var(--dark-bg);
    padding: var(--space-md) 0 var(--space-lg);
    box-shadow: 0 12px 24px rgba(10, 24, 15, 0.3);
  }

  .site-nav.is-open { display: block; }

  .site-nav:not(.site-nav--simple) ul {
    flex-direction: column;
    gap: 0;
    width: min(var(--container), 100% - 2.5rem);
    margin-inline: auto;
  }

  .site-nav:not(.site-nav--simple) a,
  .site-header.is-solid .site-nav:not(.site-nav--simple) a {
    display: block;
    padding: 0.875rem 0.25rem;
    font-size: 1.05rem;
    color: var(--dark-ink);
    border-bottom: 1px solid rgba(238, 243, 230, 0.12);
  }

  .site-nav:not(.site-nav--simple) a:hover,
  .site-header.is-solid .site-nav:not(.site-nav--simple) a:hover {
    color: var(--white);
    border-bottom-color: var(--brand);
  }
}

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
  padding: 6rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Abdunkelung („Filter“) über dem Kopfbild – Stärke im Admin wählbar. */
.hero--overlay-light::after,
.hero--overlay-medium::after,
.hero--overlay-strong::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero--overlay-light::after {
  background: linear-gradient(
    to bottom,
    rgba(12, 34, 20, 0.30) 0%,
    rgba(12, 34, 20, 0.18) 45%,
    rgba(12, 34, 20, 0.38) 100%
  );
}

.hero--overlay-medium::after {
  background: linear-gradient(
    to bottom,
    rgba(12, 34, 20, 0.55) 0%,
    rgba(12, 34, 20, 0.35) 45%,
    rgba(12, 34, 20, 0.62) 100%
  );
}

.hero--overlay-strong::after {
  background: linear-gradient(
    to bottom,
    rgba(12, 34, 20, 0.75) 0%,
    rgba(12, 34, 20, 0.55) 45%,
    rgba(12, 34, 20, 0.82) 100%
  );
}

.hero__inner { max-width: 46rem; padding-inline: 1.25rem; }

.hero__kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  font-size: clamp(2.5rem, 1.4rem + 5vw, 4.5rem);
  color: var(--white);
  margin-top: var(--space-sm);
  text-shadow: 0 2px 24px rgba(8, 22, 13, 0.4);
}

.hero__sub {
  font-size: 1.1875rem;
  color: rgba(255, 255, 255, 0.92);
  margin-top: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.hero__hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.5rem;
  text-decoration: none;
  line-height: 1;
}

/* Willkommen --------------------------------------------------------------- */

.welcome { padding: var(--space-section) 0; }

.welcome .container {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.welcome__text p + p { margin-top: var(--space-md); }

.welcome__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--brand-deep);
  margin-top: var(--space-xl);
}

.welcome__facts {
  list-style: none;
  padding: 0;
  margin-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.welcome__facts li { display: flex; align-items: center; }

.welcome__facts li + li::before {
  content: "◆";
  font-size: 0.45rem;
  color: var(--brand);
  margin-inline: 0.875rem;
}

.welcome__figure { position: relative; }

.welcome__figure img {
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(27, 42, 29, 0.18);
}

.welcome__figure figcaption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: var(--space-sm);
}

@media (max-width: 47.9375rem) {
  .welcome .container { grid-template-columns: 1fr; }
}

/* Zimmer -------------------------------------------------------------------- */

.rooms {
  padding: var(--space-section) 0;
  background-color: var(--surface);
}

.rooms__intro { max-width: 62ch; }

.room {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.room:nth-of-type(even) .room__media { order: 2; }

.room__media img {
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(27, 42, 29, 0.16);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.room h3 { font-size: 1.6rem; }

.room__desc { margin-top: var(--space-md); color: var(--ink-soft); }

.room__amenities {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.room__amenities li { display: flex; align-items: center; }

.room__amenities li + li::before {
  content: "·";
  font-weight: 700;
  color: var(--brand);
  margin-inline: 0.6rem;
}

.room__price {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}

.room__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

@media (max-width: 47.9375rem) {
  .room { grid-template-columns: 1fr; }
  .room:nth-of-type(even) .room__media { order: 0; }
}

/* Frühstück (dunkle Kontrastsektion) ---------------------------------------- */

.breakfast {
  background-color: var(--dark-bg);
  color: var(--dark-ink);
}

.breakfast .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: var(--space-section);
}

.breakfast h2, .breakfast h3 { color: var(--dark-ink); }

.breakfast p {
  color: var(--dark-soft);
  letter-spacing: 0.01em;
  line-height: 1.75;
}

.breakfast p + p { margin-top: var(--space-md); }

.breakfast .flourish { background-color: var(--brand); }

.breakfast__media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.breakfast__note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--dark-ink);
  margin-top: var(--space-xl);
}

@media (max-width: 47.9375rem) {
  .breakfast .container { grid-template-columns: 1fr; }
  .breakfast__media { order: -1; }
}

/* Preise --------------------------------------------------------------------- */

.prices {
  padding: var(--space-section) 0;
  background-color: var(--surface);
}

.prices__intro { max-width: 62ch; }

.prices__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: var(--space-2xl);
  align-items: start;
}

.price-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.price-card h3 {
  font-size: 1.4rem;
  color: var(--ink);
}

.price-card__sub { margin-top: var(--space-xl); }

.price-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-lg);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.price-list li:last-child { border-bottom: none; }

.price-list li > span:first-child { color: var(--ink-soft); }

.price-list small {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}

.price-list__amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  white-space: nowrap;
}

.price-card__note {
  margin-top: var(--space-md);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.prices__arrival {
  margin-top: clamp(1.5rem, 4vw, 3rem); /* gleicher Abstand wie zwischen den Karten */
}

/* Zeiten dürfen umbrechen (länger als Preisbeträge), bleiben rechtsbündig */
.prices__arrival .price-list__amount {
  white-space: normal;
  text-align: right;
}

@media (max-width: 47.9375rem) {
  .prices__grid { grid-template-columns: 1fr; }
}

/* Galerie -------------------------------------------------------------------- */

.gallery { padding: var(--space-section) 0; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(8rem, 16vw, 13rem);
  gap: var(--space-sm);
  margin-top: var(--space-2xl);
}

.gallery__item {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--wide { grid-column: span 2; grid-row: span 2; }

@media (max-width: 47.9375rem) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
}

/* Lightbox */

/* Dialog füllt den ganzen Viewport; das Bild wird darin zentriert.
   So sitzt das große Bild in jedem Browser zuverlässig mittig. */
.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  z-index: var(--z-dialog);
}

.lightbox[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.lightbox::backdrop { background: rgba(8, 20, 12, 0.85); }

.lightbox img {
  max-height: 85vh;
  max-width: 92vw;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(8, 20, 12, 0.65);
  color: var(--white);
  border: 0;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__caption {
  text-align: center;
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.75rem 0.5rem;
}

/* Hinweis-Popup (Inhalt kommt aus dem Admin) ------------------------------- */

.popup {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(26rem, calc(100% - 2.5rem));
  max-height: min(85vh, 42rem);
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(8, 20, 12, 0.35);
  z-index: var(--z-dialog);
}

.popup::backdrop { background: rgba(8, 20, 12, 0.6); }

.popup__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.popup__body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  text-align: center;
}

.popup__title {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.popup__text {
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
}

.popup__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 1;
  background: rgba(8, 20, 12, 0.55);
  color: var(--white);
  border: 0;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.popup__close:hover { background: rgba(8, 20, 12, 0.8); }

/* Umgebung -------------------------------------------------------------------- */

.surroundings {
  padding: var(--space-section) 0;
  background-color: var(--surface);
}

.surroundings__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: var(--space-2xl);
  align-items: start;
}

.surroundings__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.surroundings__tiles figure img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(27, 42, 29, 0.16);
}

.surroundings__tiles figcaption {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: var(--space-xs);
}

.surroundings h3 {
  font-size: 1.35rem;
  margin-top: var(--space-xl);
}

.surroundings p + p { margin-top: var(--space-md); }

.surroundings h3 + p { margin-top: var(--space-sm); }

.distance-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
}

.distance-list li span:last-child {
  color: var(--ink-soft);
  white-space: nowrap;
}

@media (max-width: 47.9375rem) {
  .surroundings__grid { grid-template-columns: 1fr; }
}

/* Kontakt -------------------------------------------------------------------- */

.contact { padding: var(--space-section) 0; }

.contact .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  max-width: 26rem;
}

.contact__channel {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--white);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}

.contact__channel:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 20px rgba(27, 42, 29, 0.1);
}

.contact__channel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}

.contact__channel span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.contact address {
  font-style: normal;
  margin-top: var(--space-lg);
  color: var(--ink-soft);
}

.contact__directions h3 { font-size: 1.4rem; }

.contact__directions p {
  margin-top: var(--space-md);
  color: var(--ink-soft);
}

.contact__times {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  background-color: var(--surface);
  border-radius: var(--radius);
  font-size: 0.97rem;
}

.contact__times dt { font-weight: 600; }

.contact__times dd { margin: 0 0 var(--space-sm); color: var(--ink-soft); }

.contact__times dd:last-child { margin-bottom: 0; }

@media (max-width: 47.9375rem) {
  .contact .container { grid-template-columns: 1fr; }
}

/* Footer --------------------------------------------------------------------- */

.site-footer {
  background-color: var(--dark-bg);
  color: var(--dark-soft);
  padding: var(--space-2xl) 0;
  font-size: 0.95rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.site-footer .brand { font-size: 1.1rem; color: var(--dark-ink); }

.site-footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
}

.site-footer a { color: var(--dark-soft); }

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

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.site-footer__social svg {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer__social:hover svg { transform: scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  .site-footer__social svg { transition: none; }
  .site-footer__social:hover svg { transform: none; }
}

/* Unterseiten (Impressum / Datenschutz) --------------------------------------- */

.page {
  padding: 8rem 0 var(--space-section);
  max-width: 70ch;
}

.page h1 { font-size: clamp(2rem, 5vw, 2.75rem); }

.page h2 { font-size: 1.4rem; margin-top: var(--space-2xl); }

.page h3 { font-size: 1.12rem; margin-top: var(--space-xl); }

.page h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--space-lg);
}

.page p, .page address { margin-top: var(--space-md); color: var(--ink-soft); font-style: normal; }

.page ul { margin-top: var(--space-md); padding-left: 1.25rem; color: var(--ink-soft); }

.page li { margin-top: var(--space-xs); }

.page li::marker { color: var(--brand); }

.page address strong { font-weight: 600; color: var(--ink); }

.page a { word-break: break-word; }

.page .todo {
  background-color: #e8f2dc;
  border: 1px solid #bcd0a4;
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  color: #3c4d2a;
}

/* Scroll-Reveals (nur wenn JS aktiv und Bewegung erwünscht) -------------------- */

.js-motion [data-reveal] {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 700ms var(--ease-out), translate 700ms var(--ease-out);
}

.js-motion [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Druck ------------------------------------------------------------------------ */

@media print {
  .site-header, .hero__hint, .nav-toggle { display: none; }
  .hero { min-height: auto; }
}
