/* ==========================================================================
   Juwelier Gabriel — Modern Light Edition
   Helles Cream/Weiß als Basis, Gold-Akzent, dunkle Sektionen als Rhythmus.
   Mobile-first · mehr Weißraum · stärkere Interaktion.
   ========================================================================== */

:root {
  color-scheme: light;

  /* Surfaces */
  --bg: #fbf8f3;
  --bg-alt: #ffffff;
  --bg-soft: #f3ede3;
  --bg-dark: #14110e;
  --bg-dark-2: #1e1a15;

  /* Ink */
  --ink: #17140f;
  --ink-soft: #4a443c;
  --ink-muted: #8a8074;
  --cream: #f7f1e6;
  --cream-dim: #e8dfcf;

  /* Gold — darker text-gold for AA contrast, warm accent for decoration */
  --gold: #9b7420;            /* text on cream: 5.1:1 ✓ AA */
  --gold-warm: #d4a84a;       /* decorative only (dark bg) */
  --gold-deep: #6f520f;
  --gold-ghost: rgba(155,116,32,.12);

  /* Second accent — Burgundy for callouts / special CTAs */
  --accent: #6b1e2a;
  --accent-soft: rgba(107,30,42,.08);

  /* Lines & shadow */
  --line: rgba(23,20,15,.11);
  --line-strong: rgba(23,20,15,.22);
  --line-dark: rgba(23,20,15,.11);
  --shadow-sm: 0 2px 8px -2px rgba(23,20,15,.06);
  --shadow-md: 0 20px 50px -20px rgba(23,20,15,.18);
  --shadow-lg: 0 40px 90px -28px rgba(23,20,15,.28);
  --shadow-gold: 0 16px 40px -16px rgba(155,116,32,.35);

  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Font stacks */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}

/* ======= DARK THEME ======= */
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f0d0a;
  --bg-alt: #17140f;
  --bg-soft: #1a1611;
  --bg-dark: #0a0906;
  --bg-dark-2: #14110e;
  --ink: #f4ecdb;
  --ink-soft: #c7bda9;
  --ink-muted: #8c8370;
  --cream: #f7f1e6;
  --cream-dim: #d7ccb4;
  --gold: #d4a84a;
  --gold-warm: #e8c678;
  --gold-deep: #9b7420;
  --gold-ghost: rgba(212,168,74,.14);
  --accent: #d4605e;
  --accent-soft: rgba(212,96,94,.12);
  --line: rgba(247,241,230,.1);
  --line-strong: rgba(247,241,230,.2);
  --line-dark: rgba(247,241,230,.08);
  --shadow-sm: 0 2px 8px -2px rgba(0,0,0,.4);
  --shadow-md: 0 20px 50px -20px rgba(0,0,0,.6);
  --shadow-lg: 0 40px 90px -28px rgba(0,0,0,.8);
  --shadow-gold: 0 16px 40px -16px rgba(212,168,74,.35);
}

/* Light-only — system dark mode no longer auto-applies */

html { overscroll-behavior-y: contain; }
@supports (view-transition-name: root) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root), ::view-transition-new(root) {
    animation-duration: .42s;
    animation-timing-function: cubic-bezier(.22, .61, .36, 1);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'kern', 'liga';
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.mono, .num, time, .hero-split__meta strong, .route-card__stats strong, .rating-badge__score,
.price-strip__item span, .hero-live__label time {
  font-family: var(--font-mono);
  font-feature-settings: 'tnum' 1, 'cv01' 1, 'zero' 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
}
::selection { background: var(--gold); color: #fff; }
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 .6em;
  color: var(--ink);
}
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
p { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 600; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.25rem);
}
@media (max-width: 400px) {
  .container { padding: 0 .85rem; }
}
.container--narrow { max-width: 860px; }
.container--wide { max-width: 1440px; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-warm));
  transform-origin: 0 50%;
  transform: scaleX(var(--progress, 0));
  z-index: 200;
  transition: transform .05s linear;
  pointer-events: none;
}

/* ------ Buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold) 55%, var(--gold-deep));
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -18px rgba(155,116,32,.5); }
.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--ghost:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn--ink {
  background: var(--ink);
  color: var(--cream);
}
.btn--ink:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn--outline-light {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--link {
  background: transparent;
  color: var(--gold);
  padding: .95rem .4rem;
  border: 0;
  border-radius: 0;
  min-height: auto;
  letter-spacing: .12em;
  position: relative;
}
.btn--link::after {
  content: '';
  position: absolute;
  left: .4rem;
  right: .4rem;
  bottom: .75rem;
  height: 1.5px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(.4);
  transition: transform .4s var(--ease);
}
.btn--link:hover { color: var(--gold-deep); transform: none; }
.btn--link:hover::after { transform: scaleX(1); }

/* Nav tools cluster (search + theme toggle) */
.nav__tools {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: 0 .25rem;
  border-left: 1px solid var(--line);
  margin-left: .25rem;
}
.nav__tools a::after { display: none; }
.nav__tools::after { display: none; }
@media (max-width: 980px) {
  .nav__tools { border-left: 0; margin-left: 0; padding: .75rem 0; justify-content: flex-start; gap: .75rem; }
}

/* ------ Topbar / Nav ------ */
.topbar {
  background: var(--bg-soft);
  color: var(--ink-muted);
  font-size: .72rem;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--line);
}
.topbar__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 1rem;
}
.topbar__contact { display: flex; gap: .6rem; align-items: center; }
.topbar__contact a { color: var(--gold); font-weight: 600; }
.topbar__contact a:hover { color: var(--gold-deep); }
.topbar__sep { opacity: .35; }
.topbar__item { color: var(--ink-muted); }
@media (max-width: 720px) {
  .topbar__item { display: none; }
  .topbar__wrap { justify-content: center; }
}
:root[data-theme="dark"] .topbar {
  background: var(--bg-dark-2);
  color: var(--ink-muted);
  border-bottom-color: var(--line);
}
:root[data-theme="dark"] .topbar__contact a { color: var(--gold-warm); }
:root[data-theme="dark"] .topbar__contact a:hover { color: #fff; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled {
  background: #fff;
  border-bottom-color: rgba(155,116,32,.2);
  box-shadow: 0 6px 24px -14px rgba(23,20,15,.15);
}
@media (min-width: 981px) {
  .nav {
    background: rgba(251,248,243,.92);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
  }
  .nav.is-scrolled { background: rgba(255,255,255,.96); }
}
.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1.5rem;
  transition: min-height .4s var(--ease);
}
.nav.is-scrolled .nav__wrap { min-height: 68px; }
.nav__logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
  flex: 0 1 auto;
}
.nav__logo img {
  width: 50px; height: 50px;
  object-fit: contain;
  transition: width .4s var(--ease), height .4s var(--ease);
  flex-shrink: 0;
}
.nav.is-scrolled .nav__logo img { width: 42px; height: 42px; }
.nav__brand {
  display: flex; flex-direction: column;
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  min-width: 0;
}
.nav__brand em {
  font-size: .66rem;
  font-style: italic;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.nav__brand strong {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav__menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  align-items: center;
}
.nav__menu a {
  color: var(--ink-soft);
  position: relative;
  padding: .75rem 0;
  display: inline-flex;
  align-items: center;
}
.nav__menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--gold);
  transition: right .45s var(--ease);
  border-radius: 2px;
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--ink); }
.nav__menu a:hover::after, .nav__menu a.is-active::after { right: 0; }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold) 55%, var(--gold-deep)) !important;
  color: #fff !important;
  padding: .65rem 1.25rem !important;
  border-radius: 999px;
  font-size: .78rem !important;
  letter-spacing: .06em !important;
  transition: all .3s var(--ease);
  box-shadow: 0 4px 16px -4px rgba(155,116,32,.25);
}
.nav__cta::after { display: none; }
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -6px rgba(155,116,32,.4); }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
  transition: background .3s var(--ease);
}
.nav__burger:hover { background: rgba(212,168,74,.12); }
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__burger { display: flex; }
  .nav__wrap { min-height: 72px; gap: .75rem; }
  .nav.is-scrolled .nav__wrap { min-height: 64px; }
  .nav__menu {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .nav__cta { width: 100%; display: flex; justify-content: center; }
}
@media (max-width: 620px) {
  .nav__logo img { width: 42px; height: 42px; }
  .nav.is-scrolled .nav__logo img { width: 38px; height: 38px; }
  .nav__brand strong { font-size: 1.25rem; }
  .nav__brand em { font-size: .58rem; letter-spacing: .22em; margin-bottom: 2px; }
  .nav__wrap { min-height: 66px; gap: .5rem; }
  .nav.is-scrolled .nav__wrap { min-height: 58px; }
}
@media (max-width: 400px) {
  .nav__logo { gap: .55rem; }
  .nav__brand strong { font-size: 1.1rem; }
  .nav__brand em { font-size: .54rem; letter-spacing: .2em; }
  .nav__burger { width: 40px; height: 40px; }
}

/* ------ Sections base ------ */
.section { padding: clamp(2.25rem, 7vw, 6.5rem) 0; position: relative; }
.section--tight { padding: clamp(2rem, 5vw, 5rem) 0; }
.section--paper { background: var(--bg-alt); }
.section--bg-2 { background: var(--bg-soft); }
/* "section--dark" is now a warm cream contrast band — kept name to avoid server.js churn */
.section--dark {
  background: var(--bg-soft);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ink); }
.section--dark p { color: var(--ink-soft); }
.section--dark strong { color: var(--ink); }
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 0%, rgba(155,116,32,.07), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 100%, rgba(107,30,42,.05), transparent 60%);
  pointer-events: none;
}
.section--dark .container { position: relative; }

/* --- Color variants — neue, dezent kolorierte Section-Varianten --- */
.section--rose {
  background:
    linear-gradient(180deg, rgba(212,168,74,.04), transparent 40%),
    linear-gradient(0deg, rgba(107,30,42,.05), var(--bg-alt) 60%);
  border-top: 1px solid rgba(107,30,42,.10);
  border-bottom: 1px solid rgba(107,30,42,.10);
  position: relative;
}
.section--rose::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 0%, rgba(107,30,42,.08), transparent 60%);
  pointer-events: none;
}
.section--rose .container { position: relative; }
.section--rose .section__eyebrow,
.section--rose .paper-eyebrow { color: var(--accent); }
.section--rose .section__eyebrow::before,
.section--rose .section__eyebrow::after,
.section--rose .paper-eyebrow::before,
.section--rose .paper-intro .paper-eyebrow::after {
  background: var(--accent); opacity: .55;
}
.section--rose .section__title em { color: var(--accent); font-style: italic; }

.section--sage {
  background: linear-gradient(180deg, rgba(155,116,32,.03), var(--bg-alt) 50%, rgba(155,116,32,.04));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__intro {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.section__eyebrow,
.paper-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.section__eyebrow::before,
.section__eyebrow::after,
.paper-eyebrow::before {
  content: '';
  width: 1.75rem; height: 1px;
  background: var(--gold);
  opacity: .6;
}
.paper-eyebrow::before { width: 2rem; }
.section--dark .section__eyebrow { color: var(--gold-warm); }
.section__title {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  margin-bottom: 1.1rem;
  line-height: 1.08;
}
.section__lead {
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
}
.paper-intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.paper-intro .paper-eyebrow::after {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold);
  opacity: .6;
}

/* ------ Hero split ------ */
.hero-split {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-split.section--dark {
  background: var(--bg-soft);
}
.hero-split::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(212,168,74,.10), transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 90%, rgba(107,30,42,.08), transparent 60%);
  pointer-events: none;
}
.hero-split .container { position: relative; }
.hero-split__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-split__text { position: relative; z-index: 2; }
.hero-split__num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: .75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold);
  font-weight: 600;
}
.hero-split__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: .96;
  margin: 0 0 1.2rem;
  letter-spacing: -.03em;
  font-weight: 500;
  color: var(--ink);
  word-break: break-word;
}
.hero-split__title .amp { color: var(--gold); }
.hero-split.section--dark .hero-split__title { color: var(--ink); }
.hero-split__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  font-weight: 400;
  line-height: 1.3;
}
.hero-split.section--dark .hero-split__tagline { color: var(--ink-soft); }
.hero-split__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.25rem;
  color: var(--ink-soft);
}
.hero-split__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.5rem;
}
.hero-split__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-split.section--dark .hero-split__meta { border-top-color: var(--line); }
.hero-split__meta > div { display: flex; flex-direction: column; gap: .25rem; }
.hero-split__meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.hero-split__meta span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-split.section--dark .hero-split__meta span { color: var(--ink-muted); }

.hero-split__media {
  position: relative;
  isolation: isolate;
}
.hero-split__outline {
  position: absolute;
  top: -2rem; right: -1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 500;
  color: var(--gold);
  opacity: .08;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  font-style: italic;
}
.hero-split__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transform: rotate(-1deg);
  transition: transform .8s var(--ease);
}
.hero-split__portrait:hover { transform: rotate(0deg) scale(1.015); }
.hero-split__portrait img,
.hero-split__portrait picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.hero-split__portrait:hover img { transform: scale(1.05); }
.hero-split__frame {
  position: absolute;
  inset: 1.5rem -1.25rem -1.5rem 1.5rem;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-xl);
  opacity: .3;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-1deg);
}
.hero-split__rule {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-split.section--dark .hero-split__rule { border-top-color: var(--line); color: var(--ink-muted); }

@media (max-width: 1100px) {
  .hero-split__grid { gap: clamp(2rem, 4vw, 3rem); }
  .hero-split__title { font-size: clamp(2.8rem, 7.2vw, 5.5rem); }
}
@media (max-width: 900px) {
  /* Full-bleed mobile hero — image fills the viewport, text overlays bottom */
  .hero-split { padding: 0; position: relative; min-height: 86vh; overflow: hidden; }
  .hero-split::before { display: none; }
  .hero-split::after { display: none; }
  .hero-split > .container { padding: 0; max-width: none; position: static; }
  .hero-split__grid { display: block; gap: 0; }
  .hero-split__media {
    position: absolute; inset: 0;
    width: 100%; height: 100%; max-width: none; margin: 0;
    order: 0; z-index: 0;
  }
  .hero-split__outline { display: none; }
  .hero-split__portrait {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    transform: none;
    box-shadow: none;
  }
  .hero-split__portrait:hover { transform: none; }
  .hero-split__portrait::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      180deg,
      rgba(15,10,4,.92) 0%,
      rgba(15,10,4,.78) 22%,
      rgba(15,10,4,.5) 45%,
      rgba(15,10,4,.22) 70%,
      rgba(15,10,4,.08) 100%
    );
    pointer-events: none;
    z-index: 1;
  }
  .hero-split__portrait img,
  .hero-split__portrait picture,
  .hero-split__portrait picture > img {
    width: 100% !important; height: 100% !important;
    object-fit: cover; object-position: center;
  }
  .hero-split__frame { display: none; }
  .hero-split__text {
    position: absolute;
    left: 0; right: 0; top: clamp(4.5rem, 14vw, 6rem);
    padding: 0 clamp(1.25rem, 5vw, 2rem) 1.75rem;
    z-index: 2;
    color: #fff;
  }
  .hero-split__num {
    font-size: .68rem; letter-spacing: .22em;
    color: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(255,255,255,.28);
    padding-bottom: .6rem; margin-bottom: 1rem;
  }
  .hero-split__title {
    font-size: clamp(2.5rem, 10.5vw, 4.4rem);
    line-height: .98; margin: 0 0 .75rem; color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
  }
  .hero-split__title .amp { color: var(--gold-warm, #e8c274); }
  .hero-split__title em { color: var(--gold-warm, #e8c274); font-style: italic; }
  .hero-split__tagline {
    font-size: clamp(1rem, 3.6vw, 1.25rem);
    color: rgba(255,255,255,.92);
    margin: 0 0 .5rem;
    text-shadow: 0 1px 10px rgba(0,0,0,.45);
  }
  .hero-split__lead {
    display: none; /* zu viel Text für den Overlay, auf Mobile weglassen */
  }
  .hero-split__ctas {
    margin-top: 1.25rem;
    display: flex; gap: .7rem; flex-wrap: wrap;
  }
  .hero-split__ctas .btn--gold {
    flex: 1 1 auto; min-width: 0;
    padding: .95rem 1.1rem;
    font-size: .82rem; letter-spacing: .06em;
  }
  .hero-split__ctas .btn--link {
    flex: 0 0 auto;
    color: #fff;
    padding: .95rem .25rem;
    font-size: .78rem;
  }
  .hero-live {
    margin-top: 1rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: .72rem; padding: .45rem .8rem;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .hero-live strong { color: #fff; }
  .hero-split__rule { display: none; }
}
@media (max-width: 560px) {
  .hero-split { min-height: 92vh; }
  .hero-split__title { font-size: clamp(2.3rem, 11.5vw, 3.6rem); }
  .hero-split__tagline { font-size: clamp(.95rem, 4vw, 1.2rem); }
  .rating-badge { padding: .5rem .85rem; gap: .5rem; flex-wrap: wrap; }
  .rating-badge__label { font-size: .72rem; }
  .hero-live__loc { display: none; }
  .hero-live__label { white-space: nowrap; }
}
@media (max-width: 400px) {
  .hero-split__ctas .btn--gold { padding: .85rem .9rem; font-size: .76rem; }
  .hero-split__ctas .btn--link { font-size: .72rem; }
}
@media (max-width: 400px) {
  .hero-split__meta { grid-template-columns: 1fr; }
  .hero-split__meta > div:nth-child(3) { grid-column: auto; }
  .hero-split__meta > div { padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
  .hero-split__meta > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-split__title { font-size: clamp(2.2rem, 13vw, 3.2rem); }
}

/* ------ Editorial opener ------ */
.editorial-open {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.editorial-open__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.editorial-open__title {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  margin: 0 auto 2.25rem;
  line-height: 1.1;
  max-width: 820px;
}
.editorial-open__body {
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  color: var(--ink-soft);
}
.editorial-open__body > p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 500;
  float: left;
  line-height: .85;
  padding: .35rem .75rem 0 0;
  color: var(--gold);
}
.editorial-open__rule {
  display: block;
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 2.25rem auto 0;
  border-radius: 2px;
}

/* ------ Price strip ------ */
.price-strip {
  background: linear-gradient(90deg, #fff8ea 0%, #fbf2dc 50%, #fff8ea 100%);
  color: var(--ink);
  padding: 1.2rem 0;
  border-top: 1px solid rgba(155,116,32,.25);
  border-bottom: 1px solid rgba(155,116,32,.25);
  overflow: hidden;
  position: relative;
}
.price-strip__wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.price-strip__label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
.price-strip__dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(155,116,32,.4);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(155,116,32,.45); }
  100% { box-shadow: 0 0 0 8px rgba(155,116,32,0); }
}
.price-strip__items {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}
.price-strip__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.price-strip__item strong {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 3px;
}
.price-strip__item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-deep);
}
.price-strip__note {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--ink-muted);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .price-strip__note { display: none; }
  .price-strip__items { gap: .9rem 1.25rem; justify-content: flex-start; }
  .price-strip__item span { font-size: 1.05rem; }
  .price-strip__wrap { flex-direction: column; align-items: flex-start; gap: .85rem; }
}
@media (max-width: 400px) {
  .price-strip__items { gap: .75rem 1rem; }
  .price-strip__item strong { font-size: .64rem; letter-spacing: .08em; }
  .price-strip__item span { font-size: .95rem; }
}

/* ------ Collection (service grid) ------ */
.collection {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.collection__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.collection__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 0;
  line-height: 1.02;
  max-width: 680px;
}
.collection__meta {
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.6;
}
.collection__meta strong { display: block; color: var(--gold); margin-bottom: .25rem; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(247,241,230,.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease);
}
.collection-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(155,116,32,.06), rgba(107,30,42,.04));
  box-shadow: 0 28px 60px -24px rgba(0,0,0,.45);
}
/* Service-Akzentfarben — jede dritte Karte erhält einen abweichenden Hover-Akzent */
.collection-card:nth-child(3n+2):hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(107,30,42,.07), rgba(155,116,32,.03));
}
.collection-card:nth-child(3n+2):hover .collection-card__num,
.collection-card:nth-child(3n+2):hover .collection-card__eyebrow,
.collection-card:nth-child(3n+2):hover .link-arrow { color: #d4605e; }
.collection-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-dark-2);
}
.collection-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,17,14,.6));
  z-index: 1;
  transition: opacity .5s var(--ease);
}
.collection-card:hover .collection-card__media::after { opacity: .7; }
.collection-card__media img,
.collection-card__media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.collection-card:hover .collection-card__media img { transform: scale(1.08); }
.collection-card__num {
  position: absolute;
  top: 1rem; left: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-warm);
  letter-spacing: .05em;
  z-index: 2;
  background: rgba(20,17,14,.65);
  padding: .35rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.collection-card__eyebrow {
  display: block;
  padding: 1.5rem 1.5rem 0;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 600;
}
.collection-card__title {
  padding: .45rem 1.5rem 0;
  font-size: 1.6rem;
  margin: 0 0 .5rem;
  color: var(--cream);
}
.collection-card__body {
  padding: 0 1.5rem 1rem;
  font-size: .93rem;
  line-height: 1.6;
  color: rgba(247,241,230,.65);
  flex: 1;
  margin: 0;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1.5rem 1.6rem;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 600;
  transition: gap .35s var(--ease);
}
.link-arrow::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform .35s var(--ease);
}
.collection-card:hover .link-arrow { gap: .85rem; }
.collection-card:hover .link-arrow::after { transform: translateX(4px); }

@media (max-width: 960px) { .collection-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) {
  .collection-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .collection-card__eyebrow { padding: 1.25rem 1.25rem 0; }
  .collection-card__title { padding: .4rem 1.25rem 0; font-size: 1.4rem; }
  .collection-card__body { padding: 0 1.25rem 1rem; }
  .link-arrow { padding: 0 1.25rem 1.4rem; }
}
@media (max-width: 620px) {
  .collection__head { flex-direction: column; align-items: flex-start; gap: .5rem; margin-bottom: 2.25rem; }
  .collection__meta { text-align: left; }
}

/* ------ Craft paper block (2 col with image) ------ */
.craft-paper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.craft-paper__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.craft-paper__media img, .craft-paper__media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.craft-paper__media:hover img { transform: scale(1.05); }
.craft-paper__text h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0 0 1.5rem;
  line-height: 1.05;
}
.craft-paper__rule {
  display: block;
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 0 0 1.75rem;
  border-radius: 2px;
}
.craft-paper__text p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.craft-paper__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  padding: .6rem 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.craft-paper__link:hover { gap: .85rem; color: var(--gold-deep); }
@media (max-width: 860px) {
  .craft-paper { grid-template-columns: 1fr; }
  .craft-paper__media { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; width: 100%; }
}

/* ------ Big quote ------ */
.big-quote {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
.big-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4.2vw, 3.2rem);
  font-style: italic;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: var(--cream);
  position: relative;
}
.big-quote blockquote::before {
  content: '"';
  display: block;
  font-size: 5rem;
  color: var(--gold);
  line-height: .5;
  margin-bottom: 1.25rem;
}
.big-quote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,241,230,.55);
  font-weight: 500;
}

/* ------ Process (paper) ------ */
.process-paper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.process-paper__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.process-paper__card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.process-paper__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-warm);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.process-paper__title {
  font-size: 1.45rem;
  margin: 0 .25rem .25rem 0;
  display: inline-block;
}
.process-paper__duration {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .25rem .6rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  vertical-align: middle;
  margin-left: .25rem;
}
.process-paper__desc {
  font-size: .95rem;
  line-height: 1.7;
  margin: .85rem 0 1rem;
}
.process-paper__check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-paper__check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .5rem;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.process-paper__check li::before {
  content: '';
  position: absolute;
  left: 0; top: .55rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ------ Testimonials (swipeable carousel) ------ */
.testimonials-section { overflow: hidden; }
.testimonials {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .25rem .25rem 1.5rem;
  margin: 0 -.25rem;
  scroll-padding-left: .25rem;
}
.testimonials::-webkit-scrollbar { display: none; }
.testimonials::after {
  content: "";
  flex: 0 0 .25rem;
}
.testimonial {
  flex: 0 0 min(360px, 85%);
  scroll-snap-align: start;
  background: rgba(247,241,230,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
@media (min-width: 900px) {
  .testimonial { flex: 0 0 calc((100% - 3rem) / 3); }
}
.testimonials-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 1rem;
  color: rgba(247,241,230,.45);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.testimonials-hint svg { width: 1.05rem; height: 1.05rem; stroke: currentColor; }
.testimonial:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(155,116,32,.06);
}
.testimonial__stars {
  color: var(--gold-warm);
  font-size: 1.05rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.testimonial__cite {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.testimonial__cite strong {
  font-size: .9rem;
  color: #fff;
}
.testimonial__cite span {
  font-size: .75rem;
  color: rgba(247,241,230,.55);
  letter-spacing: .04em;
}
.testimonial__cite small {
  font-size: .68rem;
  color: var(--gold-warm);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: .35rem;
}

/* ------ Ratgeber teaser ------ */
.ratgeber-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ratgeber-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.ratgeber-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.ratgeber-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.ratgeber-card__media img, .ratgeber-card__media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.ratgeber-card:hover .ratgeber-card__media img { transform: scale(1.08); }
.ratgeber-card__body {
  padding: 1.75rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ratgeber-card__meta {
  display: flex;
  gap: .75rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .75rem;
}
.ratgeber-card__meta span + span { color: var(--ink-muted); }
.ratgeber-card__meta span + span::before { content: '·'; margin-right: .75rem; color: var(--ink-muted); }
.ratgeber-card__title {
  font-size: 1.45rem;
  margin: 0 0 .75rem;
  line-height: 1.15;
}
.ratgeber-card__excerpt {
  font-size: .93rem;
  line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 1rem;
}
.ratgeber-card__more {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
@media (max-width: 960px) { .ratgeber-teaser { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .ratgeber-teaser { grid-template-columns: 1fr; } }

/* ------ Trust pillars ------ */
.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.trust-pillar {
  padding: 2rem 1.5rem;
  background: rgba(247,241,230,.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.section--paper .trust-pillar {
  background: var(--bg);
  border-color: var(--line);
}
.trust-pillar:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(155,116,32,.06);
}
.trust-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold-ghost);
  color: var(--gold-warm);
  transition: transform .4s var(--ease);
}
.section--paper .trust-pillar__icon { color: var(--gold); }
.trust-pillar:hover .trust-pillar__icon { transform: scale(1.08) rotate(-4deg); }
.trust-pillar__icon svg { width: 26px; height: 26px; }
.trust-pillar h4 {
  font-family: 'Inter', sans-serif;
  font-size: .98rem;
  letter-spacing: .02em;
  color: var(--cream);
  margin-bottom: .5rem;
  font-weight: 600;
}
.section--paper .trust-pillar h4 { color: var(--ink); }
.trust-pillar p {
  font-size: .88rem;
  color: rgba(247,241,230,.65);
  margin: 0;
  line-height: 1.6;
}
.section--paper .trust-pillar p { color: var(--ink-soft); }

/* ------ Town cloud ------ */
.town-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.town-cloud__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
  transition: all .35s var(--ease);
}
.town-cloud__tag small {
  font-size: .7rem;
  color: var(--ink-muted);
  font-weight: 400;
}
.town-cloud__tag:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
.town-cloud__tag:hover small { color: var(--gold-warm); }

/* ------ CTA band ------ */
.cta-band {
  background: linear-gradient(135deg, #fff8ea 0%, #fbf2dc 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-top: 1px solid rgba(155,116,32,.2);
  border-bottom: 1px solid rgba(155,116,32,.2);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(155,116,32,.18), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(107,30,42,.06), transparent 60%);
  pointer-events: none;
}
.cta-band__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-band h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  color: var(--ink);
  margin: 0;
  max-width: 620px;
  line-height: 1.15;
}
.cta-band h2 em { color: var(--gold); }
.cta-band__ctas { display: flex; gap: .85rem; flex-wrap: wrap; }
@media (max-width: 720px) {
  .cta-band__wrap { flex-direction: column; align-items: flex-start; gap: 1.5rem; text-align: left; }
  .cta-band h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .cta-band__ctas { width: 100%; flex-direction: column; align-items: stretch; }
  .cta-band__ctas .btn { width: 100%; }
}

/* ------ Invitation ------ */
.invitation {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.invitation__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.invitation__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1rem;
  font-weight: 600;
}
.invitation__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.invitation__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
  color: rgba(247,241,230,.72);
}
.invitation__ctas { display: flex; gap: .85rem; flex-wrap: wrap; }
.invitation__hours {
  background: rgba(247,241,230,.04);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--gold);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  color: var(--cream-dim);
  font-size: .95rem;
  line-height: 1.9;
}
.invitation__hours strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: .75rem;
  font-weight: 600;
}
@media (max-width: 860px) {
  .invitation__grid { grid-template-columns: 1fr; }
}

/* ------ Features (generic) ------ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) {
  .feature-grid, .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid, .feature-grid--4, .feature-grid--2 { grid-template-columns: 1fr; }
}
.feature {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.section--dark .feature {
  background: rgba(247,241,230,.03);
  border-color: var(--line-dark);
}
.feature:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.feature--media { padding: 0; overflow: hidden; }
.feature--media .feature__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.feature--media .feature__media img, .feature--media .feature__media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.feature--media:hover .feature__media img { transform: scale(1.07); }
.feature--media .feature__body-wrap { padding: 1.75rem 1.5rem 1.75rem; }
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-ghost);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section--dark .feature__icon { color: var(--gold-warm); }
.feature__icon svg { width: 24px; height: 24px; }
.feature__title {
  font-size: 1.35rem;
  margin: 0 0 .75rem;
}
.feature__body {
  font-size: .93rem;
  line-height: 1.65;
  flex: 1;
  margin: 0 0 1rem;
}
.feature__arrow {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.feature__arrow::after { content: ' →'; }

/* ------ Gallery ------ */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-grid--duo { grid-template-columns: 1fr 1fr; }
.gallery-grid--trio { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid--trio .gallery-item--hero { grid-row: 1 / span 2; }
.gallery-grid--quad { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid--quad .gallery-item--hero { grid-row: 1 / span 2; }
.gallery-grid--quad .gallery-item--wide { grid-column: 2 / span 2; }
.gallery-grid--five { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid--five .gallery-item--hero { grid-row: 1 / span 2; }
.gallery-grid--five .gallery-item--wide { grid-column: 2 / span 2; }
.gallery-grid--six { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
.gallery-grid--six .gallery-item--hero { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.gallery-grid--six .gallery-item--wide { grid-column: 2 / span 2; }
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.gallery-grid--trio .gallery-item, .gallery-grid--quad .gallery-item,
.gallery-grid--five .gallery-item, .gallery-grid--six .gallery-item { aspect-ratio: auto; height: 100%; }
.gallery-item img, .gallery-item picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__frame {
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: inherit;
  pointer-events: none;
}
@media (max-width: 860px) {
  .gallery-grid, .gallery-grid--trio, .gallery-grid--quad, .gallery-grid--five, .gallery-grid--six {
    grid-template-columns: 1fr 1fr; grid-template-rows: none;
  }
  .gallery-grid--trio .gallery-item--hero,
  .gallery-grid--quad .gallery-item--hero,
  .gallery-grid--five .gallery-item--hero,
  .gallery-grid--six .gallery-item--hero,
  .gallery-grid--quad .gallery-item--wide,
  .gallery-grid--five .gallery-item--wide,
  .gallery-grid--six .gallery-item--wide { grid-column: auto; grid-row: auto; }
  .gallery-item { aspect-ratio: 4/3; }
}
@media (max-width: 520px) {
  .gallery-grid, .gallery-grid--trio, .gallery-grid--quad, .gallery-grid--five, .gallery-grid--six { grid-template-columns: 1fr; }
}

/* ------ Chapter head (service/article hero) ------ */
.chapter-head {
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.chapter-head__num {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--gold-warm);
  font-weight: 600;
}
.chapter-head__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 1.5rem;
  max-width: 900px;
  color: var(--ink);
}
.chapter-head__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  max-width: 620px;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.chapter-head__media {
  margin: 2.5rem auto 0;
  max-width: 920px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.chapter-head__media img, .chapter-head__media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 720px) {
  .chapter-head__media { aspect-ratio: 4/3; margin-top: 1.75rem; }
  .chapter-head__title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .chapter-head__lead { font-size: 1rem; margin-bottom: 1.5rem; }
}
.chapter-head__text { max-width: 860px; }
.chapter-head__rule {
  margin-top: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ------ Breadcrumb ------ */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  letter-spacing: .08em;
}
.breadcrumb li {
  color: var(--ink-muted);
  text-transform: uppercase;
}
.breadcrumb li + li::before { content: '/'; margin-right: .5rem; opacity: .4; }
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li[aria-current] { color: var(--gold); }

/* ------ Prose / FAQ / Legal ------ */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.85;
}
.prose h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  text-align: center;
  margin-bottom: 1.5rem;
}
.section--dark .prose p { color: var(--ink-soft); }

.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.section--dark .faq { border-top-color: var(--line-dark); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
  transition: padding .3s var(--ease);
}
.section--dark .faq details { border-bottom-color: var(--line-dark); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.section--dark .faq summary { color: var(--cream); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform .4s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq__answer {
  padding-top: 1rem;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.section--dark .faq__answer p { color: rgba(247,241,230,.75); }

.legal { max-width: 820px; margin: 0 auto; }
.legal__block { margin-bottom: 2.5rem; }
.legal__block h2 { font-size: 1.75rem; margin-bottom: .85rem; }
.legal__block p { font-size: .95rem; line-height: 1.75; }

/* ------ Footer ------ */
.footer {
  background: var(--bg-soft);
  color: var(--ink-soft);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 20% 0%, rgba(155,116,32,.08), transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 100%, rgba(155,116,32,.06), transparent 60%);
  pointer-events: none;
}
.footer > .container { position: relative; }
.footer__wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: .9;
  color: rgba(23,20,15,.08);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -.01em;
}
.footer__wordmark em { font-style: italic; color: rgba(155,116,32,.32); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 1rem; }
.footer__manifesto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}
.footer__small {
  font-size: .85rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: .7rem; }
.footer__col a {
  font-size: .92rem;
  color: var(--ink-soft);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: color .35s var(--ease), background-size .45s var(--ease);
}
.footer__col a:hover { color: var(--gold); background-size: 100% 1px; }
.footer__hours {
  margin-top: 1.5rem;
  font-size: .88rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.footer__hours strong {
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__dev {
  color: var(--gold);
  letter-spacing: .15em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__wordmark { font-size: clamp(2.5rem, 14vw, 5rem); }
}
@media (max-width: 520px) {
  .footer { padding: 3.5rem 0 6rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; margin-bottom: 2.5rem; }
  .footer__col li { margin-bottom: 0; }
  .footer__col a { font-size: .95rem; padding: .7rem 0; display: inline-flex; align-items: center; min-height: 44px; }
  .footer__bottom { flex-direction: column; gap: .5rem; text-align: center; justify-content: center; padding-top: 1.5rem; }
  .footer__wordmark { margin-bottom: 2rem; }
  .footer__brand img { width: 56px; height: 56px; }
}

/* ------ Reveal animations ------ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(32px);
}
.js-reveal .reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ------ Cursor glow ------ */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155,116,32,.08), transparent 55%);
  pointer-events: none;
  z-index: 99;
  transform: translate(-9999px,-9999px) scale(0);
  transition: opacity .3s var(--ease);
  opacity: 0;
}
.cursor-glow.is-on { opacity: 1; }

/* ------ Stub pages ------ */
.stub { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.stub .container { width: 100%; }

/* ------ Extra generic bits used by other pages (service detail etc.) ------ */
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.service-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.service-card__media { aspect-ratio: 4/3; overflow: hidden; }
.service-card__media img, .service-card__media picture { width:100%; height:100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 1.75rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .6rem; }
.service-card__body h3 { font-size: 1.45rem; margin-bottom: .6rem; }
.service-card__body p { font-size: .92rem; flex: 1; margin-bottom: 1rem; }
.service-card__arrow { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 960px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .services__grid { grid-template-columns: 1fr; } }

/* Pricing table (service detail) */
.pricing-table { width: 100%; border-collapse: collapse; font-size: .95rem; max-width: 820px; margin: 0 auto; }
.pricing-table th, .pricing-table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); }
.pricing-table tr:nth-child(even) td { background: rgba(155,116,32,.02); }
.pricing-table tr:hover td { background: rgba(155,116,32,.04); }
.section--dark .pricing-table th, .section--dark .pricing-table td { border-bottom-color: var(--line-dark); }
.section--dark .pricing-table tr:nth-child(even) td { background: rgba(247,241,230,.02); }
.section--dark .pricing-table tr:hover td { background: rgba(247,241,230,.04); }
.pricing-table th { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: .72rem; letter-spacing: .14em; background: var(--bg-soft); }
.section--dark .pricing-table th { background: rgba(212,168,74,.06); }

/* ============================================================================
   METALS WIDGET — Live-Kurse Gold/Silber/Platin/Palladium pro Unze
   ============================================================================ */
.metals-section .section__intro { max-width: 780px; margin: 0 auto 2.5rem; }
.metals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.metal-tile {
  position: relative;
  padding: 1.6rem 1.5rem 1.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  isolation: isolate;
}
.metal-tile::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--metal-color, var(--gold)), transparent 80%);
  opacity: .9;
}
.metal-tile::after {
  content: "";
  position: absolute; right: -30px; top: -30px; width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--metal-color, var(--gold)) 0%, transparent 65%);
  opacity: .12; z-index: -1;
}
.metal-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23,20,15,.08);
  border-color: var(--metal-color, var(--gold));
}
.section--dark .metal-tile {
  background: rgba(247,241,230,.04);
  border-color: var(--line-dark);
}
.section--dark .metal-tile:hover { box-shadow: 0 8px 24px rgba(0,0,0,.35); }

.metal-tile__head {
  display: flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
}
.metal-tile__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--metal-color, var(--gold));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--metal-color, var(--gold)) 20%, transparent);
  flex-shrink: 0;
}
.metal-tile__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}
.section--dark .metal-tile__name { color: var(--cream); }
.metal-tile__sym {
  margin-left: auto;
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-weight: 600;
}
.metal-tile__price {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.section--dark .metal-tile__price { color: var(--cream); }
.metal-tile__price small {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: .35rem;
  font-weight: 500;
}
.metal-tile__sub {
  margin: .35rem 0 0;
  font-size: .85rem;
  color: var(--ink-muted);
  letter-spacing: .02em;
}
.metals-source {
  text-align: center;
  margin: 2rem 0 0;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

@media (max-width: 540px) {
  .metals-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .metal-tile { padding: 1.2rem 1.1rem; }
  .metal-tile__price { font-size: 1.55rem; }
  .metal-tile__name { font-size: 1.15rem; }
}

/* Expert prose (service detail) */
.expert-prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* Common mistakes list */
.mistakes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; }
.mistakes__item { background: var(--bg); border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 1.5rem; border-radius: var(--radius); }
.mistakes__item h4 { font-size: 1.1rem; margin-bottom: .5rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.mistakes__item p { font-size: .9rem; margin: 0; }

/* Article layout */
.article { max-width: 780px; margin: 0 auto; padding: 1rem 0; }
.article h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); margin-top: 2.5rem; }
.article h3 { font-size: 1.4rem; margin-top: 1.75rem; }
.article p { font-size: 1.02rem; line-height: 1.85; }

/* ============================================================================
   Supplementary — Ratgeber / Article / Contact / Mistakes / Tags
   ============================================================================ */

/* ------ Ratgeber feature (large editorial split card) ------ */
.ratgeber-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.ratgeber-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.ratgeber-feature__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  max-height: 440px;
}
.ratgeber-feature__media img, .ratgeber-feature__media picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.ratgeber-feature:hover .ratgeber-feature__media img { transform: scale(1.05); }
.ratgeber-feature__body { padding: 2rem clamp(1.5rem, 3vw, 2.5rem); }
.ratgeber-feature__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin: .75rem 0 1rem;
  line-height: 1.1;
}
.ratgeber-feature__excerpt {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
@media (max-width: 820px) {
  .ratgeber-feature { grid-template-columns: 1fr; }
  .ratgeber-feature__media { aspect-ratio: 16/9; min-height: 0; max-height: 340px; }
}

/* ------ Article (single ratgeber post) ------ */
.article-header {
  max-width: 820px;
  margin: 0 auto 2rem;
  text-align: center;
}
.article-header__eyebrow {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.article-header__title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.article-header__meta {
  display: flex;
  justify-content: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.article-header__meta span + span { opacity: .6; }

.article-hero {
  max-width: 960px;
  margin: 2rem auto 0;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.article-hero img, .article-hero picture {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 720px) {
  .article-hero { aspect-ratio: 4/3; }
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.article-body h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  margin: 2.75rem 0 1rem;
  color: var(--ink);
  line-height: 1.15;
}
.article-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 .85rem;
  color: var(--ink);
}
.article-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 .5rem;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}
.article-body li { margin-bottom: .6rem; }
.article-body li strong { color: var(--ink); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: .95rem;
}
.article-body th, .article-body td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.article-body th {
  background: var(--bg-soft);
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.article-body tr:hover td { background: var(--bg-soft); }

.drop-cap::first-letter,
.article-body p.drop-cap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 500;
  float: left;
  line-height: .85;
  padding: .35rem .65rem 0 0;
  color: var(--gold);
}

.article-pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
  max-width: 720px;
  margin: 3rem auto;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid var(--gold);
}

.callout {
  background: var(--gold-ghost);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}
.callout h4 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
  font-weight: 600;
}
.callout p { margin: 0; color: var(--ink); font-size: .98rem; }

/* ------ Tags ------ */
.tag, .tag--paper {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.tag:hover, .tag--paper:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.paper-title {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  margin-bottom: .75rem;
}
.paper-lead {
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 1rem;
  color: var(--ink-soft);
}

/* ------ Mistakes grid ------ */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}
.mistake-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2rem;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.mistake-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.mistake-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-ghost);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 500;
}
.mistake-card h3 {
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 0 0 .6rem;
  color: var(--ink);
}
.mistake-card p { font-size: .92rem; margin: 0; line-height: 1.65; color: var(--ink-soft); }

/* ------ Contact form + info ------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: .5rem;
}
.contact-form__intro {
  font-size: .95rem;
  margin-bottom: 1.75rem;
  color: var(--ink-muted);
}
.field {
  position: relative;
  margin-bottom: 1.25rem;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .field--row { grid-template-columns: 1fr; gap: 0; }
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1.1rem 1rem .45rem;
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease);
  min-height: 56px;
  resize: vertical;
  font-family: inherit;
}
.field textarea { min-height: 140px; padding-top: 1.4rem; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b88a2c' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  cursor: pointer;
}
.field select:invalid { color: var(--ink-muted); }
.field label {
  position: absolute;
  top: .95rem;
  left: 1rem;
  font-size: .95rem;
  color: var(--ink-muted);
  pointer-events: none;
  transition: all .25s var(--ease);
  background: transparent;
  padding: 0 .25rem;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: -.55rem;
  left: .8rem;
  font-size: .7rem;
  color: var(--gold);
  background: var(--bg);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-form__consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.contact-form__consent input { margin-top: .15rem; accent-color: var(--gold); width: 18px; height: 18px; }
.contact-form__consent a { color: var(--gold); text-decoration: underline; }
.contact-form button { width: 100%; justify-content: center; }
.contact-form__meta {
  margin: .85rem 0 0;
  font-size: .72rem;
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: .02em;
}

/* Honeypot — hidden from real users but visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form banners (success/error) */
.form-banner {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border: 1px solid;
  font-size: .95rem;
  line-height: 1.55;
}
.form-banner strong { font-size: 1.05rem; font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.form-banner a { color: inherit; text-decoration: underline; font-weight: 600; }
.form-banner--success {
  background: #e9f7ee;
  border-color: #86c39d;
  color: #1e5631;
}
.form-banner--error {
  background: #fdecea;
  border-color: #e4a7a2;
  color: #8a1f18;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 90% 0%, rgba(155,116,32,.08), transparent 55%);
  pointer-events: none;
}
.info-card > * { position: relative; }
.info-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.info-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.info-card__list li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.info-card__list li:last-child { border-bottom: 0; }
.info-card__body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.info-card__body small {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 600;
}
.info-card__body a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 500;
}
.info-card__body a:hover { color: var(--gold-warm); }
.info-card__hours {
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(247,241,230,.7);
}
.info-card__hours strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: .5rem;
  font-weight: 600;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg-soft);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ------ Pricing table wrap ------ */
.pricing-table-wrap {
  overflow-x: auto;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
}
.section--dark .pricing-table-wrap { background: rgba(247,241,230,.03); border-color: var(--line-dark); }
.pricing-table { margin: 0; }
.pricing-table th { background: var(--bg-soft); }
.section--dark .pricing-table th { background: rgba(212,168,74,.08); }

/* ------ Route SVG (local town pages) ------ */
.route-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 1rem;
}

/* ============================================================================
   Local pages (/service-town) — route card, museum gallery, hscroll
   ============================================================================ */

/* ------ Route card (town → Herborn with map SVG) ------ */
.route-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}
.route-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: .5rem 0 1rem;
  line-height: 1.15;
}
.route-card p {
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.route-card__landmarks {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.route-card__landmark {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.route-card__landmark::before {
  content: '•';
  color: var(--gold);
  margin-right: .4rem;
}
.route-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.route-card__stats > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.route-card__stats strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.route-card__stats small {
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.route-card__map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.route-card__map .route-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: .75rem;
}
@media (max-width: 820px) {
  .route-card { grid-template-columns: 1fr; gap: 1.75rem; }
  .route-card__map { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .route-card__stats { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 480px) {
  .route-card__stats { gap: .75rem; }
  .route-card__stats strong { font-size: 1.5rem; }
}

/* ------ Museum gallery (3-image editorial on local page) ------ */
.museum-grid {
  display: grid;
  gap: 1rem;
}
.museum-grid--trio {
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  max-height: 560px;
}
.museum-grid--trio .museum-item--1 {
  grid-row: 1 / span 2;
}
.museum-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 0;
  box-shadow: var(--shadow-md);
}
.museum-item picture,
.museum-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.museum-item:hover img { transform: scale(1.05); }
.museum-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,14,.75));
  pointer-events: none;
  z-index: 1;
}
.museum-item figcaption {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  right: 1.25rem;
  color: rgba(247,241,230,.88);
  font-size: .76rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
}
.museum-item figcaption em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-warm);
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 820px) {
  .museum-grid--trio {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 160px;
    max-height: none;
  }
  .museum-grid--trio .museum-item--1 {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
}
@media (max-width: 480px) {
  .museum-grid--trio { grid-template-rows: 220px 180px 180px; }
  .museum-grid--trio .museum-item--1 { grid-column: 1; grid-row: 1; }
  .museum-grid--trio .museum-item--2 { grid-column: 1; grid-row: 2; }
  .museum-grid--trio .museum-item--3 { grid-column: 1; grid-row: 3; }
}

/* ------ Horizontal scroll (nearby towns) ------ */
.hscroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .5rem .25rem 1.5rem;
  margin: 0 -.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-track { background: transparent; }
.hscroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.hscroll > a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 200px !important;
  padding: 1.5rem 1.75rem !important;
  background: var(--bg-alt);
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg) !important;
  color: var(--ink) !important;
  transition: all .35s var(--ease);
}
.hscroll > a:hover {
  background: #fff;
  border-color: var(--gold) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hscroll > a strong {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.35rem !important;
  font-style: italic;
  color: var(--gold) !important;
  display: block;
  margin-bottom: .25rem;
}
.hscroll > a small {
  font-size: .75rem !important;
  letter-spacing: .1em;
  color: var(--ink-muted) !important;
  text-transform: uppercase;
}

/* ============================================================================
   Service cluster (cross-service on local town pages)
   ============================================================================ */
.service-cluster {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}
.service-cluster__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 1.4rem 1.3rem 1.3rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  min-height: 120px;
}
.service-cluster__item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
}
.service-cluster__eyebrow {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .25rem;
}
.service-cluster__item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}
.service-cluster__town {
  font-size: .78rem;
  color: var(--ink-muted);
  margin-top: .15rem;
}
.service-cluster__arrow {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: all .35s var(--ease);
}
.service-cluster__item:hover .service-cluster__arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 960px) { .service-cluster { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .service-cluster { grid-template-columns: 1fr; } }

/* Directions card (local page route) */
.directions-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
}
.directions-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: .5rem 0 .85rem;
  line-height: 1.2;
}
.directions-card p {
  font-size: .98rem;
  line-height: 1.65;
  margin: 0;
}
.directions-card__ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.directions-card__ctas .btn { width: 100%; }
@media (max-width: 720px) {
  .directions-card { grid-template-columns: 1fr; }
}

/* ============================================================================
   Mobile floating click-to-call / mail
   ============================================================================ */
.mobile-cta {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom, 1rem));
  z-index: 85;
  display: none;
  flex-direction: column;
  gap: .6rem;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nav.is-open ~ .mobile-cta,
body.nav-open .mobile-cta {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none !important;
}
.mobile-cta__btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.3rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px -12px rgba(23,20,15,.45), 0 0 0 1px rgba(212,168,74,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  min-height: 52px;
  min-width: 52px;
}
.mobile-cta__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta__btn:hover, .mobile-cta__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(155,116,32,.4), 0 0 0 1px var(--gold);
}
.mobile-cta__btn--call {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold) 55%, var(--gold-deep));
  color: #fff;
}
.mobile-cta__btn--mail {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
@media (max-width: 860px) {
  .mobile-cta { display: flex; }
}
@media (max-width: 480px) {
  .mobile-cta { right: .85rem; bottom: .85rem; }
  .mobile-cta__btn span { display: none; }
  .mobile-cta__btn { padding: 0; width: 52px; height: 52px; }
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: .75rem 1.25rem;
  background: var(--ink);
  color: var(--gold-warm);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  z-index: 999;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--gold); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ============================================================================
   NEXT-LEVEL — Dark-Theme Overrides, Mega-Menu, Search, Theme-Toggle,
   Rating-Badge, Newsletter, Bottom-Sheet, Count-up, Live-Status, Accent Callout
   ============================================================================ */

/* Dark-theme surface overrides — section--paper + cards that used bg-alt/bg-soft */
:root[data-theme="dark"] .section--paper { background: var(--bg-alt); }
:root[data-theme="dark"] .section--bg-2 { background: var(--bg-soft); }
:root[data-theme="dark"] .nav {
  background: rgba(10,9,6,.97);
}
:root[data-theme="dark"] .nav.is-scrolled {
  background: rgba(6,5,3,.98);
}
:root[data-theme="dark"] .nav__burger span { background: var(--ink); }
:root[data-theme="dark"] .nav__menu { background: #121110; }
:root[data-theme="dark"] .feature,
:root[data-theme="dark"] .ratgeber-card,
:root[data-theme="dark"] .route-card,
:root[data-theme="dark"] .process-paper__card,
:root[data-theme="dark"] .mistake-card,
:root[data-theme="dark"] .contact-form,
:root[data-theme="dark"] .service-cluster__item,
:root[data-theme="dark"] .directions-card,
:root[data-theme="dark"] .town-cloud__tag,
:root[data-theme="dark"] .tag, :root[data-theme="dark"] .tag--paper,
:root[data-theme="dark"] .pricing-table-wrap,
:root[data-theme="dark"] .ratgeber-feature,
:root[data-theme="dark"] .callout {
  background: var(--bg-alt);
  border-color: var(--line);
}
:root[data-theme="dark"] .field input,
:root[data-theme="dark"] .field textarea,
:root[data-theme="dark"] .field select {
  background: var(--bg-soft);
  color: var(--ink);
  border-color: var(--line);
}
:root[data-theme="dark"] .field input:focus,
:root[data-theme="dark"] .field textarea:focus,
:root[data-theme="dark"] .field select:focus { background: var(--bg-alt); }
:root[data-theme="dark"] .field input:focus + label,
:root[data-theme="dark"] .field input:not(:placeholder-shown) + label,
:root[data-theme="dark"] .field textarea:focus + label,
:root[data-theme="dark"] .field textarea:not(:placeholder-shown) + label,
:root[data-theme="dark"] .field select:focus + label,
:root[data-theme="dark"] .field select:valid + label {
  background: var(--bg-soft);
}
:root[data-theme="dark"] .editorial-open__body > p:first-child::first-letter,
:root[data-theme="dark"] .drop-cap::first-letter,
:root[data-theme="dark"] .article-body p.drop-cap::first-letter { color: var(--gold-warm); }
:root[data-theme="dark"] .callout { background: var(--accent-soft); border-left-color: var(--accent); }
:root[data-theme="dark"] .form-banner--success { background: rgba(46,160,67,.14); border-color: rgba(46,160,67,.4); color: #8dd9a1; }
:root[data-theme="dark"] .form-banner--error { background: rgba(218,54,51,.14); border-color: rgba(218,54,51,.4); color: #f6a6a1; }
:root[data-theme="dark"] .price-strip { background: var(--bg-dark-2); }
:root[data-theme="dark"] .contact-form__consent a { color: var(--gold-warm); }
:root[data-theme="dark"] .skip-link { background: var(--bg-alt); color: var(--gold-warm); }

/* Accent callout (burgundy) — used for special notices */
.accent-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink);
}
.accent-callout svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); margin-top: .1rem; }
.accent-callout strong { color: var(--accent); font-weight: 600; }

/* ============================================================================
   Theme toggle (nav)
   ============================================================================ */
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background .3s var(--ease), transform .3s var(--ease);
  color: rgba(244,236,219,.55);
  background: transparent;
  border: 1px solid transparent;
}
.theme-toggle:hover { background: rgba(212,168,74,.12); color: var(--gold-warm); transform: rotate(12deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ============================================================================
   Search (nav input + results)
   ============================================================================ */
.nav__search {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__search-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__search-btn:hover { background: var(--gold-ghost); color: var(--gold); }
.nav__search-btn svg { width: 18px; height: 18px; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(15,13,10,.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  display: none;
  flex-direction: column;
  padding-top: 12vh;
  animation: searchFadeIn .35s var(--ease);
}
.search-overlay.is-open { display: flex; }
@keyframes searchFadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-overlay__wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.search-overlay__form {
  position: relative;
  display: flex;
  align-items: center;
}
.search-overlay__form svg {
  position: absolute;
  left: 1.25rem;
  width: 20px;
  height: 20px;
  color: var(--gold-warm);
  pointer-events: none;
}
.search-overlay input[type="search"] {
  width: 100%;
  padding: 1.25rem 3rem 1.25rem 3rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.5vw, 2.2rem);
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(212,168,74,.35);
  color: #fff;
  outline: none;
  font-style: italic;
  min-width: 0;
}
.search-overlay input[type="search"]::placeholder { color: rgba(247,241,230,.4); }
.search-overlay__close {
  position: absolute;
  right: .75rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(247,241,230,.6);
  transition: all .3s var(--ease);
}
.search-overlay__close:hover { background: rgba(247,241,230,.1); color: #fff; }
.search-overlay__hint {
  margin-top: 1.25rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247,241,230,.5);
}
.search-overlay__hint kbd {
  display: inline-block;
  padding: .15rem .45rem;
  background: rgba(247,241,230,.1);
  border: 1px solid rgba(247,241,230,.2);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--gold-warm);
  margin: 0 .2rem;
}

/* Search results page */
.search-results { max-width: 820px; margin: 0 auto; }
.search-results__meta {
  font-size: .9rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.search-results__meta strong { color: var(--gold); font-family: var(--font-mono); }
.search-result {
  display: block;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  transition: all .35s var(--ease);
  text-decoration: none;
  color: inherit;
}
.search-result:hover {
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.search-result__kind {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .35rem;
}
.search-result__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 .4rem;
  line-height: 1.15;
}
.search-result__excerpt {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.search-result__url {
  display: inline-block;
  margin-top: .5rem;
  font-size: .72rem;
  color: var(--ink-muted);
  font-family: var(--font-mono);
}
.search-result mark {
  background: var(--gold-ghost);
  color: var(--gold);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

/* ============================================================================
   Mega-menu (desktop Leistungen dropdown)
   ============================================================================ */
.nav__menu > li { position: relative; }
.nav__submenu-trigger::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: .4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .3s var(--ease);
  opacity: .6;
}
.nav__menu li.has-mega:hover .nav__submenu-trigger::after,
.nav__menu li.has-mega.is-open .nav__submenu-trigger::after { transform: translateY(1px) rotate(225deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(980px, calc(100vw - 2rem));
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(23,20,15,.35);
  padding: 1.75rem 1.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  z-index: 120;
}
@media (max-width: 1100px) {
  .mega-menu__grid { grid-template-columns: repeat(2, 1fr); }
}
.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nav__menu li.has-mega:hover > .mega-menu,
.nav__menu li.has-mega.is-open > .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
}
.mega-menu__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background .3s var(--ease), transform .3s var(--ease);
  letter-spacing: 0;
  text-transform: none;
  font-size: inherit;
}
.mega-menu__item:hover {
  background: var(--gold-ghost);
  transform: translateX(3px);
}
.mega-menu__item:hover::after { display: none; }
.mega-menu__thumb {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  position: relative;
}
.mega-menu__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.mega-menu__item:hover .mega-menu__thumb img { transform: scale(1.1); }
.mega-menu__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}
.mega-menu__text small {
  display: block;
  font-size: .72rem;
  color: var(--ink-muted);
  margin-top: .15rem;
  letter-spacing: .05em;
  text-transform: none;
}
.mega-menu__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .78rem;
}
.mega-menu__footer a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mega-menu__footer a::after { content: '→'; transition: transform .3s var(--ease); }
.mega-menu__footer a:hover::after { transform: translateX(3px); }
@media (max-width: 980px) {
  .mega-menu { display: none; }
}

/* ============================================================================
   Rating badge (hero + nav compact)
   ============================================================================ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}
.rating-badge:hover { transform: translateY(-2px); border-color: var(--gold); }
.rating-badge__stars {
  color: var(--gold-warm);
  font-size: .88rem;
  letter-spacing: .08em;
}
.rating-badge__score {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}
.rating-badge__label {
  font-size: .74rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
}
.rating-badge__label strong { color: var(--ink); font-weight: 600; }

/* ============================================================================
   Hero live-status pill ("jetzt geöffnet / schließt in ...")
   ============================================================================ */
.hero-live {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .85rem;
  margin-top: 1.5rem;
  max-width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-live__label { min-width: 0; overflow-wrap: anywhere; }
.hero-live__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: livePulse 2.5s ease-out infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  100% { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.hero-live--closed .hero-live__dot { background: #d4605e; animation: none; }
.hero-live strong { color: var(--ink); font-weight: 600; }

/* Hero background — soft gold glows on cream */
.hero-split::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 18% 30%, rgba(155,116,32,.08), transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 70%, rgba(155,116,32,.05), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================================
   Newsletter (footer)
   ============================================================================ */
.newsletter {
  max-width: 560px;
  margin: 0 0 2.5rem;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 .4rem;
  font-style: italic;
}
.newsletter__sub {
  font-size: .88rem;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
  line-height: 1.55;
}
.newsletter__form {
  display: flex;
  gap: .5rem;
}
.newsletter__form input[type="email"] {
  flex: 1;
  padding: .9rem 1.1rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.newsletter__form input[type="email"]::placeholder { color: var(--ink-muted); }
.newsletter__form input[type="email"]:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--gold-ghost);
}
.newsletter__form button {
  padding: .9rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-warm), var(--gold) 55%, var(--gold-deep));
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.newsletter__form button:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -18px rgba(155,116,32,.5); }
.newsletter__note {
  margin: .75rem 0 0;
  font-size: .7rem;
  color: var(--ink-muted);
  letter-spacing: .02em;
}
.newsletter__note a { color: var(--gold); text-decoration: underline; }
@media (max-width: 560px) {
  .newsletter__form { flex-direction: column; }
  .newsletter__form button { width: 100%; }
}

/* ============================================================================
   Mobile bottom-sheet menu (replaces fullscreen slide)
   ============================================================================ */
@media (max-width: 980px) {
  .nav__menu {
    position: fixed;
    inset: auto 0 0 0;
    max-height: min(86vh, 100vh - 60px);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 1.5rem 1.25rem max(2rem, env(safe-area-inset-bottom, 2rem));
    background: var(--bg-alt);
    transform: translateY(100%);
    transition: transform .45s var(--ease-out);
    box-shadow: 0 -30px 80px -20px rgba(23,20,15,.22);
    overflow-y: auto;
    border-top: 1px solid var(--line);
    z-index: 110;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  .nav__menu::before {
    content: '';
    display: block;
    width: 44px; height: 4px;
    background: var(--line-strong);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
  }
  .nav.is-open .nav__menu { transform: translateY(0); }
  .nav__menu li {
    border-bottom: 1px solid var(--line);
    padding: 0;
    width: 100%;
    margin: 0;
  }
  .nav__menu li:last-child { border-bottom: 0; margin-top: 1rem; padding-bottom: 0; }
  .nav__menu a {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: .85rem 0;
    color: var(--ink-soft);
  }
  .nav__menu a::after { display: none; }
  .nav__menu a:hover, .nav__menu a.is-active { color: var(--ink); }
  .nav__menu li.has-mega > .nav__submenu-trigger::after { margin-left: auto; }
  .nav__cta { justify-content: center; width: 100%; padding: 1rem 1.25rem !important; font-size: .82rem !important; min-height: 52px; }
  .nav__tools {
    order: 10;
    border-left: 0;
    margin-left: 0;
    padding: .75rem 0 !important;
    justify-content: flex-start !important;
    gap: .75rem !important;
    border-bottom: 1px solid var(--line);
  }
  .nav__tools .nav__search-btn {
    width: 44px; height: 44px;
    background: var(--bg-soft);
  }
}

/* Backdrop when mobile menu open */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(23,20,15,.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.nav.is-open ~ .nav-backdrop,
body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }

/* ============================================================================
   Count-up numbers — reserve space
   ============================================================================ */
.count-up { display: inline-block; min-width: 0; font-variant-numeric: tabular-nums; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Toasts (newsletter/contact feedback) */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(30px);
  max-width: 92vw;
  width: min(520px, 92vw);
  padding: 1rem 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  font-size: .92rem;
  line-height: 1.55;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gold-ghost);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  z-index: 200;
  text-align: center;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { border-left: 3px solid #22c55e; }
.toast--error { border-left: 3px solid #d4605e; }

/* Utility */
[hidden] { display: none !important; }

/* ==========================================================================
   LIGHT-OVERRIDE LAYER
   section--dark was converted to a warm cream band. Components that used
   cream-on-dark colors are remapped to ink-on-cream so contrast stays AA.
   ========================================================================== */

/* Cards that previously assumed dark surroundings */
.collection-card {
  background: var(--bg-alt);
  border-color: var(--line);
}
.collection-card:hover {
  background: #fff;
  box-shadow: 0 28px 60px -24px rgba(23,20,15,.18);
}
.collection-card__title { color: var(--ink); }
.collection-card__body { color: var(--ink-soft); }
.collection-card__eyebrow { color: var(--gold); }
.collection-card__num {
  color: #fff;
  background: rgba(23,20,15,.55);
}
.link-arrow { color: var(--gold); }

/* Big quote on cream */
.big-quote blockquote { color: var(--ink); }
.big-quote cite { color: var(--ink-muted); }

/* Testimonials on cream */
.testimonial {
  background: var(--bg-alt);
  border-color: var(--line);
}
.testimonial:hover {
  background: #fff;
  box-shadow: 0 20px 50px -20px rgba(23,20,15,.15);
}
.testimonial__stars { color: var(--gold); }
.testimonial__quote { color: var(--ink); }
.testimonial__cite { border-top-color: var(--line); }
.testimonial__cite strong { color: var(--ink); }
.testimonial__cite span { color: var(--ink-muted); }
.testimonial__cite small { color: var(--gold); }

/* Trust pillars on cream */
.trust-pillar {
  background: var(--bg-alt);
  border-color: var(--line);
}
.trust-pillar:hover {
  background: #fff;
  box-shadow: 0 18px 40px -16px rgba(23,20,15,.14);
}
.trust-pillar__icon { color: var(--gold); }
.trust-pillar h4 { color: var(--ink); }
.trust-pillar p { color: var(--ink-soft); }

/* Invitation block */
.invitation__title { color: var(--ink); }
.invitation__sub { color: var(--ink-soft); }
.invitation__hours {
  background: var(--bg-alt);
  border-color: var(--line);
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
}
.invitation__eyebrow { color: var(--gold); }
.invitation__hours strong { color: var(--gold); }

/* Chapter head text */
.chapter-head__num { color: var(--gold); border-bottom-color: var(--gold); }

/* Feature cards inside previously-dark sections */
.section--dark .feature {
  background: var(--bg-alt);
  border-color: var(--line);
}
.section--dark .feature__icon { color: var(--gold); }

/* Prose / breadcrumb / FAQ inside section--dark */
.section--dark .breadcrumb li,
.section--dark .breadcrumb a { color: var(--ink-muted); }
.section--dark .breadcrumb a:hover { color: var(--gold); }
.section--dark .prose p { color: var(--ink-soft); }
.section--dark .faq { border-top-color: var(--line); }
.section--dark .faq details { border-bottom-color: var(--line); }
.section--dark .faq summary { color: var(--ink); }
.section--dark .faq__answer p { color: var(--ink-soft); }

/* Pricing table inside section--dark */
.section--dark .pricing-table th,
.section--dark .pricing-table td { border-bottom-color: var(--line); }
.section--dark .pricing-table tr:nth-child(even) td { background: rgba(155,116,32,.04); }
.section--dark .pricing-table tr:hover td { background: rgba(155,116,32,.07); }
.section--dark .pricing-table th { background: rgba(155,116,32,.06); color: var(--ink); }
.section--dark .pricing-table-wrap { background: var(--bg-alt); border-color: var(--line); }

/* 404 page */
.err404 { color: var(--ink); }
.err404__title { color: var(--ink); }
.err404__lead { color: var(--ink-soft); }
.err404__eyebrow { color: var(--gold); }
.err404__num em { color: var(--gold); }

/* Legacy dark-theme topbar override neutralized in light-only mode */
:root[data-theme="dark"] .topbar {
  background: var(--bg-soft);
  color: var(--ink-muted);
}
:root[data-theme="dark"] .topbar__contact a { color: var(--gold); }
:root[data-theme="dark"] .topbar__contact a:hover { color: var(--gold-deep); }

/* ============================================================================
   Goldankauf Showcase — homepage section [N° 05]
   ============================================================================ */
.goldankauf-showcase { padding: clamp(4rem, 7vw, 6rem) 0; }
.goldankauf-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.goldankauf-showcase__intro { max-width: 36rem; }
.goldankauf-showcase__num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 1.15rem;
  font-weight: 600;
}
.goldankauf-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.goldankauf-showcase__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.goldankauf-showcase__rule {
  display: block;
  width: 3rem; height: 1px;
  background: var(--gold);
  opacity: .7;
  margin: 0 0 1.35rem;
}
.goldankauf-showcase__lead {
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.8rem;
}
.goldankauf-showcase__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
  align-items: center;
}

.goldankauf-showcase__feature {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(37, 25, 14, .35);
  background: #000;
}
.goldankauf-showcase__feature picture { display: block; }
.goldankauf-showcase__feature img { display: block; width: 100%; height: auto; }
.goldankauf-showcase__feature figcaption {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
}
:root[data-theme="dark"] .goldankauf-showcase__feature figcaption {
  background: rgba(15, 13, 10, .75);
  color: var(--gold-warm);
}

.goldankauf-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 2vw, 1.5rem);
}
.goldankauf-showcase__thumb {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform .4s ease, box-shadow .4s ease;
  display: flex;
  flex-direction: column;
}
.goldankauf-showcase__thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -22px rgba(37, 25, 14, .4);
}
.goldankauf-showcase__thumb picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}
.goldankauf-showcase__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.goldankauf-showcase__thumb:hover img { transform: scale(1.04); }
.goldankauf-showcase__thumb figcaption {
  padding: .9rem 1.05rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.goldankauf-showcase__thumb figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .01em;
}
.goldankauf-showcase__thumb figcaption span {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

@media (max-width: 960px) {
  .goldankauf-showcase__head { grid-template-columns: 1fr; }
  .goldankauf-showcase__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .goldankauf-showcase__grid { grid-template-columns: 1fr; }
}
