/* ==========================================================================
   Hoffmann Numismatics, Design-System
   Farben und Schriftregeln nach den Brand Guidelines v1.0
   ========================================================================== */

/* --- Schriften, lokal aus assets/fonts, keine externen Server --- */
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/marcellus-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Marcellus';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/marcellus-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/librefranklin-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/librefranklin-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Marken-Werte an einer Stelle --- */
:root {
  --navy:        #122B46;
  --navy-deep:   #0C1F34;
  --navy-soft:   #1D3E60;
  --gold:        #B08D57;
  --gold-deep:   #7B633D;   /* dunkler als das Markengold, damit kleine Schrift lesbar bleibt */
  --gold-pale:   #D8C4A2;
  --burgundy:    #7A263A;
  --cream:       #F5F1E8;
  --cream-deep:  #EBE5D8;
  --ink:         #26313D;
  --ink-soft:    #5C6874;
  --line:        rgba(18, 43, 70, .14);
  --line-strong: rgba(18, 43, 70, .28);

  --font-display: 'Marcellus', 'Iowan Old Style', Palatino, Georgia, serif;
  --font-body:    'Libre Franklin', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1140px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section: clamp(3.5rem, 8vw, 6.75rem);
  --radius: 3px;
  --shadow: 0 1px 2px rgba(12, 31, 52, .05), 0 8px 26px rgba(12, 31, 52, .07);
  --shadow-lift: 0 2px 4px rgba(12, 31, 52, .07), 0 18px 44px rgba(12, 31, 52, .13);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Browser geben Bildbereichen von sich aus 40 Pixel Rand an den Seiten.
   Das macht jedes Bild schmaler als sein Platz. Hier zurückgesetzt. */
figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: .002em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 1.1rem + 3.6vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 1.05rem + 2.1vw, 2.6rem); }
h3 { font-size: clamp(1.18rem, 1.02rem + .7vw, 1.5rem); }
h4 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--navy); }

a { color: var(--navy); text-decoration: none; }
a:not([class]) {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  transition: color .25s var(--ease);
}
a:not([class]):hover { color: var(--gold-deep); }

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

/* --- Hilfsklassen --- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream { background: var(--cream-deep); }
.section--navy { background: var(--navy); color: rgba(245,241,232,.86); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--cream); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.05rem;
}
.section--navy .eyebrow { color: var(--gold-pale); }

.lead {
  font-size: clamp(1.075rem, 1rem + .35vw, 1.25rem);
  line-height: 1.66;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--navy .lead { color: rgba(245,241,232,.8); }

.rule {
  width: 62px; height: 2px; border: 0; margin: 0 0 1.6rem;
  background: var(--gold);
}
.section--navy .rule { background: var(--gold-pale); }

.section-head { max-width: 66ch; margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem); }

/* --- Knoepfe --- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; letter-spacing: .04em;
  padding: .95rem 1.7rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: background-color .28s var(--ease), border-color .28s var(--ease),
              color .28s var(--ease), transform .28s var(--ease), box-shadow .28s var(--ease);
}
.btn svg { flex: 0 0 auto; }

.btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--cream); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(147,114,67,.3); }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(18,43,70,.04); transform: translateY(-2px); }
.section--navy .btn--ghost { color: var(--cream); border-color: rgba(245,241,232,.34); }
.section--navy .btn--ghost:hover { border-color: var(--cream); background: rgba(245,241,232,.08); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem 1rem; align-items: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.textlink:hover { color: var(--gold-deep); gap: .8rem; }
.textlink svg { transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(3px); }

/* --- Kopfbereich der Website --- */
.skiplink {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -110%);
  z-index: 200; background: var(--navy); color: var(--cream);
  padding: .7rem 1.2rem; font-size: .9rem; font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
}
.skiplink:focus { transform: translate(-50%, 0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,241,232,.94);
  backdrop-filter: saturate(160%) blur(9px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.06rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy);
  white-space: nowrap;
}
.brand-sub {
  font-size: .61rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: .34rem; white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 19px; height: 1.5px; background: var(--navy);
  position: relative; transition: background-color .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px;
  background: var(--navy); transition: transform .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 1.9rem); }
.nav-list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 1.9rem); list-style: none; margin: 0; padding: 0; }
.nav-list a {
  position: relative;
  font-size: .93rem; font-weight: 500; letter-spacing: .015em;
  color: var(--ink); padding-block: .35rem;
  transition: color .25s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-list a:hover { color: var(--navy); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { padding: .68rem 1.15rem; font-size: .86rem; }

/* --- Kopfbereich mobil: eigener Durchgang --- */
@media (max-width: 900px) {
  .header-inner { min-height: 66px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: .93rem; letter-spacing: .11em; }
  .brand-sub { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 66px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    padding: .5rem var(--gutter) 1.6rem;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a {
    display: block; padding: .95rem .2rem; font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-list a::after { display: none; }
  .nav-list a[aria-current="page"] { color: var(--gold-deep); }
  .header-cta { margin-top: 1.3rem; justify-content: center; padding: .95rem 1.4rem; font-size: .95rem; }
}

/* --- Kopfbereich der Seite (Hero) --- */
.hero { position: relative; padding-block: clamp(2.75rem, 6vw, 5.25rem) clamp(3rem, 7vw, 5.5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { font-size: clamp(2rem, 1.15rem + 2.9vw, 3.15rem); margin-bottom: .85rem; }
.hero .lead { margin-bottom: 2rem; }
.hero-figure { position: relative; }
.hero-figure img { border-radius: var(--radius); box-shadow: var(--shadow-lift); width: 100%; }
.hero-figure::before {
  content: ""; position: absolute; inset: auto -18px -18px auto;
  width: 62%; height: 62%; border: 1px solid var(--gold); border-radius: var(--radius);
  z-index: -1;
}
.hero-note {
  margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--ink-soft);
}

/* --- Seitenkopf der Unterseiten --- */
.pagehead { padding-block: clamp(2.6rem, 6vw, 4.6rem) clamp(2rem, 4vw, 3rem); }
/* Dieselbe feine Goldlinie wie in den Abschnittsköpfen, damit die
   Seitenköpfe nicht nackt wirken */
.pagehead .eyebrow { position: relative; padding-bottom: 1.15rem; margin-bottom: 1.3rem; }
.pagehead .eyebrow::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 62px; height: 2px; background: var(--gold);
}
.pagehead--split .pagehead-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.pagehead-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- Rasterbausteine --- */
.grid { display: grid; gap: clamp(1.3rem, 2.6vw, 2.1rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Merkmale --- */
.feature { padding-top: 1.5rem; border-top: 2px solid var(--navy); }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.feature-num {
  display: block; font-family: var(--font-display); font-size: .8rem;
  letter-spacing: .18em; color: var(--gold-deep); margin-bottom: .7rem;
}

/* --- Karten --- */
.card {
  display: flex; flex-direction: column;
  background: #FBF9F4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), border-color .34s var(--ease);
}
.card-media { position: relative; overflow: hidden; aspect-ratio: 3 / 2; background: var(--navy); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card-body { padding: 1.4rem 1.45rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.24rem; margin-bottom: .45rem; }
.card-body p { font-size: .95rem; color: var(--ink-soft); }
.card-kicker {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .55rem;
}
.card-foot { margin-top: auto; padding-top: 1.1rem; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--line-strong); }
.card:hover .card-media img { transform: scale(1.045); }

a.card { color: inherit; }
a.card:hover h3 { color: var(--gold-deep); }

/* --- Platzhalterflaeche, solange kein Foto vorhanden ist --- */
.placeholder {
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(176,141,87,.16), transparent 58%),
    linear-gradient(150deg, var(--navy-soft), var(--navy) 55%, var(--navy-deep));
  color: var(--gold-pale);
  position: relative;
}
.placeholder::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(216,196,162,.22); border-radius: 2px;
}
.placeholder svg { width: clamp(38px, 12%, 62px); height: auto; opacity: .85; }
.placeholder--portrait { aspect-ratio: 4 / 5; border-radius: var(--radius); }
.placeholder--wide { aspect-ratio: 3 / 2; border-radius: var(--radius); }

/* --- Ablauf in Schritten --- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; }
.steps li {
  counter-increment: step;
  display: grid; grid-template-columns: 3.4rem 1fr; gap: 0 1.4rem;
  padding: 1.7rem 0; border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-deep);
  line-height: 1; padding-top: .18rem;
}
.steps h3 { font-size: 1.16rem; margin-bottom: .4rem; }
.steps p { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.section--navy .steps li { border-color: rgba(245,241,232,.16); }
.section--navy .steps li::before { color: var(--gold); }
.section--navy .steps p { color: rgba(245,241,232,.78); }

/* --- Kostenliste --- */
.pricelist { margin: 0; }
.pricelist > div {
  display: grid; grid-template-columns: 15rem 1fr; gap: .3rem 2rem;
  padding: 1.2rem 0; border-top: 1px solid var(--line);
}
.pricelist > div:last-child { border-bottom: 1px solid var(--line); }
.pricelist dt { font-weight: 600; color: var(--navy); }
.pricelist dd { margin: 0; color: var(--ink-soft); font-size: .97rem; }

.callout {
  border-left: 3px solid var(--gold);
  background: #FBF9F4;
  padding: 1.35rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .96rem;
  color: var(--ink-soft);
}
.callout strong { display: block; margin-bottom: .3rem; }
.callout--legal { border-left-color: var(--burgundy); }

/* --- Haeufige Fragen --- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--navy);
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-deep); }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 11px; height: 11px; margin-top: .45rem;
  border-right: 1.5px solid var(--gold-deep); border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 0 1.5rem; max-width: 68ch; font-size: .98rem; color: var(--ink-soft); }

/* --- Abschlussband mit der Handlungsaufforderung --- */
.cta-band { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(176,141,87,.17), transparent 55%);
}
.cta-band .wrap { position: relative; }
.cta-inner { display: grid; gap: clamp(1.6rem, 3vw, 3rem); align-items: center; grid-template-columns: 1.4fr auto; }
.cta-band h2 { color: var(--cream); margin-bottom: .6rem; }
.cta-band p { color: rgba(245,241,232,.8); margin: 0; max-width: 52ch; }

/* --- Fussbereich --- */
.site-footer { background: var(--cream-deep); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); padding-block: clamp(3rem, 6vw, 4.5rem); }
.footer-logo { width: 190px; margin-bottom: 1.1rem; }
.footer-about p { font-size: .93rem; color: var(--ink-soft); max-width: 34ch; }
.footer-col h2 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .17em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .62rem; }
.footer-col a { font-size: .93rem; color: var(--ink); transition: color .22s var(--ease); }
.footer-col a:hover { color: var(--gold-deep); }
.footer-col address { font-size: .93rem; font-style: normal; color: var(--ink-soft); line-height: 1.8; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  padding-block: 1.4rem; border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--ink-soft);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--navy); }

/* --- Formulare --- */
.form { max-width: 720px; }
.form-grid { display: grid; gap: 1.15rem 1.4rem; grid-template-columns: repeat(2, 1fr); }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .87rem; font-weight: 600; color: var(--navy); letter-spacing: .01em; }
.field .hint { font-size: .8rem; color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #FFFDF8;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,141,87,.18);
}
.field-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: .75rem; margin-top: .3rem; }
.field-consent input { width: 1.1rem; height: 1.1rem; margin-top: .3rem; flex: 0 0 auto; accent-color: var(--gold-deep); }
.field-consent label { font-weight: 400; font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }
.form-actions { margin-top: 1.7rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; }
.form-actions .hint { font-size: .84rem; color: var(--ink-soft); }
/* Honigtopf: unsichtbares Feld nur fuer automatische Spam-Programme */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.formnote { margin-top: 1.6rem; font-size: .87rem; color: var(--ink-soft); }
.status {
  padding: 1.05rem 1.3rem; border-radius: var(--radius); margin-bottom: 1.8rem;
  font-size: .96rem; border-left: 3px solid var(--gold);
  background: #FBF9F4;
}
.status--ok { border-left-color: #2F6B4F; }
.status--fail { border-left-color: var(--burgundy); }

/* --- Fliesstext fuer Artikel und Rechtstexte --- */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 2.6rem; font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.95rem); }
.prose h3 { margin-top: 2rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose ul li::marker { color: var(--gold); }
.prose figure { margin: 2.2rem 0; }
.prose figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.prose figcaption { font-size: .84rem; color: var(--ink-soft); margin-top: .7rem; }
.prose > .callout { margin: 2rem 0; }

.article-meta {
  display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; align-items: center;
  font-size: .84rem; color: var(--ink-soft); margin-bottom: 1.6rem;
}
.article-meta span + span::before { content: "· "; color: var(--gold); }

.valuelist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.valuelist li { display: grid; grid-template-columns: 12rem 1fr; gap: .3rem 2rem; padding: 1.15rem 0; border-top: 1px solid var(--line); }
.valuelist li:last-child { border-bottom: 1px solid var(--line); }
.valuelist strong { color: var(--navy); }
.valuelist span { color: var(--ink-soft); font-size: .97rem; }

/* --- Sanftes Einblenden beim Scrollen --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .btn:hover, .btn--primary:hover, .btn--ghost:hover { transform: none; }
  .card:hover .card-media img { transform: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   Mobile Ansicht, bewusster eigener Durchgang
   ========================================================================== */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero-grid, .pagehead--split .pagehead-grid { grid-template-columns: 1fr; }
  /* Auf dem Handy steht das Foto ueber dem Text, damit die Ueberschrift
     nicht unter dem Bild verschwindet */
  .hero-figure { order: -1; }
  .hero-figure::before { display: none; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .pricelist > div, .valuelist li { grid-template-columns: 1fr; gap: .35rem; }
  .pricelist dt, .valuelist strong { font-size: .97rem; }
}

@media (max-width: 620px) {
  body { font-size: 1.02rem; }
  /* Textlinks brauchen auf dem Handy eine groessere Tippflaeche. Die
     Unterstreichung wandert dafuer direkt an den Text. */
  .textlink {
    border-bottom: 0;
    padding-block: .55rem;
    min-height: 44px;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 1px;
    text-underline-offset: .28em;
  }
  /* Ankreuzfeld und Fusszeilen-Links ebenfalls groesser antippbar */
  .field-consent { gap: .9rem; }
  .field-consent input { width: 1.4rem; height: 1.4rem; margin-top: .15rem; }
  .field-consent label { font-size: .93rem; line-height: 1.75; }
  .footer-col ul { gap: .1rem; }
  .footer-col a { display: inline-block; padding-block: .6rem; }
  .footer-bottom ul { gap: .1rem 1.4rem; }
  .footer-bottom a { display: inline-block; padding-block: .62rem; }
  /* Logo-Link und verlinkte Kachelüberschriften sicher antippbar machen */
  .brand { padding-block: .35rem; }
  .feature h3 a { display: inline-block; padding-block: .72rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 1fr; gap: .55rem; padding: 1.4rem 0; }
  .steps li::before { font-size: 1.15rem; }
  /* Ganze Breite fuer Knoepfe, damit sie sicher tippbar sind */
  .btn { width: 100%; justify-content: center; padding: 1.05rem 1.4rem; }
  .btn-row { gap: .7rem; }
  .header-cta { width: auto; }
  .hero-figure img, .pagehead-grid img { max-height: 58vh; object-fit: cover; }
  .card-media { aspect-ratio: 16 / 10; }
  .footer-bottom { flex-direction: column; }
  .faq summary { font-size: 1.02rem; gap: 1rem; }
}

/* ==========================================================================
   Wegweiser zum eBay-Shop
   Der Verkauf läuft nicht über diese Website. Dieser Baustein macht das
   sichtbar und führt an einer Stelle klar und ruhig zum Shop.
   ========================================================================== */
.shop-card {
  display: grid;
  grid-template-columns: minmax(230px, .78fr) 1.22fr;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: #FBF9F4;
  box-shadow: var(--shadow);
}

.shop-card__side {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  gap: .55rem;
  padding: clamp(2.2rem, 4vw, 3.2rem) 1.5rem;
  background:
    radial-gradient(circle at 30% 22%, rgba(176,141,87,.18), transparent 60%),
    linear-gradient(150deg, var(--navy-soft), var(--navy) 55%, var(--navy-deep));
  color: var(--gold-pale);
}
.shop-card__side::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(216,196,162,.22); border-radius: 2px;
}
.shop-card__side svg { width: 46px; height: 46px; margin-bottom: .5rem; }
.shop-card__label {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-pale);
}
.shop-card__handle {
  font-family: var(--font-display); font-size: 1.24rem; line-height: 1.25;
  color: var(--cream); letter-spacing: .02em;
}

.shop-card__main { padding: clamp(1.8rem, 3.4vw, 3rem); }
.shop-card__main h2 { font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem); margin-bottom: .7rem; }
.shop-card__main > p { font-size: 1rem; color: var(--ink-soft); max-width: 52ch; }

.shop-points { list-style: none; margin: 1.5rem 0 1.9rem; padding: 0; display: grid; gap: .8rem; }
.shop-points li {
  display: grid; grid-template-columns: 1.1rem 1fr; gap: .8rem;
  font-size: .96rem; color: var(--ink-soft);
}
.shop-points li::before {
  content: ""; width: 7px; height: 12px; margin-top: .42rem;
  border-right: 1.6px solid var(--gold-deep); border-bottom: 1.6px solid var(--gold-deep);
  transform: rotate(45deg);
}
.shop-card__url {
  margin-top: 1.1rem; font-size: .84rem; color: var(--ink-soft);
  letter-spacing: .02em;
}

/* Kleiner Hinweis unter den Sammelgebieten */
.notiz {
  margin-top: 2.2rem; padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
  font-size: .89rem; color: var(--ink-soft); max-width: 74ch;
}

/* Fußzeile in den Sammelgebiet-Karten */
.card-shoplink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; letter-spacing: .03em;
  color: var(--gold-deep);
  transition: gap .25s var(--ease);
}
a.card:hover .card-shoplink { gap: .75rem; }

@media (max-width: 780px) {
  .shop-card { grid-template-columns: 1fr; }
  .shop-card__side { padding: 2.2rem 1.5rem; }
  .shop-card__side svg { width: 40px; height: 40px; }
}
