/* ==========================================================================
   Gold & Uhrenbörse Mainz — Stylesheet (v2)
   Schwarz / Warmweiß / Champagner · Bricolage Grotesque + Instrument Sans + Instrument Serif
   ========================================================================== */
@import url("fonts.css");

:root {
  --ink: #0a0a0a;
  --ink-2: #141414;
  --ink-3: #1d1d1d;
  --paper: #f3f1ec;
  --paper-2: #e9e6df;
  --white: #ffffff;
  --gold: #c6a75e;
  --gold-2: #e2cd97;
  --gold-deep: #9f7f3a;
  --mute: #6d6a63;
  --mute-d: #9a958b;
  --line: rgba(10, 10, 10, 0.12);
  --line-d: rgba(243, 241, 236, 0.14);
  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --w: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); font-size: 1.02rem; line-height: 1.6; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Typografie ---------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-optical-sizing: auto; font-weight: 500; line-height: 1; letter-spacing: -0.03em; margin: 0 0 1rem; }
h1 { font-size: clamp(3rem, 7.6vw, 7rem); letter-spacing: -0.04em; line-height: 0.94; }
h2 { font-size: clamp(2.3rem, 5vw, 4.4rem); letter-spacing: -0.035em; line-height: 0.98; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); letter-spacing: -0.025em; line-height: 1.05; }
h4 { font-size: 1.25rem; letter-spacing: -0.015em; line-height: 1.15; }
h1 em, h2 em, h3 em, .serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; color: var(--gold-deep); font-size: 1.06em; }
.dark h1 em, .dark h2 em, .dark h3 em { color: var(--gold); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; max-width: 56ch; font-weight: 400; }
.kicker { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep); margin-bottom: 1rem; display: block; }
.dark .kicker { color: var(--gold); }
.small { font-size: 0.88rem; }
.mute { color: var(--mute); }
.dark .mute { color: var(--mute-d); }
.index { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--mute); font-variant-numeric: tabular-nums; }
.dark .index { color: var(--mute-d); }

/* Layout -------------------------------------------------------------------- */
.wrap { width: min(100% - 3rem, var(--w)); margin-inline: auto; }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.dark { background: var(--ink); color: var(--paper); }
.dark-2 { background: var(--ink-2); color: var(--paper); }
.white { background: var(--paper); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split.top { align-items: start; }
.split.w-a { grid-template-columns: 1.25fr 0.75fr; } .split.w-b { grid-template-columns: 0.9fr 1.1fr; } .split.w-c { grid-template-columns: 1.1fr 0.9fr; } .split.w-d { grid-template-columns: 1.4fr 0.8fr; } .split.w-e { grid-template-columns: 0.8fr 1.2fr; }
.cols-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.head { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.head p { margin-bottom: 0.25rem; }
@media (max-width: 960px) { .split, .split.w-a, .split.w-b, .split.w-c, .split.w-d, .split.w-e, .head { grid-template-columns: 1fr; } .cols-12 { grid-template-columns: 1fr; } }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.dark .rule { border-color: var(--line-d); }

/* Buttons ------------------------------------------------------------------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1rem 1.6rem; border-radius: 999px; font-family: var(--display); font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; border: 1px solid transparent; transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s; white-space: nowrap; overflow: hidden; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; flex-shrink: 0; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-3); }
.btn-line { background: transparent; color: var(--ink); border-color: rgba(10, 10, 10, 0.35); }
.btn-line:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.dark .btn-line { color: var(--paper); border-color: rgba(243, 241, 236, 0.35); }
.dark .btn-line:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-lg { padding: 1.2rem 2rem; font-size: 1.05rem; }
.link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; position: relative; }
.link::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0.35); transform-origin: left; transition: transform 0.4s var(--ease); }
.link:hover::after { transform: scaleX(1); }
.link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

/* Header -------------------------------------------------------------------- */
.topline { background: var(--gold); color: var(--ink); font-size: 0.8rem; font-weight: 600; text-align: center; padding: 0.45rem 1rem; letter-spacing: 0.01em; }
.topline strong { font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); color: var(--ink); border-bottom: 1px solid var(--line); transition: transform 0.5s var(--ease); }
.site-header.hide { transform: translateY(-100%); }
.hd { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--gold-deep); position: relative; flex-shrink: 0; }
.brand-mark::before { content: ""; position: absolute; left: 50%; top: 50%; width: 1px; height: 11px; background: var(--gold-deep); transform-origin: bottom; transform: translate(-50%, -100%) rotate(35deg); }
.brand-mark::after { content: ""; position: absolute; left: 50%; top: 50%; width: 1px; height: 8px; background: var(--gold-deep); transform-origin: bottom; transform: translate(-50%, -100%) rotate(-70deg); }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.02em; line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.3rem; }
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a { font-size: 0.92rem; font-weight: 500; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; color: var(--gold-deep); }
.hd-actions { display: flex; align-items: center; gap: 1.2rem; }
.hd-actions .tel { font-size: 0.92rem; font-weight: 500; opacity: 0.85; display: inline-flex; align-items: center; gap: 0.45rem; }
.hd-actions .tel svg { width: 15px; height: 15px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; }
.hd-actions .btn { padding: 0.75rem 1.2rem; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); width: 44px; height: 44px; border-radius: 50%; place-items: center; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; transition: background 0.2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--ink); transition: transform 0.3s; }
.nav-toggle span::before { top: -5px; } .nav-toggle span::after { top: 5px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(5px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 1080px) { .hd-actions .tel { display: none; } .nav { gap: 1.3rem; } }
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .hd-actions .btn { display: none; }
  .site-header { background: var(--white); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav { position: fixed; inset: 72px 0 0 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 1.5rem 1.5rem 6rem; gap: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.35s, transform 0.5s var(--ease); }
  .nav-open .nav { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { font-family: var(--display); font-size: 2.4rem; font-weight: 500; letter-spacing: -0.03em; padding: 0.8rem 0; border-bottom: 1px solid var(--line); opacity: 1; }
  .nav .nav-cta { margin-top: 1.5rem; border: 0; padding: 0; }
  .nav .nav-cta .btn { width: 100%; font-size: 1rem; }
  .nav-open { overflow: hidden; }
  .nav-open .topline { display: none; }
}
.nav-cta { display: none; }
@media (max-width: 900px) { .nav-cta { display: block; } }

/* Hero ---------------------------------------------------------------------- */
.hero { position: relative; background: var(--paper); color: var(--ink); overflow: hidden; min-height: min(calc(100vh - 72px), 880px); display: grid; align-items: center; padding: clamp(3rem, 6vw, 5rem) 0; }
.hero .glow { position: absolute; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, 0.3), transparent 60%); pointer-events: none; transform: translate(-50%, -50%); transition: left 1.2s var(--ease), top 1.2s var(--ease); left: 70%; top: 45%; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lead { color: var(--mute); margin-bottom: 2rem; }
.hero-foot { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.86rem; color: var(--mute); }
.hero-foot strong { display: block; color: var(--ink); font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; }
.tilt { perspective: 1400px; display: grid; place-items: center; position: relative; }
.tilt-inner { transition: transform 0.9s var(--ease); transform-style: preserve-3d; will-change: transform; width: min(100%, 540px); }
.tilt-inner svg { filter: drop-shadow(0 40px 70px rgba(10, 10, 10, 0.35)); }
.dial-hand { transform-origin: 200px 200px; transition: transform 0.5s var(--ease); }
.hero-badge { position: absolute; right: clamp(1rem, 2.5vw, 2.5rem); top: 1.5rem; z-index: 2; background: var(--ink); color: var(--paper); border-radius: 999px; padding: 0.6rem 1rem 0.6rem 0.7rem; display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; box-shadow: 0 20px 40px -12px rgba(10, 10, 10, 0.45); animation: float 6s ease-in-out infinite; }
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: #3ec26e; box-shadow: 0 0 0 4px rgba(62, 194, 110, 0.25); }
.hero-badge.closed i { background: #d9634f; box-shadow: 0 0 0 4px rgba(217, 99, 79, 0.25); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.scroll-hint { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint::after { content: ""; width: 1px; height: 36px; background: linear-gradient(var(--gold), transparent); animation: drop 2s ease-in-out infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 960px) { .hero { min-height: 0; } .hero-grid { grid-template-columns: 1fr; } .tilt { order: -1; } .tilt-inner { width: min(78%, 360px); } .hero-badge { top: 1rem; right: 1rem; font-size: 0.78rem; } .scroll-hint { display: none; } }

/* Unterseiten-Hero */
.phero { background: var(--paper); color: var(--ink); padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.phero .glow { position: absolute; right: -10%; top: -30%; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, 0.28), transparent 60%); pointer-events: none; }
.phero h1 { max-width: 15ch; position: relative; }
.phero .lead { color: var(--mute); position: relative; }
.crumb { font-size: 0.8rem; color: var(--mute); margin-bottom: 2.5rem; display: flex; gap: 0.6rem; }
.crumb a:hover { color: var(--gold-deep); }

/* Marquee ------------------------------------------------------------------- */
.marquee-wrap { overflow: hidden; border-block: 1px solid var(--line); padding: 1.4rem 0; background: var(--paper); color: var(--ink); }
.marquee-wrap.gold { background: var(--gold); color: var(--ink); border-color: rgba(0, 0, 0, 0.12); }
.marquee { display: flex; width: max-content; animation: marquee 45s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee li { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; font-family: var(--display); font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 500; letter-spacing: -0.02em; white-space: nowrap; }
.marquee li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.marquee-wrap.gold .marquee li { font-size: 0.82rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.marquee-wrap.gold .marquee li::after { background: var(--ink); width: 5px; height: 5px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }

/* Schnellcheck -------------------------------------------------------------- */
.qc { background: var(--white); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.qc-head { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) 0; display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; }
.qc-head > div { min-width: 0; } .qc-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0; }
.qc-choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding: clamp(1.5rem, 3vw, 2.5rem); }
.qc-choice { position: relative; text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.4rem 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; transition: background 0.3s, color 0.3s, transform 0.4s var(--ease), border-color 0.3s; }
.qc-choice strong { font-family: var(--display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.qc-choice span { font-size: 0.86rem; color: var(--mute); }
.qc-choice svg { width: 28px; height: 28px; stroke: var(--gold-deep); fill: none; stroke-width: 1.4; margin-bottom: 0.4rem; }
.qc-choice:hover { transform: translateY(-2px); border-color: var(--ink); }
.qc-choice[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.qc-choice[aria-pressed="true"] span { color: var(--mute-d); }
.qc-choice[aria-pressed="true"] svg { stroke: var(--gold); }
.qc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.6s var(--ease); }
.qc-panel.open { grid-template-rows: 1fr; }
.qc-panel > div { overflow: hidden; }
.qc-form { border-top: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.5rem); display: grid; grid-template-columns: 1fr 1fr auto; gap: 1.25rem; align-items: end; }
.qc-form .field { margin: 0; }
.qc-form .chips { margin-top: 0.2rem; }
@media (max-width: 900px) { .qc-choices { grid-template-columns: 1fr; } .qc-form { grid-template-columns: 1fr; } }

/* Hover-Liste --------------------------------------------------------------- */
.hlist { border-top: 1px solid var(--line); }
.dark .hlist { border-color: var(--line-d); }
.hlist a { display: grid; grid-template-columns: 4rem 1fr 1.2fr 3rem; align-items: center; gap: 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); position: relative; transition: padding 0.5s var(--ease); }
.dark .hlist a { border-color: var(--line-d); }
.hlist a::before { content: ""; position: absolute; inset: 0 -1.5rem; background: var(--ink); transform: scaleY(0); transform-origin: bottom; transition: transform 0.45s var(--ease); z-index: 0; border-radius: 8px; }
.dark .hlist a::before { background: var(--gold); }
.hlist a > * { position: relative; z-index: 1; transition: color 0.3s; }
.hlist a:hover::before { transform: scaleY(1); transform-origin: top; }
.hlist a:hover { color: var(--paper); padding-left: 0.5rem; }
.dark .hlist a:hover { color: var(--ink); }
.hlist .t { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.3rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.hlist .d { font-size: 0.95rem; color: var(--mute); }
.hlist a:hover .d { color: rgba(243, 241, 236, 0.75); }
.dark .hlist .d { color: var(--mute-d); }
.dark .hlist a:hover .d { color: rgba(10, 10, 10, 0.7); }
.hlist .arr { width: 40px; height: 40px; border-radius: 50%; border: 1px solid currentColor; display: grid; place-items: center; opacity: 0.5; transition: opacity 0.3s, transform 0.5s var(--ease); }
.hlist .arr svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.hlist a:hover .arr { opacity: 1; transform: rotate(-45deg); }
@media (max-width: 760px) { .hlist a { grid-template-columns: 2.4rem 1fr 2.4rem; gap: 1rem; padding: 1.2rem 0; } .hlist .d { grid-column: 2; font-size: 0.88rem; } .hlist .arr { grid-column: 3; grid-row: 1; width: 32px; height: 32px; } }

/* Statement / Zahlen -------------------------------------------------------- */
.statement { font-family: var(--display); font-size: clamp(1.9rem, 4.2vw, 3.8rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1.05; max-width: 22ch; }
.statement em { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-weight: 400; font-size: 1.06em; }
.dark .statement em { color: var(--gold); }
.nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; border-top: 1px solid var(--line); padding-top: 2rem; }
.dark .nums { border-color: var(--line-d); }
.num b { display: block; font-family: var(--display); font-weight: 500; font-size: clamp(2.6rem, 5vw, 4.4rem); letter-spacing: -0.04em; line-height: 1; color: var(--gold-deep); font-variant-numeric: tabular-nums; }
.dark .num b { color: var(--gold); }
.num > span { font-size: 0.86rem; color: var(--mute); display: block; margin-top: 0.5rem; }
@media (max-width: 640px) { .nums { grid-template-columns: 1fr; gap: 1.4rem; } }

/* Ablauf: Schritte untereinander --------------------------------------------- */
.journey { display: grid; gap: 0.6rem; }
.pstep { display: grid; grid-template-columns: 5rem 1fr 1.4fr; gap: 1.5rem 2rem; align-items: center; padding: 1.8rem 2rem; border-radius: 14px; background: var(--paper-2); }
.pstep:nth-child(even) { background: var(--white); }
.pstep b { font-family: var(--display); font-weight: 500; font-size: 3rem; letter-spacing: -0.04em; line-height: 0.9; color: var(--gold-deep); }
.pstep h3 { margin: 0; font-size: clamp(1.3rem, 2vw, 1.7rem); }
.pstep p { color: var(--mute); margin: 0; max-width: 52ch; }
.pstep p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 800px) { .pstep { grid-template-columns: 3rem 1fr; padding: 1.4rem 1.2rem; } .pstep p { grid-column: 2; } .pstep b { font-size: 2.2rem; } }

/* Goldrechner --------------------------------------------------------------- */
.calc { background: var(--ink); color: var(--paper); border-radius: 20px; padding: clamp(1.5rem, 3.5vw, 3rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--line-d); position: relative; overflow: hidden; }
.calc::after { content: ""; position: absolute; right: -20%; bottom: -40%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, 0.2), transparent 65%); pointer-events: none; }
.calc h3 { margin-bottom: 0.5rem; }
.calc .mute { color: var(--mute-d); }
.calc label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--mute-d); margin-bottom: 0.5rem; }
.calc .weight { display: flex; align-items: baseline; gap: 0.4rem; margin-bottom: 0.4rem; }
.calc .weight input { font-family: var(--display); font-size: 3rem; font-weight: 500; letter-spacing: -0.04em; background: none; border: 0; border-bottom: 1px solid var(--line-d); color: var(--paper); width: 7ch; padding: 0; line-height: 1; -moz-appearance: textfield; }
.calc .weight input::-webkit-outer-spin-button, .calc .weight input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc .weight input:focus { outline: none; border-color: var(--gold); }
.calc .weight span { font-family: var(--display); font-size: 1.4rem; color: var(--mute-d); }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: var(--line-d); border-radius: 2px; margin: 1rem 0 1.5rem; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); border: 4px solid var(--ink); box-shadow: 0 0 0 1px var(--gold); cursor: grab; }
input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 4px solid var(--ink); box-shadow: 0 0 0 1px var(--gold); cursor: grab; }
.calc-out { position: relative; z-index: 1; border-left: 1px solid var(--line-d); padding-left: clamp(1.5rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; }
.calc-out .big { font-family: var(--display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.045em; line-height: 1; color: var(--gold); font-variant-numeric: tabular-nums; }
.calc-out .big small { font-size: 0.4em; color: var(--mute-d); letter-spacing: -0.02em; margin-left: 0.3rem; }
.calc-out .est { margin-top: 1rem; font-family: var(--display); font-size: 1.6rem; font-weight: 500; letter-spacing: -0.02em; }
.calc-out .est[hidden] { display: none; }
.calc-out p { color: var(--mute-d); font-size: 0.9rem; }
@media (max-width: 800px) { .calc { grid-template-columns: 1fr; } .calc-out { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-d); padding-top: 1.5rem; } }

/* Chips --------------------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips label, .chips button { position: relative; }
.chips input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.chips span, .chips button { display: inline-block; padding: 0.6rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: 0.9rem; cursor: pointer; transition: all 0.25s; background: var(--paper); font-weight: 500; }
.chips input:checked + span, .chips button[aria-pressed="true"] { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.dark .chips span, .dark .chips button, .calc .chips button { background: transparent; border-color: var(--line-d); color: var(--paper); }
.dark .chips input:checked + span, .dark .chips button[aria-pressed="true"], .calc .chips button[aria-pressed="true"] { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* FAQ ----------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.dark .faq { border-color: var(--line-d); }
.faq details { border-bottom: 1px solid var(--line); }
.dark .faq details { border-color: var(--line-d); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr 44px; align-items: center; gap: 1.5rem; padding: 1.5rem 0; font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: background 0.3s, transform 0.5s var(--ease); }
.dark .faq summary i { border-color: var(--line-d); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; background: currentColor; width: 14px; height: 1.5px; }
.faq summary i::after { transform: rotate(90deg); transition: transform 0.4s var(--ease); }
.faq details[open] summary i { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--ink); }
.faq .a { padding: 0 0 1.6rem; max-width: 62ch; color: var(--mute); }
.dark .faq .a { color: var(--mute-d); }
.faq .a p:last-child { margin: 0; }

/* Karten (sparsam) ---------------------------------------------------------- */
.tile { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 0.8rem; }
.dark .tile { background: var(--ink-2); border-color: var(--line-d); }
.tile svg.ic { width: 30px; height: 30px; stroke: var(--gold-deep); fill: none; stroke-width: 1.4; }
.dark .tile svg.ic { stroke: var(--gold); }
.tile h4 { margin: 0; }
.tile p { margin: 0; color: var(--mute); font-size: 0.95rem; }
.dark .tile p { color: var(--mute-d); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.check { display: grid; gap: 0; }
.check li { padding: 0.75rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 0.9rem; align-items: baseline; }
.dark .check li { border-color: var(--line-d); }
.check li::before { content: "—"; color: var(--gold); flex-shrink: 0; }
.check.cols { columns: 2; column-gap: 2.5rem; display: block; }
.check.cols li { break-inside: avoid; }
@media (max-width: 640px) { .check.cols { columns: 1; } }

/* Feingehalt-Karten */
.karat { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.karat div { background: var(--white); padding: 2rem 1.5rem; transition: background 0.3s; }
.karat div:hover { background: var(--paper); }
.karat b { display: block; font-family: var(--display); font-size: 3.2rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; color: var(--gold-deep); }
.karat strong { display: block; font-family: var(--display); font-weight: 600; margin: 0.6rem 0 0.4rem; }
.karat p { margin: 0; font-size: 0.88rem; color: var(--mute); }
@media (max-width: 800px) { .karat { grid-template-columns: repeat(2, 1fr); } }

/* Zitat --------------------------------------------------------------------- */
.quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.9rem, 3.6vw, 3.2rem); line-height: 1.15; letter-spacing: -0.015em; margin: 0; max-width: 24ch; }
.quote-by { margin-top: 1.5rem; display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; color: var(--mute); }
.dark .quote-by { color: var(--mute-d); }
.quote-by::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.quote-by strong { color: inherit; font-weight: 600; }

/* Bewertungen --------------------------------------------------------------- */
.review { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.85rem; }
.review p { font-size: 1.05rem; line-height: 1.5; margin: 0; flex: 1; }
.review footer { font-size: 0.82rem; color: var(--mute); font-weight: 500; }
.notice { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem 1.25rem; border: 1px dashed var(--gold-deep); background: rgba(198, 167, 94, 0.1); font-size: 0.88rem; border-radius: 12px; margin-bottom: 2.5rem; }
.notice svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; margin-top: 2px; }

/* Öffnungszeiten & Kontakt -------------------------------------------------- */
.hours { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.hours td { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }
.dark .hours td { border-color: var(--line-d); }
.open-status { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.86rem; font-weight: 600; margin-bottom: 1rem; }
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #999; box-shadow: 0 0 0 4px rgba(153, 153, 153, 0.18); }
.open-status.is-open::before { background: #3ec26e; box-shadow: 0 0 0 4px rgba(62, 194, 110, 0.2); }
.open-status.is-closed::before { background: #d9634f; box-shadow: 0 0 0 4px rgba(217, 99, 79, 0.2); }
.clist li { display: grid; grid-template-columns: 22px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.clist li:last-child { border-bottom: 0; }
.clist svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.4; margin-top: 3px; }
.dark .clist svg { stroke: var(--gold); }
.dark .clist li { border-color: var(--line-d); }
.clist small { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); margin-bottom: 0.2rem; font-weight: 600; }
.dark .clist small { color: var(--mute-d); }
.clist a:hover { color: var(--gold-deep); }
.dark .clist a:hover { color: var(--gold); }
.clist .big { font-family: var(--display); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }
.map { position: relative; background: var(--ink-2); min-height: 400px; border: 1px solid var(--line-d); border-radius: 16px; display: grid; place-items: center; overflow: hidden; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(1.05); }
.map-consent { text-align: center; padding: 2rem; color: var(--paper); max-width: 420px; position: relative; z-index: 1; }
.map-consent p { font-size: 0.86rem; color: var(--mute-d); }
.map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(243, 241, 236, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 241, 236, 0.05) 1px, transparent 1px); background-size: 36px 36px; }
.map.loaded::before, .map.loaded .map-consent { display: none; }

/* Formular ------------------------------------------------------------------ */
.form-shell { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.5rem, 4vw, 3rem); }
.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; background: var(--paper); padding: 0.4rem; border-radius: 999px; margin-bottom: 2.2rem; }
.segmented label { position: relative; }
.segmented input { position: absolute; opacity: 0; inset: 0; pointer-events: none; }
.segmented span { display: flex; align-items: center; justify-content: center; text-align: center; padding: 0.8rem 0.6rem; border-radius: 999px; font-family: var(--display); font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; cursor: pointer; transition: background 0.3s, color 0.3s; min-height: 48px; }
.segmented input:checked + span { background: var(--ink); color: var(--gold); }
.segmented input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: -3px; }
@media (max-width: 640px) { .segmented { grid-template-columns: 1fr; border-radius: 16px; } .segmented span { border-radius: 12px; } }
fieldset { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
legend { font-family: var(--display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.02em; margin-bottom: 1.2rem; padding: 0; }
fieldset[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--mute); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea { font: inherit; font-size: 1rem; padding: 0.9rem 1rem; border: 1px solid var(--line); background: var(--paper); border-radius: 10px; color: var(--ink); width: 100%; transition: border-color 0.2s, background 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); background: var(--white); }
.field textarea { min-height: 130px; resize: vertical; }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230a0a0a' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
.field input[type="file"] { padding: 0.7rem; background: var(--white); border-style: dashed; }
.field .hint { font-size: 0.8rem; color: var(--mute); }
.consent { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.86rem; margin: 1.2rem 0 1.6rem; line-height: 1.5; }
.consent input { margin-top: 0.25rem; accent-color: var(--gold-deep); width: 18px; height: 18px; flex-shrink: 0; }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.side { position: sticky; top: 96px; display: grid; gap: 1rem; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* CTA ----------------------------------------------------------------------- */
.cta { background: var(--paper); color: var(--ink); position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.cta .glow { position: absolute; left: 50%; top: 50%; width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px; border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, 0.3), transparent 60%); transform: translate(-50%, -50%); pointer-events: none; }
.cta-in { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: end; }
.cta-in h2 { font-size: clamp(2.6rem, 6vw, 5.4rem); margin: 0; }
.cta-in .row { justify-content: flex-end; }
@media (max-width: 900px) { .cta-in { grid-template-columns: 1fr; } .cta-in .row { justify-content: flex-start; } }

/* Footer -------------------------------------------------------------------- */
.site-footer { background: var(--paper-2); color: var(--ink); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.fgrid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 0.8fr; gap: 3rem; margin-bottom: 3.5rem; }
.fgrid h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.1rem; font-weight: 600; }
.fgrid p, .fgrid li { color: var(--mute); font-size: 0.94rem; }
.fgrid li { padding: 0.28rem 0; }
.fgrid a:hover { color: var(--gold-deep); }
.fbottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.8rem; color: var(--mute); }
.fbottom ul { display: flex; gap: 1.5rem; }
.fbottom a:hover { color: var(--gold-deep); }
@media (max-width: 960px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fgrid { grid-template-columns: 1fr; gap: 2rem; } }

/* Mobile-Leiste ------------------------------------------------------------- */
.mbar { display: none; }
@media (max-width: 760px) {
  .mbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; display: grid; grid-template-columns: 1fr 1fr; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 0.6rem 0.6rem calc(0.6rem + env(safe-area-inset-bottom)); gap: 0.5rem; }
  .mbar a { padding: 0.85rem; text-align: center; font-family: var(--display); font-size: 0.92rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 999px; border: 1px solid rgba(10, 10, 10, 0.3); }
  .mbar a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; }
  .mbar a.primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  body { padding-bottom: 72px; }
}

/* Rechtstexte --------------------------------------------------------------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin-top: 3rem; }
.prose h3 { font-size: 1.25rem; margin-top: 2rem; }
.prose p, .prose li { font-size: 0.98rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose mark { background: rgba(198, 167, 94, 0.35); padding: 0 0.25rem; }

/* Reveal -------------------------------------------------------------------- */
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv-d1 { transition-delay: 0.1s; } .js .rv-d2 { transition-delay: 0.2s; } .js .rv-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; transition: none; } .tilt-inner { transition: none; } .hero-badge { animation: none; } }

/* Helfer -------------------------------------------------------------------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Bild-Platzhalter (bis echte Fotos eingesetzt werden) ----------------------- */
.ph { position: relative; margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; background: linear-gradient(145deg, #1c1c1c, #0a0a0a); border: 1px solid var(--line-d); display: grid; place-items: center; }
.ph.wide { aspect-ratio: 16 / 10; } .ph.square { aspect-ratio: 1; }
.ph::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, rgba(198, 167, 94, 0.07) 0 1px, transparent 1px 14px); }
.ph::after { content: ""; position: absolute; right: -20%; bottom: -30%; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, 0.22), transparent 65%); }
.ph-label { position: relative; z-index: 1; text-align: center; color: var(--mute-d); font-size: 0.82rem; line-height: 1.45; padding: 1.5rem; max-width: 34ch; }
.ph-label svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.4; margin: 0 auto 0.6rem; }
.ph-label b { display: block; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--paper); letter-spacing: -0.01em; margin-bottom: 0.35rem; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }

.ph.has-img::before, .ph.has-img::after { display: none; }
.ph.has-img { border-color: var(--line); background: var(--paper-2); }
.ph.has-img img { transition: transform 1.2s var(--ease); }
.ph.has-img:hover img { transform: scale(1.03); }

/* Logo ---------------------------------------------------------------------- */
.brand .logo { height: 54px; width: auto; display: block; }
.site-footer .brand .logo { height: 56px; }
@media (max-width: 900px) { .brand .logo { height: 40px; } }
@media (max-width: 380px) { .brand .logo { height: 30px; } }

/* Hintergründe: Seite durchgehend warmweiß, Akzente dunkel ---------------------- */
body { background: var(--paper); }
.hero, .phero, .section, .section-sm, .marquee-wrap { background-color: transparent; }
.section.white { background: transparent; }

/* Schimmer folgt der Maus – in jedem Kopfbereich ------------------------------- */
.hero .glow, .phero .glow { position: absolute; left: 72%; top: 42%; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, 0.34), rgba(198, 167, 94, 0.1) 40%, transparent 62%); pointer-events: none; transform: translate(-50%, -50%); transition: left 1.1s var(--ease), top 1.1s var(--ease); right: auto; }
.phero .glow { top: 30%; }
.hero-grid, .phero .wrap { position: relative; z-index: 1; }
