/* ==========================================================================
   Am Weintürmchen – Weinstube & Restaurant, Dernau/Ahr
   Entwurf: Webdesign Pantförder
   Selbst-gehostet, keine externen Ressourcen.
   ========================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben: Bordeaux / Pergament / Schiefer / Messing */
  --wine-950: #2b0a12;
  --wine-900: #3f0f1b;
  --wine-800: #571828;
  --wine-700: #6f2033;
  --wine-600: #8a2b41;

  --paper:    #fbf7ee;   /* heller Grundton */
  --cream:    #f4ecdb;   /* Pergament */
  --cream-2:  #ece1c9;   /* Pergament dunkler */

  --ink:      #2c2420;   /* Fließtext auf hell */
  --ink-soft: #5c5047;   /* Sekundärtext auf hell */

  --slate:    #39414a;   /* Ahr-Schiefer */
  --slate-deep: #262c33;

  --gold:      #c19a5b;  /* Messing, nur auf dunklem Grund / Flächen */
  --gold-deep: #74562a;  /* Messing-Ton für Text auf hellem Grund */

  --on-dark:      #f3ead8;
  --on-dark-soft: #d9c9b0;

  /* Typografie */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino,
                "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  --fs-300: 0.875rem;                        /* 14px  kleine Labels     */
  --fs-400: 1rem;                            /* 16px  Fließtext Basis   */
  --fs-450: 1.0625rem;                       /* 17px  Fließtext groß    */
  --fs-500: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-600: clamp(1.375rem, 1.15rem + 1vw, 1.75rem);
  --fs-700: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  --fs-800: clamp(2.375rem, 1.7rem + 3.4vw, 4.25rem);

  /* Abstände (4er-Raster) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-card: 0 1px 2px rgba(43, 10, 18, 0.06), 0 10px 30px rgba(43, 10, 18, 0.09);
  --shadow-lift: 0 2px 4px rgba(43, 10, 18, 0.08), 0 18px 44px rgba(43, 10, 18, 0.14);

  --container: 68rem;
  --header-h: 4.25rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-450);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
  color: var(--wine-800);
  text-wrap: balance;
}

p { margin: 0 0 var(--sp-4); }

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

a {
  color: var(--wine-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--wine-600); }

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

::selection { background: var(--wine-700); color: var(--on-dark); }

/* Anker unter Sticky-Header freihalten */
section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: var(--sp-3) var(--sp-5);
  background: var(--wine-900);
  color: var(--on-dark);
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
}
.skip-link:focus-visible {
  top: 0;
  color: var(--on-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Kicker: kleine Zeile über Überschriften */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-300);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-4);
}
.kicker::before,
.kicker::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.on-dark .kicker { color: var(--gold); }

.section {
  padding-block: clamp(var(--sp-8), 9vw, var(--sp-9));
}
.section-head {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(var(--sp-6), 6vw, var(--sp-8));
}
.section-head h2 { font-size: var(--fs-700); }
.section-head p { color: var(--ink-soft); margin-bottom: 0; }
.on-dark .section-head p { color: var(--on-dark-soft); }

/* Ornament-Trenner (Traube) */
.ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-5) auto 0;
  color: var(--gold-deep);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: clamp(2.5rem, 8vw, 4.5rem);
  background: linear-gradient(to right, transparent, currentColor);
}
.ornament::after {
  background: linear-gradient(to left, transparent, currentColor);
}
.ornament svg { width: 1.5rem; height: auto; }
.on-dark .ornament { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: var(--fs-400);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease,
              border-color 200ms ease, transform 200ms ease,
              box-shadow 200ms ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--gold);
  color: var(--wine-950);
  box-shadow: 0 6px 18px rgba(43, 10, 18, 0.35);
}
.btn-primary:hover {
  background: #d0ac6e;
  color: var(--wine-950);
  box-shadow: 0 8px 24px rgba(43, 10, 18, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(243, 234, 216, 0.55);
}
.btn-ghost:hover {
  color: var(--on-dark);
  border-color: var(--on-dark);
  background: rgba(243, 234, 216, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--wine-800);
  border-color: var(--wine-800);
}
.btn-outline-dark:hover {
  background: var(--wine-800);
  color: var(--on-dark);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 10, 18, 0.96);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(193, 154, 91, 0.25);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
  padding-block: var(--sp-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--on-dark);
}
.brand:hover { color: var(--on-dark); }
.brand svg { width: 2rem; height: auto; color: var(--gold); flex: none; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(243, 234, 216, 0.4);
  border-radius: var(--radius-md);
  color: var(--on-dark);
  cursor: pointer;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle .icon-close { display: none; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(var(--sp-3), 2vw, var(--sp-5));
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: inline-block;
  padding: var(--sp-2) var(--sp-1);
  color: var(--on-dark);
  font-size: var(--fs-300);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.site-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.site-nav .nav-cta a {
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: var(--sp-2) var(--sp-4);
  color: var(--gold);
}
.site-nav .nav-cta a:hover {
  background: var(--gold);
  color: var(--wine-950);
}

/* Mobile-Navigation (nur wenn JS aktiv ist, wird eingeklappt) */
@media (max-width: 47.99rem) {
  .js .nav-toggle { display: inline-flex; }
  .js .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--wine-950);
    border-bottom: 1px solid rgba(193, 154, 91, 0.25);
    box-shadow: 0 24px 40px rgba(43, 10, 18, 0.45);
  }
  .js .nav-open .site-nav { display: block; }
  .js .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4) var(--sp-5) var(--sp-6);
  }
  .js .site-nav li + li { border-top: 1px solid rgba(243, 234, 216, 0.12); }
  .js .site-nav a {
    display: block;
    padding: var(--sp-4) var(--sp-2);
    font-size: var(--fs-400);
    border-bottom: none;
  }
  .js .site-nav .nav-cta { border-top: none; padding-top: var(--sp-4); }
  .js .site-nav .nav-cta a { text-align: center; }
  .js .nav-open .nav-toggle .icon-menu { display: none; }
  .js .nav-open .nav-toggle .icon-close { display: block; }

  /* Ohne JS: Navigation umbrechen lassen */
  html:not(.js) .header-inner { flex-wrap: wrap; padding-block: var(--sp-3); }
  html:not(.js) .site-nav { width: 100%; }
  html:not(.js) .site-nav ul { flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }

  /* Schlanker Header ohne Toggle (Unterseiten): Navigation immer sichtbar */
  .js .header-simple .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .js .header-simple .site-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: var(--sp-2) var(--sp-4);
    padding: 0;
  }
  .js .header-simple .site-nav li + li { border-top: 0; }
  .js .header-simple .site-nav a {
    display: inline-block;
    padding: var(--sp-2) var(--sp-1);
    font-size: var(--fs-300);
  }
  .js .header-simple .site-nav .nav-cta { padding-top: 0; }
  .js .header-simple .site-nav .nav-cta a { padding: var(--sp-2) var(--sp-4); }
  .header-simple .header-inner { flex-wrap: wrap; padding-block: var(--sp-3); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--wine-950) 0%, var(--wine-900) 42%, #5c2030 78%, var(--wine-800) 100%);
  color: var(--on-dark);
}
.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-scene svg {
  width: 100%;
  height: 100%;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(5rem, 14vw, 9.5rem) clamp(7rem, 18vw, 12rem);
}
.hero .kicker { color: var(--gold); }
.hero h1 {
  font-size: var(--fs-800);
  color: var(--on-dark);
  margin-bottom: var(--sp-4);
}
.hero h1 .amp {
  display: block;
  font-size: 0.42em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-top: var(--sp-2);
}
.hero-claim {
  max-width: 34rem;
  font-size: var(--fs-500);
  line-height: 1.6;
  color: var(--on-dark-soft);
  margin-bottom: var(--sp-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

/* ---------- Über uns ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  align-items: start;
}
@media (min-width: 48rem) {
  .about-grid { grid-template-columns: 1.4fr 1fr; }
}
.about-text .section-head {
  text-align: left;
  margin-inline: 0;
  margin-bottom: var(--sp-5);
}
.about-text .kicker { margin-bottom: var(--sp-3); }
.about-text p { color: var(--ink-soft); }
.about-text p strong { color: var(--ink); }

.about-card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-5), 4vw, var(--sp-6));
  box-shadow: var(--shadow-card);
}
.about-card h3 {
  font-size: var(--fs-500);
  color: var(--wine-800);
  margin-bottom: var(--sp-4);
}
.about-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-4);
}
.about-card li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  color: var(--ink-soft);
}
.about-card li svg {
  flex: none;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.2rem;
  color: var(--gold-deep);
}
.about-card li strong { display: block; color: var(--ink); }

/* ---------- Speisekarte ---------- */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  gap: clamp(var(--sp-5), 4vw, var(--sp-6));
}
@media (min-width: 48rem) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
.menu-card {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
  box-shadow: var(--shadow-card);
}
.menu-card > h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-600);
  color: var(--wine-800);
  margin-bottom: var(--sp-2);
}
.menu-card > h3 svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--gold-deep);
  flex: none;
}
.menu-card-sub {
  font-size: var(--fs-300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-5);
}
.menu-line {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}
.menu-line h4 {
  font-size: var(--fs-450);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.menu-line .dots {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 2px dotted rgba(116, 86, 42, 0.45);
  transform: translateY(-0.3em);
}
.price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--fs-450);
  color: var(--wine-700);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-desc {
  margin: var(--sp-1) 0 0;
  font-size: var(--fs-400);
  color: var(--ink-soft);
}
.menu-note {
  margin: var(--sp-6) auto 0;
  max-width: 40rem;
  text-align: center;
  font-size: var(--fs-400);
  color: var(--ink-soft);
}

/* ---------- Weinkarte ---------- */
.wine {
  position: relative;
  background:
    radial-gradient(90rem 40rem at 50% -10%, rgba(193, 154, 91, 0.12), transparent 60%),
    linear-gradient(180deg, var(--wine-950), var(--wine-900));
  color: var(--on-dark);
}
.wine h2 { color: var(--on-dark); }
.wine-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
  gap: var(--sp-4);
}
.wine-item {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
  background: rgba(243, 234, 216, 0.05);
  border: 1px solid rgba(193, 154, 91, 0.28);
  border-radius: var(--radius-md);
  transition: background-color 250ms ease, border-color 250ms ease, transform 250ms ease;
}
.wine-item:hover {
  background: rgba(243, 234, 216, 0.09);
  border-color: rgba(193, 154, 91, 0.55);
  transform: translateY(-2px);
}
.wine-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.wine-item h3 {
  font-size: var(--fs-500);
  color: var(--on-dark);
  margin: 0;
}
.wine-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine-950);
  background: var(--gold);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  white-space: nowrap;
}
.wine-desc {
  margin: 0;
  font-size: var(--fs-400);
  color: var(--on-dark-soft);
}
.wine-prices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  margin-top: var(--sp-1);
  font-size: var(--fs-400);
}
.wine-prices span { color: var(--on-dark-soft); }
.wine-prices strong {
  font-family: var(--font-serif);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.wine-note {
  max-width: 40rem;
  margin: var(--sp-6) auto 0;
  text-align: center;
  color: var(--on-dark-soft);
  font-size: var(--fs-400);
}

/* ---------- Öffnungszeiten ---------- */
.hours { background: var(--paper); }
.hours-table {
  width: min(100%, 34rem);
  margin-inline: auto;
  border-collapse: collapse;
  font-size: var(--fs-450);
}
.hours-table caption { margin-bottom: var(--sp-4); }
.hours-table th,
.hours-table td {
  padding: var(--sp-4) var(--sp-3);
  text-align: left;
  border-bottom: 1px solid var(--cream-2);
}
.hours-table th[scope="row"] {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--wine-800);
  width: 45%;
}
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table .closed td,
.hours-table .closed th {
  color: var(--ink-soft);
}
.hours-table .closed td { font-style: italic; }
.hours-hint {
  margin: var(--sp-5) auto 0;
  max-width: 34rem;
  text-align: center;
  font-size: var(--fs-400);
  color: var(--ink-soft);
}

/* ---------- Kontakt ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  gap: clamp(var(--sp-5), 4vw, var(--sp-6));
}
@media (min-width: 48rem) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-600);
  margin-bottom: var(--sp-4);
}
.contact-card h3 svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-deep);
  flex: none;
}
.contact-card address {
  font-style: normal;
  color: var(--ink-soft);
  margin-bottom: var(--sp-4);
}
.contact-card address strong { color: var(--ink); }
.contact-lines {
  margin: 0 0 var(--sp-5);
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-3);
}
.contact-lines li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--ink-soft);
}
.contact-lines svg {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold-deep);
}
.contact-lines a { font-weight: 600; }
.contact-extra {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: var(--fs-400);
  color: var(--ink-soft);
}
.contact-extra strong { color: var(--wine-800); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--slate-deep);
  color: #cfd6dd;
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--fs-400);
}
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  margin-bottom: var(--sp-7);
}
@media (min-width: 48rem) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--on-dark);
  margin-bottom: var(--sp-3);
}
.footer-brand svg { width: 1.75rem; height: auto; color: var(--gold); }
.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}
.site-footer p { color: #b6bfc8; }
.site-footer h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-300);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--sp-2);
}
.site-footer a { color: #dfe5ea; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(207, 214, 221, 0.18);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--fs-300);
  color: #a6b0ba;
}
.footer-bottom a { color: #cfd6dd; }

/* ---------- Unterseiten (Impressum) ---------- */
.page-main { padding-block: clamp(var(--sp-7), 8vw, var(--sp-9)); }
.page-main .prose { max-width: 44rem; margin-inline: auto; }
.prose h1 { font-size: var(--fs-700); }
.prose h2 { font-size: var(--fs-600); margin-top: var(--sp-7); }
.prose p, .prose li { color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.placeholder {
  background: #f3e6c8;
  border: 1px dashed var(--gold-deep);
  border-radius: var(--radius-sm);
  padding: 0.05em 0.4em;
  color: #61481f;
  font-weight: 600;
  white-space: nowrap;
}
.draft-note {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5);
  color: var(--ink-soft);
  margin-bottom: var(--sp-6);
}

/* ---------- Scroll-Reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
