/* Petra Schneider Mode — clean, minimal, luxury one-pager (Darmstadt) */

:root {
  /* Farben — exklusiv & dezent */
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-gold: #c5a073;
  --color-gold-soft: rgba(197, 160, 115, 0.35);
  --color-bg-soft: #f7f7f8;
  --color-bg-muted: #efeff1;

  /* Layout & Typo */
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* „Futura 2“ zuerst: greift bei lokaler Installation; sonst nahe Futura-Alternativen */
  --font-futura2: "Futura 2", "Futura", "Futura LT Pro", "Futura PT", "Century Gothic", "Trebuchet MS", sans-serif;
  --container-max: 1120px;
  --container-max-xl: 1200px;
  --header-h: 4.35rem;
  --line-height-body: 1.8;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 2px;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

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

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .gallery-item img,
  .nav-toggle-bar,
  .site-nav a::after {
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--line-height-body);
  letter-spacing: -0.01em;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* Basis: nie breiter als der Container; Höhe proportional */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Schärfere Skalierung für Fotos / große Flächen (Browser mit Unterstützung) */
@supports (image-rendering: high-quality) {
  .hero-bg,
  .philosophie-media img,
  .standort-media img,
  .showroom-frame img,
  .gallery-item img {
    image-rendering: high-quality;
  }
}

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

a:hover {
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
}

p {
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: max(1rem, 4vw);
}

@media (min-width: 1280px) {
  .container {
    max-width: var(--container-max-xl);
  }
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-bg-muted);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
  padding-inline: max(1rem, 4vw);
  max-width: var(--container-max-xl);
  margin-inline: auto;
}

@media (min-width: 768px) {
  :root {
    --header-h: 3.85rem;
  }

  .header-inner {
    padding-block: 0.5rem;
  }
}

/* Header: Text-Wordmark (ohne Bild-Logo) */
.logo-mark {
  display: flex;
  align-items: flex-start;
  z-index: 101;
  max-width: min(100%, 20rem);
  color: var(--color-text);
  text-decoration: none;
}

.logo-mark:hover {
  opacity: 0.82;
}

.logo-mark:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 4px;
}

/* Zweizeiliger Markenname: Name + Tagline (Tagline in Futura 2 / Futura-Fallback) */
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.22;
  text-transform: none;
}

.brand-lockup__name {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-lockup__tagline {
  font-family: var(--font-futura2);
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.92;
  margin-top: 0.28rem;
}

.brand-lockup--header .brand-lockup__name {
  font-size: 0.8125rem;
}

.brand-lockup--header .brand-lockup__tagline {
  font-size: 0.6875rem;
}

@media (min-width: 768px) {
  .brand-lockup--header .brand-lockup__name {
    font-size: 0.875rem;
    letter-spacing: 0.035em;
  }

  .brand-lockup--header .brand-lockup__tagline {
    font-size: 0.71875rem;
    letter-spacing: 0.055em;
  }
}

/* Firmenzeile in Fließtext / Adressen (nicht Header-Kompaktgröße) */
.brand-lockup--inline .brand-lockup__name {
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-lockup--inline .brand-lockup__tagline {
  font-size: 0.92em;
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

.nav-toggle {
  position: relative;
  z-index: 101;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle-bar {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 1px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  padding-block: 0.25rem;
  color: var(--color-text);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  opacity: 0.85;
}

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

.site-nav a:focus-visible {
  outline: 1px solid var(--color-gold-soft);
  outline-offset: 4px;
}

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

  .site-nav {
    position: static;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    justify-content: flex-end;
  }

  .nav-list {
    flex-direction: row;
    gap: 2.25rem;
  }

  .site-nav a {
    font-size: 0.875rem;
    letter-spacing: 0.01em;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3.5rem max(1rem, 4vw) 2.75rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.93) 0%,
    rgba(255, 255, 255, 0.42) 42%,
    rgba(0, 0, 0, 0.12) 100%
  ),
    radial-gradient(
      ellipse 120% 70% at 50% 0%,
      rgba(197, 160, 115, 0.07) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.hero-title {
  font-size: clamp(1.05rem, 3.2vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 1.16;
  margin: 0 0 0.95rem;
  max-width: min(100%, 38rem);
  margin-inline: auto;
  text-wrap: balance;
  color: var(--color-text);
}

.hero-sub {
  margin: 0 auto 2rem;
  max-width: 26rem;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--color-text);
  opacity: 0.58;
}

.hero-sub--jubilee {
  max-width: min(100%, 36rem);
  font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: -0.015em;
  opacity: 0.62;
  margin-bottom: 1.5rem;
}

.hero-sub--jubilee .hero-sub__row {
  display: block;
}

.hero-sub--jubilee .hero-sub__row + .hero-sub__row {
  margin-top: 0.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}

.btn-hero {
  padding: 0.7rem 1.45rem;
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.btn-hero:hover {
  border-color: var(--color-text);
  transform: translateY(-1px);
}

.btn-hero:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}

/* Ankerziele */
section[id],
footer[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* —— Sections —— */
.section {
  padding-block: clamp(3.5rem, 10vw, 6rem);
}

.section-alt {
  background: var(--color-bg-soft);
}

.section-marken {
  padding-block: clamp(1.85rem, 5.2vw, 3rem);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1.25rem;
  max-width: 22ch;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-title {
  margin-inline: auto;
  max-width: none;
}

.section-lead {
  margin: 0 auto;
  font-size: 1rem;
  color: var(--color-text);
  opacity: 0.65;
  max-width: 32rem;
}

.section-title--wide {
  max-width: min(100%, 40rem);
}

.section-header--kollektion {
  margin-bottom: clamp(1.15rem, 2.8vw, 1.65rem);
}

.section-title--kollektion {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  margin-bottom: 0.45rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-lead--kollektion {
  max-width: 34rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0.62;
}

.section-kollektion {
  padding-block: clamp(2.65rem, 8vw, 4.35rem);
}

.section-header--marken {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.section-title--marken {
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  margin-bottom: 0.65rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-lead--marken {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 0.9375rem;
  line-height: 1.55;
  opacity: 0.68;
}

.lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  opacity: 0.78;
  max-width: 36rem;
}

.philosophie-text {
  font-size: 1.0625rem;
  line-height: 1.82;
  letter-spacing: -0.012em;
  opacity: 0.82;
  max-width: 40rem;
  margin: 0 0 1.35rem;
}

.philosophie-text:last-child {
  margin-bottom: 0;
}

.section-philosophie {
  padding-block: clamp(2.6rem, 7.5vw, 4.15rem);
}

/* Philosophie — Porträt an kürzeren Text angepasst */
.philosophie-grid {
  display: grid;
  gap: 1.65rem;
  align-items: center;
}

.philosophie-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
  position: relative;
  /* Ohne Breite: Grid-Item mit nur position:absolute-Kind hat Breite 0 → Bild unsichtbar */
  width: 100%;
  max-width: min(100%, 17.5rem);
  margin-inline: auto;
}

.philosophie-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.philosophie-copy .section-title {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .philosophie-grid {
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
    gap: 2rem;
    align-items: center;
  }

  .philosophie-media {
    width: min(100%, 15rem);
    max-width: min(100%, 15rem);
    justify-self: end;
    align-self: center;
    margin-inline: 0;
  }
}

@media (min-width: 1100px) {
  .philosophie-media {
    width: min(100%, 16rem);
    max-width: min(100%, 16rem);
  }
}

/* Showroom — atmosphärisches Trennelement */
.section-showroom {
  position: relative;
  padding: 0;
  margin: 0;
}

.showroom-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.showroom-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(180px, 36vh, 440px);
  object-fit: cover;
  object-position: center;
}

.showroom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  pointer-events: none;
}

.showroom-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1rem, 3.5vw, 1.6rem) max(1rem, 4vw);
  z-index: 1;
}

.showroom-title {
  margin: 0;
  font-size: clamp(0.6875rem, 2vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
  max-width: none;
}

/* Jubiläum — ausgewählte Marken */
.marken-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 48rem;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--color-gold-soft);
}

.marken-item {
  margin: 0;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.05rem 1rem;
}

@media (min-width: 640px) {
  .marken-item:not(.marken-item--full) {
    grid-template-columns: minmax(0, 12rem) 1fr;
    align-items: baseline;
    padding-inline: 0.25rem;
  }

  .marken-item--full {
    grid-template-columns: minmax(0, 12rem) 1fr;
    align-items: baseline;
    padding-inline: 0.25rem;
  }
}

.marken-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: var(--color-text);
}

.marken-desc {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text);
  opacity: 0.72;
}

/* Kollektion: eine Zeile Mode (4), darunter eine Zeile Schuhe (4) */
.kollektion-columns {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .kollektion-columns {
    gap: 2.75rem;
  }
}

.kollektion-subtitle {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-gold-soft);
  max-width: none;
  color: var(--color-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

/* Kollektion: bis zu 4 Bilder nebeneinander (schmal → 1 / 2 / 4 Spalten) */
.kollektion-columns .gallery-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .kollektion-columns .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 900px) {
  .kollektion-columns .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-bg-muted);
  position: relative;
  aspect-ratio: 4 / 5;
}

/* Rahmen definiert das Seitenverhältnis; Bild füllt mit cover — kein zusätzliches Strecken auf dem <img> */
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.85s var(--ease-out);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.02);
}

/* Standort (Außenansicht) */
.standort-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.standort-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 3 / 2;
}

.standort-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

.standort-copy .section-title {
  margin-bottom: 1rem;
}

.standort-address {
  font-style: normal;
  line-height: 1.85;
  margin: 1.25rem 0 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.standort-hint {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.65;
  max-width: 36rem;
}

@media (min-width: 900px) {
  .standort-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* Kontakt & Anfahrt */
.kontakt-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.kontakt-copy .section-title {
  margin-bottom: 1rem;
}

.kontakt-intro,
.kontakt-termine {
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.72;
  letter-spacing: -0.012em;
  opacity: 0.78;
}

.kontakt-intro {
  margin: 0 0 0.4rem;
}

.kontakt-termine {
  margin: 0 0 1.5rem;
}

.kontakt-card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-bg-muted);
}

.kontakt-card--kompakt {
  padding-block: 1.1rem 1.35rem;
}

.kontakt-card--kompakt .kontakt-label {
  margin-bottom: 0.55rem;
}

.kontakt-kompakt {
  margin: 0;
}

.kontakt-kompakt__row {
  display: grid;
  grid-template-columns: minmax(4.75rem, 6.25rem) 1fr;
  gap: 0.2rem 0.85rem;
  padding: 0.35rem 0;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.kontakt-kompakt__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kontakt-kompakt__row:first-child {
  padding-top: 0;
}

.kontakt-kompakt dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.45;
}

.kontakt-kompakt dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  word-break: break-word;
}

.kontakt-card:first-of-type {
  border-top: none;
  padding-top: 0;
}

.kontakt-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  opacity: 0.55;
  color: var(--color-text);
}

.kontakt-map-label {
  margin-bottom: 0.85rem;
}

.kontakt-address {
  font-style: normal;
  line-height: 1.85;
  color: var(--color-text);
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: grid;
  grid-template-columns: minmax(5.5rem, 8.5rem) 1fr;
  gap: 0.5rem 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-list > div:last-child {
  border-bottom: none;
}

.hours-list dt {
  font-weight: 500;
  margin: 0;
}

.hours-list dd {
  margin: 0;
}

.kontakt-note {
  margin-top: 1.5rem;
  opacity: 0.5;
  font-size: 0.8125rem;
}

.kontakt-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-gold-soft);
  font-weight: 500;
}

.kontakt-link:hover {
  text-decoration-color: var(--color-gold);
}

.kontakt-map-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.map-embed {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gold-soft);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  min-height: 240px;
  background: var(--color-bg-muted);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
  }

  /* Kartenhöhe = linke Spalte (Höhe per script.js an kontakt-copy angeglichen) */
  .kontakt-map-wrap .map-embed {
    flex: 1 1 auto;
    min-height: 0;
    aspect-ratio: unset;
  }

  /* Linker Block: dichter, damit die Spaltenhöhe zur Karte passt (Karten-Größe unverändert) */
  .kontakt-copy .section-title.section-title--wide {
    font-size: clamp(1.15rem, 2.1vw, 1.5rem);
    margin-bottom: 0.35rem;
    line-height: 1.12;
  }

  .kontakt-copy .kontakt-intro,
  .kontakt-copy .kontakt-termine {
    font-size: 0.875rem;
    line-height: 1.42;
    max-width: 34rem;
  }

  .kontakt-copy .kontakt-intro {
    margin-bottom: 0.2rem;
  }

  .kontakt-copy .kontakt-termine {
    margin-bottom: 0.55rem;
  }

  .kontakt-copy .kontakt-card {
    padding: 0.45rem 0;
  }

  .kontakt-copy .kontakt-card:first-of-type {
    padding-top: 0;
  }

  .kontakt-copy .kontakt-card--kompakt {
    padding-block: 0.4rem 0.5rem;
  }

  .kontakt-copy .kontakt-label {
    margin-bottom: 0.28rem;
    font-size: 0.625rem;
    letter-spacing: 0.16em;
  }

  .kontakt-copy .kontakt-address {
    line-height: 1.4;
    font-size: 0.8125rem;
  }

  .kontakt-copy .brand-lockup--inline .brand-lockup__tagline {
    margin-top: 0.1rem;
  }

  .kontakt-copy .kontakt-kompakt__row {
    padding: 0.18rem 0;
    gap: 0.12rem 0.6rem;
  }

  .kontakt-copy .kontakt-kompakt dt {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
  }

  .kontakt-copy .kontakt-kompakt dd {
    font-size: 0.8125rem;
    line-height: 1.32;
  }
}

.placeholder {
  font-style: italic;
  opacity: 0.7;
}

/* —— Reveal: Sektionen (Intersection Observer) —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Footer (minimal) —— */
.site-footer {
  padding-block: 2.25rem 2.5rem;
  border-top: 1px solid var(--color-bg-muted);
  font-size: 0.8125rem;
}

.site-footer--minimal .footer-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 480px) {
  .site-footer--minimal .footer-minimal {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.5;
  letter-spacing: 0.02em;
}

.footer-copy--solo {
  padding: 0;
  border: none;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}

.footer-legal-link {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-gold-soft);
  font-size: 0.75rem;
}

.footer-legal-link:hover {
  text-decoration-color: var(--color-gold);
  opacity: 0.85;
}

.footer-legal-sep {
  opacity: 0.35;
  user-select: none;
}

/* —— Unterseiten Impressum / Datenschutz —— */
.subpage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.subpage__top {
  padding: 1.25rem max(1rem, 4vw);
  border-bottom: 1px solid var(--color-bg-muted);
  background: var(--color-bg);
}

.subpage__main {
  flex: 1;
  padding-block: clamp(2rem, 6vw, 3.5rem);
}

.legal-doc {
  max-width: 42rem;
  margin-inline: auto;
  padding-inline: max(1rem, 4vw);
}

.legal-doc h1 {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
}

.legal-doc .legal-doc__meta {
  font-size: 0.8125rem;
  opacity: 0.5;
  margin: 0 0 2.5rem;
}

.legal-doc h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text);
}

.legal-doc p {
  margin: 0 0 1rem;
}

.legal-doc ul {
  list-style: disc;
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-doc li {
  margin-bottom: 0.35rem;
}

.legal-doc a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--color-gold-soft);
}

.legal-doc a:hover {
  text-decoration-color: var(--color-gold);
}

.legal-doc .legal-note {
  font-size: 0.875rem;
  opacity: 0.65;
  font-style: italic;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}

.btn-back:hover {
  border-color: var(--color-text);
  opacity: 0.9;
}

.subpage__footer {
  padding: 1.5rem max(1rem, 4vw);
  border-top: 1px solid var(--color-bg-muted);
  text-align: center;
}

.subpage__footer p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.45;
}
