/* ==========================================================================
   Blumen Jüttemeier — „Papier & Blüte“, zweite Fassung (opus-v2)
   Handgeschrieben, ohne Abhängigkeiten, keine externen Requests.
   1 Schriften & Tokens · 2 Basis · 3 Layout · 4 Kopf/Fuß · 5 Bausteine
   6 Seitenteile · 7 Utilities · 8 Breakpoints · 9 Bewegung/Kontrast/Druck
   ========================================================================== */

/* ---------- 1 · Schriften & Tokens --------------------------------------- */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin.woff2') format('woff2-variations');
  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: 'Karla';
  src: url('../fonts/karla-latin.woff2') format('woff2-variations');
  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;
}

:root {
  /* Farbklima: warmes Papier, Blattgrün, Terrakotta, Blütenrosé */
  --paper: #f7f2e8;
  --paper-raised: #fffcf6;
  --paper-tint: #efe6d7;
  --ink: #1c2c22;
  --ink-soft: #4a5a4d;
  --green: #23412e;
  --green-deep: #14251b;
  --clay: #99472b;
  --clay-bright: #b45c3b;
  --blush: #e4c8bf;
  --rule: rgba(28, 44, 34, 0.16);
  --rule-strong: rgba(28, 44, 34, 0.34);
  --rule-light: rgba(255, 252, 246, 0.26);

  /* Typografie */
  --display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Palatino,
    'Book Antiqua', Georgia, serif;
  --sans: 'Karla', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;

  /* Raster & Rhythmus */
  --gutter: clamp(20px, 5vw, 52px);
  --page: 1260px;
  --section-y: clamp(48px, 5.4vw, 78px);
  --head-h: 72px;
  --radius: 3px;
  --shadow-soft: 0 18px 50px -30px rgba(20, 37, 27, 0.45);
  --shadow-card: 0 34px 74px -42px rgba(20, 37, 27, 0.72);

  /* Bewegung */
  --ease: cubic-bezier(0.22, 0.7, 0.24, 1);
  --dur: 0.45s;
}

/* ---------- 2 · Basis ---------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 18px);
}

body {
  margin: 0;
  background-color: var(--paper);
  /* Feines Papierkorn – rein per CSS (Data-URI), kein zusätzlicher Request */
  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='.82' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.06rem);
  line-height: 1.66;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
  background-color: var(--paper-tint);
}

img[src$='.svg'] {
  background: none;
}

a {
  color: inherit;
  text-decoration-color: var(--blush);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: 'SOFT' 20, 'WONK' 1, 'opsz' 90;
  letter-spacing: -0.022em;
  line-height: 1.04;
  text-wrap: balance;
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

figure {
  margin: 0;
}

blockquote {
  margin: 0;
}

button {
  font: inherit;
  color: inherit;
}

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

.on-dark :focus-visible,
.footer :focus-visible,
.hero :focus-visible {
  outline-color: var(--blush);
}

::selection {
  background: var(--blush);
  color: var(--green-deep);
}

/* ---------- 3 · Layout --------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(40px, 4.6vw, 68px);
}

.section--tint {
  background: linear-gradient(180deg, rgba(239, 230, 215, 0) 0%, var(--paper-tint) 4%,
      var(--paper-tint) 96%, rgba(239, 230, 215, 0) 100%);
}

.on-dark {
  background: var(--green);
  color: #f3efe6;
}

.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: #fffcf6;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 200;
  padding: 12px 20px;
  background: var(--green);
  color: #fffcf6;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translate(-50%, -180%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus-visible {
  transform: translate(-50%, 0);
}

/* ---------- 4 · Kopfzeile & Fußzeile ------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  /* Bewusst ohne backdrop-filter: das würde einen Positionierungskontext
     erzeugen und die mobile Navigationsschublade einschließen. */
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.masthead[data-stuck='true'] {
  border-bottom-color: var(--rule);
  box-shadow: 0 10px 30px -26px rgba(20, 37, 27, 0.5);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 32px);
  /* Feste, komfortable Höhe: Steuerelemente stoßen nie an die Trennlinie */
  min-height: var(--head-h);
  padding-block: 10px;
}

/* Wortmarke: Bildmarke des Betriebs + Schriftzug */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 2px;
  text-decoration: none;
}

.brand__mark {
  width: 54px;
  height: auto;
  color: var(--green);
  flex: none;
  transition: transform var(--dur) var(--ease);
}

.brand:hover .brand__mark {
  transform: translateY(-2px) rotate(-4deg);
}

.brand__type {
  display: grid;
  gap: 3px;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.42rem;
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 40;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.brand__claim {
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding-block: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.nav__link[aria-current='page'] {
  color: var(--clay);
}

.nav__link[aria-current='page']::after {
  background: var(--clay);
  transform: scaleX(1);
}

/* Telefon-CTA: eigene Zeilenhöhe, damit der Rahmen nie am Text klebt */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #fffcf6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.nav__phone:hover,
.nav__phone:focus-visible {
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.nav__phone svg {
  width: 15px;
  height: 15px;
  flex: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  width: 16px;
  height: 10px;
  flex: none;
}

.nav-toggle__bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 4.25px; }
.nav-toggle__bars i:nth-child(3) { top: 8.5px; }

.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:nth-child(1) {
  transform: translateY(4.25px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:nth-child(3) {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* Fußzeile */
.footer {
  background: var(--green-deep);
  color: rgba(243, 239, 230, 0.78);
  font-size: 0.9rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: #fffcf6;
  text-decoration: underline;
  text-decoration-color: var(--blush);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 3.4vw, 48px);
  padding-block: clamp(42px, 5vw, 68px) 30px;
}

.footer h2 {
  margin: 0 0 14px;
  color: #fffcf6;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__brand .brand__name {
  color: #fffcf6;
  font-size: 1.5rem;
}

.footer__brand .brand__mark {
  color: var(--blush);
}

.footer__brand .brand__claim {
  color: rgba(243, 239, 230, 0.62);
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 18px 28px;
  border-top: 1px solid var(--rule-light);
  font-size: 0.78rem;
}

/* ---------- 5 · Bausteine ------------------------------------------------ */

/* 5.1 Buttons & Links */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn svg {
  width: 15px;
  height: 15px;
  flex: none;
}

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

.btn--solid {
  background: var(--green);
  color: #fffcf6;
}

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

.btn--clay {
  background: var(--clay);
  color: #fffcf6;
}

.btn--clay:hover {
  background: var(--clay-bright);
}

.btn--outline {
  border-color: var(--rule-strong);
  color: var(--ink);
  background: rgba(255, 252, 246, 0.5);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: rgba(28, 44, 34, 0.06);
}

.btn--light {
  border-color: var(--rule-light);
  color: #fffcf6;
}

.btn--light:hover {
  background: #fffcf6;
  border-color: #fffcf6;
  color: var(--green-deep);
}

.btn--big {
  min-height: 58px;
  font-size: 0.86rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.arrow-link span:last-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 999px;
  flex: none;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.arrow-link svg {
  width: 13px;
  height: 13px;
}

.arrow-link:hover span:last-child,
.arrow-link:focus-visible span:last-child {
  transform: translateX(4px);
  background: currentColor;
}

.arrow-link:hover svg,
.arrow-link:focus-visible svg {
  color: var(--paper);
}

/* 5.2 Kleinteile: Label, Stempel, Status */

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 18px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex: none;
}

.on-dark .eyebrow,
.hero .eyebrow {
  color: var(--clay);
}

.on-dark .eyebrow {
  color: var(--blush);
}

.slash {
  color: var(--clay);
  font-family: var(--sans);
  font-weight: 400;
  padding-inline: 0.1em;
}

.stamp {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  flex: none;
  color: var(--green);
}

.stamp__ring {
  position: absolute;
  inset: 0;
  animation: stamp-spin 34s linear infinite;
}

.stamp__ring text {
  font-family: var(--sans);
  font-size: 8.4px;
  font-weight: 700;
  letter-spacing: 1.85px;
  text-transform: uppercase;
  fill: currentColor;
}

.stamp__core {
  display: grid;
  justify-items: center;
  gap: 3px;
  text-align: center;
}

.stamp__core img {
  width: 34px;
}

.stamp__core b {
  font-family: var(--display);
  font-size: 1.1rem;
  font-variation-settings: 'SOFT' 40, 'WONK' 1;
  font-weight: 500;
  line-height: 1;
}

.stamp--light {
  color: #fffcf6;
}

@keyframes stamp-spin {
  to { transform: rotate(360deg); }
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 12px;
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-soft);
  flex: none;
  box-shadow: 0 0 0 4px rgba(77, 92, 80, 0.16);
}

.status[data-open='true'] .status__dot {
  background: #40702f;
  box-shadow: 0 0 0 4px rgba(64, 112, 47, 0.2);
}

.status[data-open='false'] .status__dot {
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(153, 71, 43, 0.18);
}

.on-dark .status,
.band .status,
.page-hero--image .status {
  background: rgba(255, 252, 246, 0.14);
  border-color: var(--rule-light);
  color: #f3efe6;
}

.band .status[data-open='true'] .status__dot,
.on-dark .status[data-open='true'] .status__dot {
  background: #8cc079;
  box-shadow: 0 0 0 4px rgba(140, 192, 121, 0.24);
}

.band .status[data-open='false'] .status__dot,
.on-dark .status[data-open='false'] .status__dot {
  background: var(--blush);
  box-shadow: 0 0 0 4px rgba(228, 200, 191, 0.24);
}

/* 5.3 Überschriften-Block */

.head {
  display: grid;
  gap: 22px;
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.head--split {
  gap: clamp(22px, 4vw, 68px);
}

.head__title {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem);
}

.head__title em {
  font-style: normal;
  color: var(--clay);
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100;
}

.on-dark .head__title em {
  color: var(--blush);
}

.head__copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 46ch;
}

.on-dark .head__copy {
  color: rgba(243, 239, 230, 0.8);
}

/* 5.4 Karten & Bildrahmen */

.card {
  padding: clamp(24px, 2.8vw, 36px);
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.frame {
  position: relative;
}

.frame > img,
.frame > picture > img {
  width: 100%;
  border-radius: var(--radius);
}

.frame--offset::before {
  content: '';
  position: absolute;
  inset: clamp(12px, 2vw, 20px) clamp(-20px, -1.6vw, -8px) clamp(-20px, -1.6vw, -8px)
    clamp(12px, 2vw, 20px);
  border: 1px solid var(--blush);
  border-radius: var(--radius);
  z-index: -1;
}

.frame__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  background: var(--paper-raised);
  border-top-right-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame__caption img {
  width: 18px;
}

.frame__stamp {
  position: absolute;
  top: clamp(-24px, -2vw, -14px);
  right: clamp(-14px, -1.2vw, -4px);
  z-index: 3;
  background: radial-gradient(circle, var(--paper) 58%, rgba(247, 242, 232, 0) 72%);
}

.frame--square > img { aspect-ratio: 1 / 1; object-fit: cover; }
.frame--portrait > img { aspect-ratio: 3 / 4; object-fit: cover; }
.frame--wide > img { aspect-ratio: 16 / 10; object-fit: cover; }

/* ---------- 6 · Seitenteile ---------------------------------------------- */

/* 6.1 Titelbühne (Startseite)
   Randlos, hoch, Bild direkt unter der Kopfzeile. Die Papierkarte sitzt
   optisch weit oben und steht auf gefrostetem Papier über dem Motiv. */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  min-height: 520px;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  background: var(--green-deep);
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(20, 37, 27, 0.58) 0%, rgba(20, 37, 27, 0.38) 44%,
      rgba(20, 37, 27, 0.1) 74%, rgba(20, 37, 27, 0) 100%),
    linear-gradient(180deg, rgba(20, 37, 27, 0.32) 0%, rgba(20, 37, 27, 0) 34%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  /* Auf kleinen Displays bleibt über der Banderole ein sichtbarer Bildstreifen. */
  padding-block: clamp(72px, 12vh, 150px) clamp(20px, 3.4vw, 36px);
}

.hero__card {
  max-width: 32rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: clamp(20px, 4.6vw, 26px);
  border: 1px solid rgba(255, 252, 246, 0.42);
  border-radius: 4px;
  /* Transparente Papierbanderole: textsicher links, mit sichtbarem Motiv darunter. */
  background: linear-gradient(104deg,
    rgba(255, 252, 246, 0.73) 0%, rgba(255, 252, 246, 0.64) 58%,
    rgba(255, 252, 246, 0.58) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  backdrop-filter: blur(22px) saturate(1.12);
  box-shadow: var(--shadow-card);
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .hero__card {
    background: rgba(255, 252, 246, 0.93);
  }
}

.hero__card-main {
  container-type: inline-size;
  display: grid;
  gap: 9px;
  min-width: 0;
}

.hero__card .eyebrow {
  margin: 0 0 2px;
}

.hero__title {
  display: grid;
  gap: 0;
  font-size: clamp(3rem, 18cqw, 4.1rem);
  font-variation-settings: 'SOFT' 24, 'WONK' 1, 'opsz' 144;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.hero__claim {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.3em;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.02rem, 5cqw, 1.2rem);
  font-variation-settings: 'SOFT' 40, 'WONK' 1, 'opsz' 40;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero__lede {
  max-width: none;
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

@supports not (container-type: inline-size) {
  .hero__title { font-size: clamp(3rem, 14vw, 4.1rem); }
  .hero__claim { font-size: clamp(1.02rem, 4.2vw, 1.2rem); }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__stamp {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;
  display: none;
  filter: drop-shadow(0 2px 7px rgba(14, 25, 19, 0.75));
}

/* 6.2 Kontaktleiste direkt unter der Bühne */

.quickbar {
  background: var(--green);
  color: #f3efe6;
}

.quickbar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule-light);
}

.quickbar__item {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px clamp(16px, 2vw, 26px);
  background: var(--green);
}

.quickbar__label {
  color: var(--blush);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.quickbar__value {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 60;
  line-height: 1.2;
  color: #fffcf6;
}

a.quickbar__value {
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 200, 191, 0.5);
  justify-self: start;
}

a.quickbar__value:hover {
  border-bottom-color: #fffcf6;
}

.quickbar__secondary {
  justify-self: start;
  color: rgba(243, 239, 230, 0.82);
  font-size: 0.9rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(228, 200, 191, 0.5);
}

.quickbar__secondary:hover {
  color: #fffcf6;
}

.quickbar__address {
  display: grid;
  gap: 8px;
  margin: 0;
  color: #fffcf6;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  font-style: normal;
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 60;
  line-height: 1.25;
}

.quickbar__address span:last-child {
  color: rgba(243, 239, 230, 0.72);
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.quickbar__hours {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 24rem;
  margin: 0;
  color: #fffcf6;
  font-variant-numeric: tabular-nums lining-nums;
}

.quickbar__hours > div {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
  padding-block: 5px;
  border-top: 1px solid rgba(255, 252, 246, 0.16);
}

.quickbar__hours > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.quickbar__hours dt,
.quickbar__hours dd {
  margin: 0;
}

.quickbar__hours dt {
  color: rgba(243, 239, 230, 0.74);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.quickbar__hours dd {
  color: #fffcf6;
  font-family: var(--display);
  font-size: 1.06rem;
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 60;
  line-height: 1.25;
}

.quickbar__hours-off dd {
  color: rgba(243, 239, 230, 0.68);
  font-family: var(--sans);
  font-size: 0.86rem;
}

/* 6.3 Text-Bild-Abschnitt & Zitat */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 4.4vw, 72px);
  align-items: center;
}

.split__text > .head__title {
  margin-bottom: 20px;
}

.split__text > p {
  color: var(--ink-soft);
  max-width: 52ch;
}

.split__text > p:first-of-type {
  color: var(--ink);
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.28rem);
  font-family: var(--display);
  font-variation-settings: 'SOFT' 40, 'WONK' 0, 'opsz' 40;
  line-height: 1.45;
}

.pullquote {
  display: grid;
  gap: 12px;
  margin-block: clamp(26px, 3.4vw, 38px);
  padding-left: clamp(18px, 2.6vw, 30px);
  border-left: 2px solid var(--blush);
}

.pullquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.75rem);
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 90;
  line-height: 1.25;
}

.pullquote footer {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* 6.4 Säulen „Blumen // Service // Ideen“ */

.pillars {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--paper-raised);
}

.pillar__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 4px;
}

.pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.pillar:hover .pillar__media img {
  transform: scale(1.05);
}

.pillar__no {
  margin: 0;
  font-family: var(--display);
  font-size: 0.92rem;
  color: var(--clay);
  letter-spacing: 0.1em;
}

.pillar h3 {
  font-size: clamp(1.45rem, 1.2rem + 0.8vw, 1.9rem);
}

.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.checklist svg {
  width: 16px;
  margin-top: 5px;
  color: var(--clay);
}

.on-dark .checklist li {
  color: rgba(243, 239, 230, 0.84);
}

.on-dark .checklist svg {
  color: var(--blush);
}

/* 6.5 Anlass-Kacheln (u. a. Trauerfloristik – bewusst ohne Foto) */

.tiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.tile {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.tile h3 {
  font-size: 1.3rem;
}

.tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tile__icon {
  width: 30px;
  color: var(--clay);
}

.tile__link {
  margin-top: 2px;
  justify-self: start;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
}

.tile__link:hover {
  border-bottom-color: var(--clay);
}

/* 6.6 Galerie
   Geometrie: alle Kacheln sind quadratisch, die Zeilenhöhe ergibt sich aus
   ihnen. Das große Motiv überspannt 2 × 2 Zellen und wird dadurch exakt so
   hoch wie zwei Zeilen plus Abstand – Unterkanten liegen auf einer Linie. */

.gallery {
  --gallery-gap: clamp(10px, 1.2vw, 16px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gallery-gap);
}

.gallery__item {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--paper-tint);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
}

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

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 37, 27, 0) 45%, rgba(20, 37, 27, 0.7));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover img,
.gallery__item:focus-visible img {
  transform: scale(1.05);
}

.gallery__item:hover::after,
.gallery__item:focus-visible::after {
  opacity: 1;
}

.gallery__label {
  position: absolute;
  z-index: 2;
  left: 15px;
  bottom: 13px;
  color: #fffcf6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery__item:hover .gallery__label,
.gallery__item:focus-visible .gallery__label {
  opacity: 1;
  transform: none;
}

/* Zwei Spalten (schmal): großes Motiv und letzte Kachel liegen quer über die
   volle Breite – so bleibt keine halbe Zeile offen. */
.gallery--feature .gallery__item:first-child,
.gallery--feature .gallery__item:last-child {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

/* Lightbox */
.lightbox {
  width: min(1100px, 94vw);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--green-deep);
  color: #f3efe6;
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(14, 25, 19, 0.88);
}

.lightbox__figure {
  display: grid;
  gap: 0;
}

.lightbox__figure img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: var(--green-deep);
}

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule-light);
  font-size: 0.82rem;
}

.lightbox__nav {
  display: flex;
  gap: 8px;
}

.lightbox__btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--rule-light);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.lightbox__btn:hover {
  background: #fffcf6;
  color: var(--green-deep);
}

.lightbox__btn svg {
  width: 16px;
  height: 16px;
}

/* 6.7 Dunkles Band & Hochzeitsvorschau */

.band {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: #f3efe6;
}

.band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg, rgba(20, 37, 27, 0.95) 0%, rgba(20, 37, 27, 0.8) 44%,
      rgba(20, 37, 27, 0.5) 100%);
}

.band__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(52px, 6.5vw, 96px);
}

.band__title {
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem);
}

.band__title em {
  font-style: normal;
  color: var(--blush);
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 100;
}

.band p {
  color: rgba(243, 239, 230, 0.84);
  max-width: 46ch;
}

.band__inner,
.preview,
.page-hero--image .page-hero__inner,
.page-hero--image .crumbs {
  text-shadow: 0 1px 18px rgba(14, 25, 19, 0.5);
}

/* Vorschau: Text links, Bildpaare rechts */
.preview {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: center;
  padding-block: clamp(52px, 6.5vw, 92px);
}

.preview__shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
}

.preview__shots > * {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.preview__shots img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6.8 Kontakt & Öffnungszeiten */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 2px;
  margin: 0 0 20px;
}

.contact-lines > div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-lines > div:last-child {
  border-bottom: 0;
}

.contact-lines dt {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 5px;
}

.contact-lines dd {
  margin: 0;
}

.contact-lines .big {
  display: inline-block;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.42rem);
  font-variation-settings: 'SOFT' 30, 'WONK' 1, 'opsz' 60;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
}

.contact-lines .big:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.contact-lines a:not(.big) {
  text-decoration: none;
  border-bottom: 1px solid var(--blush);
}

.contact-lines a:not(.big):hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.hours {
  margin: 0;
  display: grid;
}

.hours__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.hours__row:last-child {
  border-bottom: 0;
}

.hours__row[data-today='true'] {
  color: var(--clay);
  font-weight: 700;
}

.hours dt,
.hours dd {
  font-size: 0.94rem;
}

.hours dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.hours__row[data-today='true'] dt::after {
  content: ' · heute';
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.contact-social svg {
  width: 19px;
  height: 19px;
  flex: none;
}

/* 6.9 Seiten-Bühne der Unterseiten */

.page-hero {
  position: relative;
  padding-block: clamp(34px, 4.4vw, 62px) clamp(24px, 3vw, 40px);
  overflow: hidden;
}

.page-hero--image {
  padding-block: clamp(46px, 6vw, 96px) clamp(46px, 6vw, 88px);
  color: #f3efe6;
  background: var(--green-deep);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.5;
}

.page-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 37, 27, 0.82), rgba(20, 37, 27, 0.6));
}

/* Variante mit sichtbarem Motiv rechts: Text steht links im dunklen Verlauf */
.page-hero--side .page-hero__bg img {
  opacity: 0.9;
  object-position: center 46%;
}

.page-hero--side::after {
  background:
    linear-gradient(100deg, rgba(20, 37, 27, 0.94) 0%, rgba(20, 37, 27, 0.84) 38%,
      rgba(20, 37, 27, 0.5) 68%, rgba(20, 37, 27, 0.34) 100%),
    linear-gradient(180deg, rgba(20, 37, 27, 0.45), rgba(20, 37, 27, 0) 42%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 60ch;
}

.page-hero__title {
  font-size: clamp(2.2rem, 1.2rem + 4vw, 4rem);
}

.page-hero__lede {
  margin: 20px 0 0;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.14rem);
}

.page-hero--image .page-hero__lede {
  color: rgba(243, 239, 230, 0.88);
}

.page-hero:not(.page-hero--image) .page-hero__lede {
  color: var(--ink-soft);
}

.page-hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.crumbs {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.crumbs li:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
  opacity: 0.6;
}

.crumbs a {
  text-decoration: none;
  opacity: 0.85;
}

.crumbs a:hover {
  opacity: 1;
  text-decoration: underline;
}

.crumbs [aria-current='page'] {
  opacity: 0.8;
}

/* ---------- 7 · Prosa (Recht) & Utilities ------------------------------- */

.prose {
  max-width: 72ch;
}

.prose h2 {
  margin: clamp(30px, 3.4vw, 46px) 0 12px;
  font-size: clamp(1.3rem, 1.1rem + 0.7vw, 1.68rem);
}

.prose h3 {
  margin: 28px 0 10px;
  font-size: 1.14rem;
}

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

.prose li {
  margin-bottom: 7px;
}

.prose a {
  color: var(--clay);
  word-break: break-word;
}

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

.prose .lead {
  color: var(--ink);
  font-size: 1.06rem;
}

.address-block {
  padding: clamp(20px, 2.4vw, 28px);
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font-style: normal;
  line-height: 1.75;
}

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

.mt-s { margin-top: 18px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 34px; }
.measure { max-width: 46ch; }

/* Einblenden beim Scrollen – nur mit JavaScript, sonst immer sichtbar */
.reveal {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(16px);
}

/* ---------- 8 · Breakpoints --------------------------------------------- */

@media (max-width: 559px) {
  .hero__card .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .hero__card .eyebrow::before {
    display: none;
  }

  .quickbar__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .quickbar__item {
    min-width: 0;
    padding: 16px var(--gutter);
  }

  .quickbar__value {
    font-size: 1.06rem;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 560px) and (max-width: 979px) {
  .quickbar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quickbar__item {
    padding-inline: clamp(12px, 2vw, 20px);
  }

  .quickbar__hours > div {
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 8px;
  }

  .quickbar__hours dd {
    font-size: 1rem;
  }
}

@media (min-width: 620px) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* 2 × 2-Feld: Höhe = zwei quadratische Zeilen + Abstand, exakt bündig.
     Sechs Kacheln füllen damit genau drei Zeilen ohne Rest. */
  .gallery--feature .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .gallery--feature .gallery__item:last-child {
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }

  .tiles--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
  :root {
    --head-h: 84px;
  }

  .head--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .split--wide-text {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  }

  .split--flip .split__media { order: 2; }

  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .tiles--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .preview { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }

  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.15fr; }

  .hero {
    /* Die flachere Banderole lässt bei 900 px auch die strukturierte
       Öffnungszeitenleiste unterhalb der Bühne sichtbar werden. */
    min-height: min(calc(100vh - var(--head-h) - 60px), 660px);
  }

  .hero__inner {
    padding-block: 40px clamp(28px, 3vw, 44px);
  }

  .hero__stamp { display: grid; }
}

@supports (height: 100svh) {
  @media (min-width: 760px) {
    .hero {
      min-height: min(calc(100svh - var(--head-h) - 60px), 660px);
    }
  }
}

@media (min-width: 980px) {
  .hero__card {
    max-width: 30rem;
    padding: 32px 34px;
  }

  .hero__card-main {
    gap: 11px;
  }

  .quickbar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quickbar__item:first-child {
    padding-left: 34px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .head {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .head > * { min-width: 0; }
  .head__group { grid-column: 1; }
  .head__copy { grid-column: 2; }
}

@media (min-width: 1100px) {
  .hero__card {
    max-width: 30.5rem;
    padding: 34px 36px;
  }

  .quickbar__item:first-child {
    padding-left: 36px;
  }
}

/* Mobile Navigation */
@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
  }

  /* Schublade von rechts: bleibt im Viewport (kein horizontaler Überlauf) */
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 120;
    width: min(360px, 88vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 28px;
    padding: 34px var(--gutter);
    background: var(--green);
    color: #f3efe6;
    box-shadow: -30px 0 60px -30px rgba(14, 25, 19, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s var(--ease), visibility 0s linear 0.32s;
    overflow-y: auto;
  }

  .nav[data-open='true'] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.32s var(--ease), visibility 0s linear 0s;
  }

  .nav > * {
    transform: translateX(16px);
    transition: transform 0.42s var(--ease);
  }

  .nav[data-open='true'] > * { transform: none; }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav__link {
    display: block;
    padding-block: 14px;
    border-bottom: 1px solid var(--rule-light);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .nav__link[aria-current='page'] { color: var(--blush); }

  .nav__link::after { display: none; }

  .nav__phone {
    justify-content: center;
    background: #fffcf6;
    border-color: #fffcf6;
    color: var(--green-deep);
  }

  .nav__phone:hover,
  .nav__phone:focus-visible {
    background: var(--blush);
    border-color: var(--blush);
    color: var(--green-deep);
  }

  /* Fokusring auf dunklem Grund: Rosé statt Terrakotta */
  .nav :focus-visible {
    outline-color: var(--blush);
  }

  .nav__extra {
    margin: 0;
    color: rgba(243, 239, 230, 0.76);
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(14, 25, 19, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }

  .nav-scrim[data-open='true'] {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 900px) {
  .nav__extra { display: none; }
  .nav-scrim { display: none; }
}

@media (max-width: 759px) {
  .hero {
    /* Bild bleibt oben sichtbar, Karte schließt die Bühne unten ab */
    min-height: min(calc(100vh - var(--head-h) - 8px), 700px);
  }
}

@media (max-width: 600px) {
  .frame--offset::before { display: none; }
}

@media (max-width: 520px) {
  .brand__mark { width: 46px; }
  .brand__name { font-size: 1.24rem; }
  .brand__claim { display: none; }
}

@media (max-width: 479px) {
  .hero__actions .btn { width: 100%; }
  .stamp { width: 104px; height: 104px; }
  .frame__stamp { top: -14px; right: 8px; }
}

@media (max-width: 360px) {
  /* Auf sehr schmalen Displays bleibt oberhalb der kompakten Karte genug Bild. */
  .hero__inner {
    padding-block: 64px 18px;
  }

  /* Lange Kontaktdaten brauchen auf sehr schmalen Geräten eine eigene Zeile. */
  .contact-lines > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  .contact-lines dt {
    padding-top: 0;
  }

  .contact-social {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* ---------- 9 · Bewegung, Kontrast, Druck ------------------------------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

  .btn:hover,
  .brand:hover .brand__mark,
  .gallery__item:hover img,
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #31402f;
    --rule: rgba(28, 44, 34, 0.42);
    --rule-strong: rgba(28, 44, 34, 0.62);
  }

  .hero__card { background: rgba(255, 252, 246, 0.97); }
}

@media print {
  .masthead,
  .nav,
  .nav-toggle,
  .band__bg,
  .hero__media,
  .hero__stamp,
  .gallery,
  .preview__shots,
  .skip-link,
  .footer__grid {
    display: none !important;
  }

  body { background: #fff; color: #000; }
  .hero { min-height: 0; }
  .quickbar, .quickbar__item { background: #fff; color: #000; }
}
