/* ============================================================
   Beauty-OP.de — Premium Beauty / Medical Editorial Style
   ============================================================ */

@import url('fonts.css');

:root {
  /* Palette: warm ivory, deep charcoal, champagne accent */
  --color-bg:           #faf8f5;
  --color-white:        #ffffff;
  --color-cream:        #f3ede2;
  --color-line:         #e8e2d6;
  --color-line-soft:    #f0ebe1;
  --color-text:         #1c1a17;
  --color-text-mid:     #4a443e;
  --color-text-soft:    #7d756c;
  --color-accent:       #b8956a;       /* champagne / muted gold */
  --color-accent-dark:  #8c6e4b;
  --color-accent-soft:  #f0e6d4;
  --color-rose:         #c9a99c;
  --color-rose-soft:    #f5e8e2;

  /* alert / warning still readable */
  --color-alert-bg:     #f9f3e6;
  --color-alert-border: #b8956a;
  --color-alert-text:   #6b5132;

  --font-serif:         'Cormorant Garamond', 'Georgia', serif;
  --font-sans:          'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max-width:          1920px;
  --max-narrow:         760px;
  --max-content:        920px;

  --spacing-xs:         0.5rem;
  --spacing-sm:         1rem;
  --spacing-md:         2rem;
  --spacing-lg:         4rem;
  --spacing-xl:         6.5rem;

  --radius:             2px;
  --transition:         400ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast:    200ms ease;

  --shadow-soft:        0 1px 3px rgba(28, 26, 23, 0.04), 0 8px 24px rgba(28, 26, 23, 0.04);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 17px;
  scroll-padding-top: 80px;
  background: #ffffff;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-mid);
  background: var(--color-bg);
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent-soft);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

a:hover {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

::selection { background: var(--color-accent-soft); color: var(--color-text); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--color-text);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-dark);
  margin-bottom: 0.6rem;
}

p { margin-bottom: var(--spacing-sm); }
p:last-child { margin-bottom: 0; }

strong { color: var(--color-text); font-weight: 600; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-accent-dark);
  margin-bottom: 1.25rem;
}

/* Decorative ornament — thin centered line */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--spacing-md) auto;
  color: var(--color-accent);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 0 1 80px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.ornament-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.7;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.content-narrow {
  max-width: var(--max-narrow);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--spacing-xl) 0;
}

.section--cream { background: var(--color-cream); }
.section--white { background: var(--color-white); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--spacing-lg);
}

.section-head .ornament { margin-top: 0; }

/* Info split layout (text + editorial image) */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.info-split-text {
  order: 1;
}

.info-split-media {
  order: 2;
  position: relative;
}

.info-split-frame {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

.info-split-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.info-split-caption {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 860px) {
  .info-split {
    grid-template-columns: 1fr;
  }
  .info-split-media {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  .info-split-frame {
    aspect-ratio: 3 / 2;
  }
}

.center { text-align: center; }

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-line);
  transition: box-shadow var(--transition-fast);
}

body {
  padding-top: 96px;
}

.site-header.header--scrolled {
  box-shadow: 0 2px 12px rgba(28, 26, 23, 0.08);
}

/* ============================================================
   Scroll-to-top Button
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 280ms ease, transform 280ms ease, background var(--transition-fast);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent-dark);
}

.scroll-top svg {
  display: block;
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  gap: var(--spacing-lg);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover { color: var(--color-accent-dark); border: none; }

.logo-img {
  display: block;
  height: auto;
  width: 200px;
  max-width: 200px;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-mid);
  border: none;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition), left var(--transition);
}

.main-nav a:hover { color: var(--color-text); }
.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 1.9rem);
  left: 0.95rem;
}

.main-nav a.active { color: var(--color-text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ============================================================
   Hero — split layout, animated, symmetric balance
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}

/* Full-bleed background image */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.webp') center center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

/* Subtle overlay so text stays readable on the left */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 248, 245, 0.82) 0%,
    rgba(250, 248, 245, 0.55) 45%,
    rgba(250, 248, 245, 0.10) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(440px, 60vh, 620px);
}

.hero-text { text-align: center; }

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 800ms 200ms forwards;
}

.hero h1 {
  max-width: 16ch;
  margin: 0 auto var(--spacing-md);
  opacity: 0;
  animation: fadeUp 900ms 400ms forwards;
}

.hero .lead {
  max-width: 540px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--color-text-mid);
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 900ms 600ms forwards;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--spacing-md) 0;
  opacity: 0;
  animation: fadeIn 1000ms 800ms forwards;
}

.hero-divider .line {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-accent);
  transform-origin: left center;
  animation: lineGrow 1200ms 800ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-divider .line:last-child {
  transform-origin: right center;
}

.hero-divider .diamond {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  transform: rotate(45deg);
  opacity: 0.85;
}

/* Hero Media (image) */
.hero-media {
  position: relative;
  opacity: 0;
  animation: fadeIn 1400ms 300ms forwards;
}

.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-cream);
  box-shadow:
    0 1px 2px rgba(28, 26, 23, 0.06),
    0 20px 60px -15px rgba(28, 26, 23, 0.15);
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(250, 248, 245, 0.55) 0%,
    rgba(250, 248, 245, 0.10) 35%,
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 3;
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

/* Hero corner ornaments — premium framing */
.hero-frame .corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--color-accent);
  z-index: 4;
  pointer-events: none;
}

@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}

/* Hero collage — three overlapping floating cards */
.hero-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
}

.hero-collage-card {
  position: absolute;
  overflow: hidden;
  border-radius: 3px;
  box-shadow:
    0 4px 12px rgba(28, 26, 23, 0.10),
    0 20px 50px -10px rgba(28, 26, 23, 0.22);
  will-change: transform;
}

.hero-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card 1 — woman portrait, top-left, largest, slight CCW tilt */
.hero-collage-card--1 {
  width: 68%;
  aspect-ratio: 3 / 4;
  top: 0;
  left: 0;
  z-index: 2;
  animation: float1 7s ease-in-out infinite;
}

/* Card 2 — beauty still-life, bottom-right, medium, CW tilt */
.hero-collage-card--2 {
  width: 68%;
  aspect-ratio: 4 / 3;
  bottom: 0;
  right: 0;
  z-index: 3;
  animation: float2 8.5s ease-in-out infinite;
}

/* Card 3 — surgery / warning, middle overlap, slight CW tilt */
.hero-collage-card--3 {
  width: 72%;
  aspect-ratio: 4 / 3;
  bottom: 32%;
  right: -18%;
  z-index: 1;
  animation: float3 6s ease-in-out infinite;
  opacity: 0.88;
}

@keyframes float1 {
  0%   { transform: rotate(-3deg) translateY(0px); }
  50%  { transform: rotate(-3deg) translateY(-10px); }
  100% { transform: rotate(-3deg) translateY(0px); }
}

@keyframes float2 {
  0%   { transform: rotate(2.5deg) translateY(0px); }
  50%  { transform: rotate(2.5deg) translateY(-8px); }
  100% { transform: rotate(2.5deg) translateY(0px); }
}

@keyframes float3 {
  0%   { transform: rotate(1deg) translateY(0px); }
  50%  { transform: rotate(1deg) translateY(-12px); }
  100% { transform: rotate(1deg) translateY(0px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-collage-card { animation: none !important; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes glow {
  0%   { transform: translateX(-50%) scale(1);   opacity: 0.9; }
  100% { transform: translateX(-50%) scale(1.1); opacity: 1; }
}

/* ============================================================
   Page Header (inner pages)
   ============================================================ */
.page-header {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.5;
}

.page-header h1 { margin-bottom: var(--spacing-sm); }

.page-header .lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-text-mid);
  font-weight: 300;
}

/* Overlay header — full-width image, text over left area */
.page-header--overlay {
  padding: 0;
  border-bottom: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 52vw, 580px);
}

.page-header--overlay::after { display: none; }

/* Gradient over the left part so text is legible */
.page-header--overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 248, 245, 0.97) 0%,
    rgba(250, 248, 245, 0.92) 30%,
    rgba(250, 248, 245, 0.55) 52%,
    rgba(250, 248, 245, 0.0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

.page-header-overlay-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  z-index: 0;
}

.page-header-overlay-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 5rem);
  max-width: 52%;
  min-height: clamp(380px, 52vw, 580px);
}

.page-header-overlay-text .page-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 800ms 200ms forwards;
}

.page-header-overlay-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--color-text);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp 900ms 400ms forwards;
}

/* Title group: wraps H1 + divider so divider stretches to exactly H1 width */
.page-header-title-group {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  align-self: center;
}

.page-header-overlay-text .page-header-divider {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeIn 1000ms 600ms forwards;
}

.page-header-overlay-text .page-header-divider .line {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-accent);
  transform-origin: left center;
  animation: lineGrow 1200ms 600ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.page-header-overlay-text .page-header-divider .line:last-child {
  transform-origin: right center;
}

.page-header-overlay-text .page-header-divider .diamond {
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .page-header-overlay-text .page-header-eyebrow,
  .page-header-overlay-text h1,
  .page-header-overlay-text .lead,
  .page-header-overlay-text .page-header-divider { animation: none; opacity: 1; }
  .page-header-overlay-text .page-header-divider .line { animation: none; transform: none; }
}

.page-header-overlay-text .lead {
  color: var(--color-text-mid);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  opacity: 0;
  animation: fadeUp 900ms 900ms forwards;
  max-width: 100%;
}

/* Centered variant — text in the middle over full-bleed image */
.page-header--overlay-center::before {
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 245, 0.55) 0%,
    rgba(250, 248, 245, 0.72) 50%,
    rgba(250, 248, 245, 0.55) 100%
  );
}

.page-header--overlay-center .page-header-overlay-text {
  max-width: 100%;
  min-height: clamp(380px, 52vw, 580px);
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 8vw, 8rem);
}

.page-header--overlay-center .page-header-overlay-text::before {
  display: none;
}

.page-header--overlay-center .page-header-overlay-text .lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.page-header--overlay-center .page-header-title-group {
  align-self: center;
}

.page-header--overlay-center .page-header-overlay-text .page-header-divider {
  justify-content: center;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 260px;
  margin: 0.75rem auto 1.5rem auto;
}

.section-divider .line {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--color-accent);
  transform-origin: left center;
  animation: lineGrow 1200ms 200ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.section-divider .line:last-child {
  transform-origin: right center;
}

.section-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .section-divider .line { animation: none; transform: none; }
}



@media (max-width: 860px) {
  .page-header--overlay::before {
    background: rgba(250, 248, 245, 0.88);
  }
  .page-header-overlay-text {
    max-width: 100%;
    min-height: unset;
    padding: 2.5rem 1.5rem;
  }
}

/* Shared full-bleed image header (top10, kosten, etc.) */
.page-header--image {
  padding: 0;
  border-bottom: none;
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.page-header--image::after { display: none; }

.page-header--image .page-header-img {
  position: relative;
  overflow: hidden;
}

.page-header--image .page-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-header--image .page-header-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,245,0.2) 0%, transparent 60%);
}

.page-header--image .page-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 4rem);
  background: var(--color-bg);
  position: relative;
}

.page-header--image .page-header-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.page-header--image .page-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.page-header--image h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.page-header--image .page-header-divider {
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 1.5rem;
}

.page-header--image .lead {
  color: var(--color-text-mid);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 460px;
  margin: 0;
}

@media (max-width: 860px) {
  .page-header--image {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .page-header--image .page-header-img { height: 260px; }
  .page-header--image .page-header-text::before { display: none; }
  .page-header--image .page-header-text { text-align: center; align-items: center; }
  .page-header--image .lead { text-align: center; }
}

/* Top10 full-bleed image header */
.page-header--top10 {
  padding: 0;
  border-bottom: none;
  background: var(--color-bg);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.page-header--top10::after { display: none; }

.page-header--top10 .page-header-img {
  position: relative;
  overflow: hidden;
}

.page-header--top10 .page-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.page-header--top10 .page-header-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,26,23,0.35) 0%, transparent 60%);
}

.page-header--top10 .page-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 4rem);
  background: var(--color-bg);
  position: relative;
}

.page-header--top10 .page-header-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.page-header--top10 .page-header-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.page-header--top10 h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.page-header--top10 .page-header-divider {
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 1.5rem;
}

.page-header--top10 .lead {
  color: var(--color-text-mid);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 460px;
  margin: 0;
}

@media (max-width: 860px) {
  .page-header--top10 {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .page-header--top10 .page-header-img {
    height: 280px;
  }
  .page-header--top10 .page-header-text::before { display: none; }
  .page-header--top10 .page-header-text { text-align: center; align-items: center; }
  .page-header--top10 .lead { text-align: center; }
}

/* ============================================================
   Alert Box
   ============================================================ */
/* ============================================================
   Premium Notice Section — medizinischer Hinweis
   ============================================================ */
.notice-section {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  border-top: 1px solid rgba(184, 149, 106, 0.25);
  border-bottom: 1px solid rgba(184, 149, 106, 0.25);
}

/* Background image — atmospheric, blurred, low opacity */
.notice-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.notice-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.06;
  filter: blur(3px) saturate(0.5);
  transform: scale(1.05);
}

/* Soft gold radial glow behind content */
.notice-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    closest-side,
    rgba(184, 149, 106, 0.12),
    rgba(184, 149, 106, 0.02) 55%,
    transparent 75%
  );
  z-index: 1;
  pointer-events: none;
}

.notice-section::after { display: none; }

.notice-section .container {
  position: relative;
  z-index: 2;
}

.notice-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text);
}

/* Top & bottom decorative lines with diamond */
.notice-top-line,
.notice-bottom-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.notice-bottom-line {
  margin-bottom: 0;
  margin-top: 2.5rem;
}

.notice-top-line .line,
.notice-bottom-line .line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent-dark), transparent);
}

.notice-top-line .diamond,
.notice-bottom-line .diamond {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

/* Icon with pulse glow */
.notice-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 0.75rem;
  color: var(--color-accent);
}

.notice-icon svg {
  position: relative;
  z-index: 2;
}

.notice-icon-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(184, 149, 106, 0.35),
    transparent 70%
  );
  animation: noticePulse 2.8s ease-in-out infinite;
  z-index: 1;
}

@keyframes noticePulse {
  0%, 100% { transform: scale(0.85); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.notice-eyebrow {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.notice-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-text);
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

.notice-divider {
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 2rem;
}

.notice-lead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--color-text-mid);
  margin: 0 auto 1.5rem;
  max-width: 640px;
}

.notice-text {
  font-size: 0.92rem;
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.8;
  color: var(--color-text-soft);
  margin: 0 auto;
  max-width: 580px;
}

@media (max-width: 600px) {
  .notice-icon { width: 76px; height: 76px; }
  .notice-icon svg { width: 50px; height: 50px; }
  .notice-top-line .line,
  .notice-bottom-line .line { width: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .notice-icon-pulse,
  .notice-section::before { animation: none; }
}

/* ============================================================
   Lists
   ============================================================ */
.content-list,
.bullet-list {
  list-style: none;
  margin: var(--spacing-sm) 0;
  padding: 0;
}

.content-list li,
.bullet-list li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--color-line-soft);
  font-size: 0.975rem;
  color: var(--color-text-mid);
}

.content-list li::before,
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

.content-list--centered {
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.alert-box--inline {
  margin-top: var(--spacing-md);
}

/* ============================================================
   Topic Grid (Startseite Übersicht) — symmetric, centered
   ============================================================ */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--spacing-md);
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.topic-item {
  padding: var(--spacing-md) var(--spacing-md) calc(var(--spacing-md) + 0.5rem);
  background: var(--color-white);
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  text-align: center;
  position: relative;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.topic-item:hover {
  background: var(--color-bg);
}

.topic-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 0.6rem;
  letter-spacing: 0.1em;
}

.topic-item h3 {
  margin-bottom: 0.85rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.topic-item h3 a {
  color: var(--color-text);
  border: none;
  transition: color var(--transition-fast);
}

.topic-item h3 a::before {
  content: '';
  position: absolute;
  inset: 0;
}

.topic-item h3 a::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  margin: 0.65rem auto 0.85rem;
  transition: width var(--transition);
}

.topic-item:hover h3 a { color: var(--color-accent-dark); }
.topic-item:hover h3 a::after { width: 50px; }

.topic-item p {
  font-size: 0.93rem;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   Table
   ============================================================ */
.table-wrapper {
  overflow-x: auto;
  margin: var(--spacing-md) auto var(--spacing-sm);
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

thead {
  background: transparent;
}

th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent-dark);
  border-bottom: 1px solid var(--color-accent);
}

td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-line-soft);
  color: var(--color-text-mid);
}

tr:last-child td { border-bottom: none; }
tbody tr { transition: background var(--transition-fast); }
tbody tr:hover { background: var(--color-bg); }

td:first-child {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--color-text);
}

.table-note {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  margin-top: var(--spacing-sm);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   OP Detail Sections (top10.html)
   ============================================================ */
/* ============================================================
   Top 10 — full-width op entries
   ============================================================ */

.op-entries-wrap {
  padding: var(--spacing-md);
  max-width: 100%;
}

.op-entry {
  margin: 0 0 1.5rem;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  width: 100%;
}

.op-entry:last-child { margin-bottom: 0; }

.op-entry--alt { background: var(--color-cream); }

.op-entry-head {
  padding: 1.25rem var(--spacing-md) 1rem;
}

.op-entry-head .container {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  max-width: none;
  margin: 0;
  padding: 0;
}

.op-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.5;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.op-entry-head-text { flex: 1; }

.op-entry-head-text h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.op-entry-head-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-mid);
  max-width: 780px;
  margin: 0;
  line-height: 1.5;
}

.op-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: var(--spacing-md);
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.op-details-item {
  padding: 1.25rem 1.5rem;
  background: transparent;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

@media (max-width: 768px) {
  .op-details { grid-template-columns: 1fr; }
}

.op-details-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}

.op-details-item p {
  font-size: 0.93rem;
  color: var(--color-text-mid);
  margin: 0;
  line-height: 1.8;
}

.op-details-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.op-details-item ul li {
  padding: 0.55rem 0 0.55rem 1.25rem;
  position: relative;
  font-size: 0.93rem;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-line-soft);
  line-height: 1.5;
}

.op-details-item ul li:last-child {
  border-bottom: none;
}

.op-details-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

@media (max-width: 768px) {
  .op-details { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .op-entry-head .container { flex-direction: column; gap: 0.25rem; }
  .op-num { font-size: 2.5rem; }
}

/* ============================================================
   Steps (numbered)
   ============================================================ */
.steps {
  list-style: none;
  counter-reset: step-counter;
  margin: var(--spacing-sm) 0;
}

.steps li {
  counter-increment: step-counter;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-bottom: 1px solid var(--color-line-soft);
  font-size: 0.96rem;
  color: var(--color-text-mid);
}

.steps li::before {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.05rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item:first-child { border-top: 1px solid var(--color-line); }

.faq-item details {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--color-text);
  line-height: 1.35;
  -webkit-user-select: none;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--color-accent); }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-right: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(45deg) translateY(-3px);
  transition: transform var(--transition);
}

.faq-item details[open] summary { color: var(--color-accent); }

.faq-item details[open] summary::after {
  transform: rotate(-135deg) translateY(-3px);
}

.faq-answer {
  font-size: 0.98rem;
  color: var(--color-text-mid);
  margin: 0;
  padding: 0 0 1.5rem 0;
  line-height: 1.8;
  animation: faqOpen 300ms ease forwards;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { animation: none; }
}

/* ============================================================
   Timeline table
   ============================================================ */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-sm) 0;
  font-size: 0.93rem;
}

.timeline-table th {
  background: transparent;
  color: var(--color-accent-dark);
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-accent);
}

.timeline-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--color-line-soft);
  color: var(--color-text-mid);
}

.timeline-table td:first-child {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-dark);
}

/* ============================================================
   Warning block
   ============================================================ */
.warning-box {
  border: 1px solid var(--color-line);
  border-left: 3px solid #b85a3e;
  padding: var(--spacing-md);
  background: #fbf3ef;
  margin: var(--spacing-md) 0;
}

.warning-box h3 {
  font-family: var(--font-sans);
  color: #8a3a22;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.warning-box p {
  font-size: 0.9rem;
  color: #7b2020;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.warning-box ul { list-style: none; padding: 0; margin: 0; }

.warning-box ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.94rem;
  color: #6b2a18;
  border-bottom: 1px solid #f0d8cc;
}

.warning-box ul li:last-child { border-bottom: none; }

.warning-box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 8px;
  height: 1px;
  background: #b85a3e;
}

/* ============================================================
   Source note
   ============================================================ */
.source-note {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  border-top: 1px solid var(--color-line);
  padding-top: var(--spacing-sm);
  margin-top: var(--spacing-md);
  font-style: italic;
}

/* ============================================================
   Kosten-Seite — gegliederte Abschnitte
   ============================================================ */
.kosten-block {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg);
}

.kosten-block--alt {
  background: var(--color-cream);
}

.kosten-block:last-of-type {
  border-bottom: none;
}

.kosten-block-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.kosten-block-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.4rem;
  position: sticky;
  top: 110px;
}

.kosten-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.kosten-block-label .eyebrow {
  color: var(--color-accent-dark);
}

.kosten-block-content h2 {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
}

.kosten-block-content p {
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.kosten-block-content p:last-child {
  margin-bottom: 0;
}

.kosten-block-content strong {
  color: var(--color-text);
  font-weight: 600;
}

/* List in one column */
.kosten-grid-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.kosten-grid-list li {
  padding: 0.7rem 1rem 0.7rem 1.25rem;
  position: relative;
  font-size: 0.93rem;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-line-soft);
  line-height: 1.5;
}

.kosten-grid-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

/* Bottom hinweis bar */
.kosten-hinweis {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--color-accent-soft);
  border-left: 3px solid var(--color-accent);
}

.kosten-hinweis-icon {
  color: var(--color-accent-dark);
  flex-shrink: 0;
}

.kosten-hinweis p {
  font-size: 0.92rem;
  color: var(--color-alert-text);
  line-height: 1.7;
  margin: 0;
}

/* Emergency block — same style as notice-section on homepage */
.kosten-block--emergency {
  background: var(--color-cream) !important;
  border-top: 1px solid rgba(184, 149, 106, 0.25);
  border-bottom: 1px solid rgba(184, 149, 106, 0.25);
}

.kosten-block--emergency .kosten-num {
  color: var(--color-accent);
  opacity: 0.4;
}

.kosten-block--emergency .kosten-block-label .eyebrow {
  color: var(--color-accent-dark);
}

.kosten-block--emergency .kosten-block-content h2 {
  color: var(--color-text);
  border-bottom-color: var(--color-line);
}

.kosten-block--emergency .kosten-block-content p {
  color: var(--color-text-mid);
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-accent);
}

.emergency-header h2 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  color: var(--color-text) !important;
}

.emergency-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.emergency-list li {
  padding: 0.8rem 1rem 0.8rem 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  border-bottom: 1px solid var(--color-line-soft);
  line-height: 1.5;
}

.emergency-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

.emergency-note {
  margin-top: 1.5rem !important;
  padding: 1rem 1.25rem;
  background: var(--color-accent-soft);
  border-left: 3px solid var(--color-accent);
  font-size: 0.97rem !important;
  color: var(--color-alert-text) !important;
}

.emergency-note strong {
  color: var(--color-text) !important;
  font-size: 1.05rem;
}

@media (max-width: 860px) {
  .kosten-block-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .kosten-block-label {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    position: static;
  }
  .kosten-num { font-size: 2.5rem; margin-bottom: 0; }
  .kosten-grid-list { grid-template-columns: 1fr; }
  .emergency-list { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-stagger.is-visible > *           { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 500ms; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-text);
  color: #b8b1a8;
  padding: var(--spacing-lg) 0 var(--spacing-md);
  margin-top: 0;
}

.footer-top {
  text-align: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid #2e2a25;
  margin-bottom: var(--spacing-md);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  display: block;
  height: auto;
  width: 200px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 0.75rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #908a82;
  max-width: 720px;
  margin: 0 auto var(--spacing-md);
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-nav a {
  font-size: 0.82rem;
  color: #b8b1a8;
  border: none;
  letter-spacing: 0.04em;
}

.footer-nav a:hover { color: var(--color-cream); border: none; }

.footer-cookie-btn {
  background: none;
  border: none;
  font-size: 0.82rem;
  color: #b8b1a8;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-cookie-btn:hover {
  color: var(--color-cream);
  text-decoration-color: currentColor;
}

.footer-copy {
  font-size: 0.78rem;
  color: #6b6660;
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
}

.footer-copy a {
  border-bottom: none;
  text-decoration: none;
}

/* ============================================================
   Cookie Banner — Modal
   ============================================================ */
.cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.cookie-overlay.is-visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: var(--color-cream);
  border: 1px solid var(--color-accent-soft);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  width: calc(100% - 2rem);
  max-width: 420px;
  box-shadow: 0 8px 40px rgba(28, 26, 23, 0.18);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cookie-banner__link {
  color: var(--color-accent);
  text-underline-offset: 3px;
}

.cookie-banner__link:hover {
  color: var(--color-accent-dark);
}

.cookie-banner__options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text);
}

.cookie-option--disabled {
  cursor: default;
  opacity: 0.7;
}

.cookie-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-option__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.cookie-option input[type="checkbox"]:checked + .cookie-option__box {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.cookie-option input[type="checkbox"]:checked + .cookie-option__box::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.cookie-option input[type="checkbox"]:focus-visible + .cookie-option__box {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.cookie-option__note {
  font-size: 0.78rem;
  color: var(--color-text-soft);
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.cookie-btn {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.cookie-btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.cookie-btn--primary:hover {
  background: var(--color-accent-dark);
}

.cookie-btn--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.cookie-btn--secondary:hover {
  background: var(--color-accent-soft);
}

.cookie-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================================
   Large screens — scale up gracefully
   ============================================================ */

/* 1400px+: mehr Luft im Container */
@media (min-width: 1400px) {
  :root {
    --spacing-xl: 8rem;
    --spacing-lg: 5rem;
  }

  html { font-size: 18px; }

  .container {
    padding: 0 clamp(2rem, 4vw, 6rem);
  }

  .header-inner {
    height: 108px;
  }

  .hero-grid {
    min-height: clamp(520px, 65vh, 780px);
  }
}

/* 1800px+: maximale Skalierung, Schrift & Spacing weiter erhöhen */
@media (min-width: 1800px) {
  html { font-size: 19px; }

  .container {
    padding: 0 clamp(4rem, 6vw, 10rem);
  }

  .hero-grid {
    min-height: clamp(600px, 70vh, 900px);
  }

  .page-header--overlay,
  .page-header--image,
  .page-header--top10 {
    min-height: clamp(480px, 55vw, 700px);
  }

  .page-header-overlay-text {
    min-height: clamp(480px, 55vw, 700px);
  }

  .page-header--overlay-center .page-header-overlay-text {
    min-height: clamp(480px, 55vw, 700px);
  }

  .kosten-block-inner {
    grid-template-columns: 260px 1fr;
  }

  .op-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  /* op-meta legacy removed */
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }

  .hero-text { text-align: center; }

  .hero h1 { margin-left: auto; margin-right: auto; }

  .hero .lead { margin-left: auto; margin-right: auto; }

  .hero-divider { justify-content: center; }
  .hero-divider .line { transform-origin: center; }

  .hero-media { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }

  .hero-frame { aspect-ratio: 5 / 4; }

  .hero-frame img { object-position: 75% 30%; }

  .hero-collage { aspect-ratio: 1 / 0.85; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    padding: var(--spacing-xs) 0;
  }

  .main-nav a {
    padding: 1rem var(--spacing-md);
    border-bottom: 1px solid var(--color-line-soft);
    font-size: 0.95rem;
  }

  .main-nav a::after { display: none; }

  .topic-grid { grid-template-columns: 1fr; }

  .section { padding: var(--spacing-lg) 0; }

  .hero { padding: clamp(3.5rem, 10vw, 5rem) 0; }

  /* Alle Texte zentrieren */
  body, p, h1, h2, h3, h4, li,
  .eyebrow, .lead, .notice-lead, .notice-text,
  .kosten-block-content, .kosten-block-label,
  .op-entry-head-text, .op-details-item,
  .page-header-overlay-text, .page-header--image .page-header-text,
  .page-header--top10 .page-header-text,
  .info-split-text, .section-head,
  .table-note, .source-note, .footer-disclaimer,
  .content-list li, .bullet-list li, .steps li,
  .faq-item summary {
    justify-content: center;
    text-align: center;
  }

  .faq-item summary, .faq-answer,
  .warning-box, .kosten-hinweis {
    text-align: center;
  }

  .content-list li, .bullet-list li, .steps li {
    text-align: left;
    padding-left: 1.5rem;
  }

  .kosten-hinweis {
    flex-direction: column;
    align-items: center;
  }

  .page-header--image .page-header-text::before,
  .page-header--top10 .page-header-text::before { display: none; }

  .info-split-media { order: -1; }

  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-nav a,
  .footer-cookie-btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid #2e2a25;
  }

  .footer-nav a:first-child {
    border-top: 1px solid #2e2a25;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  th, td { padding: 0.75rem 0.85rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
