/* ==========================================================================
   hanse-gold – One-Page-Website "Goldankauf Rostock"
   Datei: static/landing.css   (static/style.css bleibt unverändert -> /settings)
   ========================================================================== */

/* 1) Design-Tokens -------------------------------------------------------- */
:root {
  --gold-100: #fff6d8;
  --gold-300: #f3dc9b;
  --gold-500: #d9b451;
  --gold-600: #c39a2f;
  --gold-700: #9c7617;

  --ink-900: #0c0c0f;
  --ink-800: #131317;
  --ink-700: #1b1b21;

  --line: rgba(217, 180, 81, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);

  --text: #f6f3ea;
  --text-muted: #b3ada0;
  --ok: #6dd39c;
  --err: #ff8b7b;

  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;

  --shadow-s: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-l: 0 24px 60px rgba(0, 0, 0, 0.45);

  --font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --wrap: 1180px;
  --header-h: 76px;
}

/* 2) Basis & Layout ------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(217, 180, 81, 0.16), transparent 62%),
    radial-gradient(900px 480px at -12% 14%, rgba(217, 180, 81, 0.07), transparent 58%),
    var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  font-weight: 650;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--gold-300);
}

a:hover {
  color: var(--gold-100);
}

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section--alt {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-head p {
  color: var(--text-muted);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.mark {
  background: linear-gradient(120deg, var(--gold-100), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-s);
  background: var(--gold-500);
  color: #1a1405;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.75rem;
  color: #1a1405;
}
/* 3) Header & Navigation -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-stuck {
  background: rgba(9, 9, 12, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.brand-mark svg {
  display: block;
  width: 40px;
  height: 40px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul a {
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.85;
}

.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-600));
  transition: right 0.22s ease;
}

.main-nav ul a:hover,
.main-nav ul a:focus-visible {
  opacity: 1;
}

.main-nav ul a:hover::after,
.main-nav ul a:focus-visible::after {
  right: 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-300);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 4) Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #1a1405;
  box-shadow: 0 10px 24px rgba(196, 154, 47, 0.26);
}

.btn-gold:hover {
  color: #1a1405;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(196, 154, 47, 0.36);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
}
/* 5) Hero & Preiskarte ---------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -22%;
  right: -12%;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 55% 45%, rgba(217, 180, 81, 0.2), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.lead {
  max-width: 48ch;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--text-muted);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5rem 1rem;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.9rem;
  height: 0.5rem;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-side {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-art {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: min(400px, 80%);
  opacity: 0.5;
  pointer-events: none;
}

.price-card {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(22, 22, 28, 0.94), rgba(12, 12, 16, 0.97));
  box-shadow: var(--shadow-l);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.price-card-top h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
}

.pill {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #1a1405;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line-soft);
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-row .label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.preis {
  font-size: clamp(1.3rem, 3.6vw, 1.75rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-300);
}

.preis.kilo {
  font-size: clamp(1.02rem, 3vw, 1.3rem);
  color: var(--gold-500);
}

.unit-static {
  margin-left: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-meta {
  margin: 0.7rem 0 1.1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.price-meta.is-error {
  color: var(--err);
}

/* 6) Karten, Schritte, Listen --------------------------------------------- */
.grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.card {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 180, 81, 0.45);
  box-shadow: var(--shadow-s);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(217, 180, 81, 0.09);
  color: var(--gold-300);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}
/* 7) Ablauf-Schritte ------------------------------------------------------ */
.steps {
  display: grid;
  gap: 1.6rem 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.7rem 1.3rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.03);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 1.25rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #1a1405;
  font-weight: 700;
}

.step h3 {
  margin-bottom: 0.35rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 8) Vorteile, Checkliste & Hinweisbox ------------------------------------ */
.split {
  display: grid;
  gap: clamp(1.4rem, 4vw, 2.6rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.checklist {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.05rem;
  height: 0.55rem;
  border-left: 2px solid var(--gold-500);
  border-bottom: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}

.checklist strong {
  color: var(--text);
}

.callout {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: rgba(217, 180, 81, 0.08);
}

.callout p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.callout strong {
  color: var(--gold-300);
}

.callout-icon {
  flex: 0 0 auto;
  color: var(--gold-300);
}

.callout-icon svg {
  width: 30px;
  height: 30px;
}

/* 9) Kundenstimmen & FAQ -------------------------------------------------- */
.quotes {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.quote figcaption {
  font-size: 0.85rem;
  color: var(--gold-500);
  font-weight: 600;
}

.quote-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 1rem 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 1.15rem;
  transition: transform 0.22s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  margin: 0.8rem 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}
/* 10) Goldrechner (ein-/ausklappbar) -------------------------------------- */
.rechner {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-l);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.rechner-head {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.rechner-head h2 {
  margin-bottom: 0.4rem;
}

.rechner-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.rechner-toggle {
  white-space: nowrap;
}

.rechner-toggle::after {
  content: "\25BE";
  font-size: 0.85em;
  transition: transform 0.22s ease;
}

.rechner-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.rechner-panel {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
}

.rechner-panel[hidden] {
  display: none;
}

.rechner-grades {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.rechner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  background: rgba(0, 0, 0, 0.3);
  cursor: text;
}

.rechner-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.rechner-label em {
  font-style: normal;
  color: var(--gold-500);
}

.rechner-input {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gold-input {
  width: 5.6rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15151b;
  color: var(--text);
  font: inherit;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.gold-input::placeholder {
  color: #7a7a72;
}

.gold-input:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
}

.unit {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.rechner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.rechner-result {
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-m);
  background: rgba(0, 0, 0, 0.28);
}

.rechner-result:empty {
  display: none;
}

.rechner-result.is-error {
  border-color: rgba(255, 139, 123, 0.5);
}

.result-label {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.result-value {
  margin: 0.15rem 0 0.8rem;
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  font-weight: 700;
  color: var(--gold-300);
}

.result-list {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.result-list span {
  display: block;
}

.result-list strong {
  color: var(--text);
}

.rechner-hint {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.rechner-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
  margin-top: 1.3rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.rechner-foot a {
  color: var(--gold-300);
}
/* 11) Kontakt, Karte & Formular ------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.panel h3 {
  margin: 0;
}

.info-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.info-item > div > p {
  margin: 0;
}

.info-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(217, 180, 81, 0.09);
  color: var(--gold-300);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-item .info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.info-item .info-value {
  margin: 0.1rem 0 0;
  font-size: 0.98rem;
}

.info-item .info-value a {
  text-decoration: none;
}

.info-item .info-value a:hover {
  text-decoration: underline;
}

.map-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 300px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 14px, transparent 14px 28px),
    rgba(8, 8, 10, 0.85);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.8rem;
  padding: 1.4rem;
  text-align: center;
}

.map-overlay p {
  max-width: 34ch;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.map-overlay svg {
  width: 54px;
  height: 54px;
  color: var(--gold-500);
  opacity: 0.85;
}

.map-frame.is-loaded .map-overlay {
  display: none;
}

.text-muted {
  color: var(--text-muted);
}

.form {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.87rem;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-s);
  background: #15151b;
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
  border-color: var(--gold-500);
}

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.field--check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--gold-500);
}

.field--check label {
  font-size: 0.86rem;
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.form-status.is-ok {
  color: var(--ok);
}

.form-status.is-err {
  color: var(--err);
}
/* 12) Footer -------------------------------------------------------------- */
.site-footer {
  margin-top: clamp(2rem, 6vw, 4rem);
  padding: clamp(2rem, 5vw, 3rem) 0 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 11, 0.9);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.footer-grid h4 {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.footer-grid p,
.footer-grid address {
  margin: 0;
  font-size: 0.92rem;
  font-style: normal;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-300);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.to-top {
  color: var(--gold-300);
  text-decoration: none;
}

.to-top:hover {
  text-decoration: underline;
}

/* 13) Animationen --------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* 14) Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .hero-art {
    position: static;
    order: -1;
    width: min(320px, 70%);
    margin-bottom: -1rem;
    opacity: 0.75;
  }

  .rechner-head {
    grid-template-columns: 1fr;
  }

  .rechner-toggle {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.6rem;
    background: rgba(9, 9, 12, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-s);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .main-nav.is-open {
    transform: none;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .main-nav ul a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1.05rem;
  }

  .main-nav ul a::after {
    display: none;
  }

  .btn-nav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 66px;
  }

  .wrap {
    width: min(100% - 1.7rem, var(--wrap));
  }

  .brand-text small {
    letter-spacing: 0.1em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .rechner-actions .btn {
    width: 100%;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .rechner-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .gold-input {
    width: 100%;
    text-align: left;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 250px;
  }
}
/* 15) Ergänzungen --------------------------------------------------------- */
.hero-copy {
  position: relative;
  z-index: 1;
}

.btn-nav {
  padding: 0.62rem 1.15rem;
  font-size: 0.93rem;
}

.partner-box {
  margin-top: 1.2rem;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-m);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.rechner-preis {
  color: var(--gold-300);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.legal-note {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.callout--spaced {
  margin-top: 1.6rem;
}

/* Ende landing.css */
