/* ==========================================================================
   GOLDSCHATZ VIERSEN — Premium Edelmetallhandel
   X-factor: oversized serif headlines, generous whitespace,
   refined antique-gold accents on a warm-white canvas.
   ========================================================================== */

:root {
  /* Palette */
  --paper:        #ffffff;
  --paper-warm:   #fbf8f2;
  --paper-line:   #ece6d8;
  --ink:          #14110d;
  --ink-soft:     #463f33;
  --ink-mute:     #847b6b;
  --gold:         #b8924a;
  --gold-deep:    #8c6d34;
  --gold-soft:    #d9c193;
  --gold-tint:    #f5ecd5;

  /* Type scale */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-1: clamp(2.6rem, 6.4vw, 6.4rem);   /* hero h1 */
  --t-2: clamp(2.0rem, 4.6vw, 4.0rem);   /* section h2 */
  --t-3: 1.55rem;
  --t-body: 1.05rem;
  --t-small: 0.82rem;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "kern";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
html, body { overflow-x: clip; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
em { font-style: italic; color: var(--gold-deep); }
strong { font-weight: 600; }

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; margin: 0; color: var(--ink); }
h3 { font-size: var(--t-3); line-height: 1.15; letter-spacing: -0.005em; }
h4 { font-size: 1.05rem; line-height: 1.2; }

.section-head { max-width: 760px; margin: 0 auto 56px; }
.section-head--center { text-align: center; }
.section-head__num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.section-head__title {
  font-size: var(--t-2);
  margin-bottom: 18px;
}
.section-head__lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section-head--center .section-head__lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.link-arrow:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
.link-arrow span { transition: transform .25s ease; }
.link-arrow:hover span { transform: translateX(4px); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand-sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav__links a.nav__rechner { color: var(--gold-deep); font-weight: 500; }
.nav__links a.nav__rechner::after { background: var(--gold-deep); transform: scaleX(1); }
.nav__cta-arrow { font-size: 0.95rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: stretch;
  background: var(--paper);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero__media::after {
  /* Gentle white veil on the LEFT THIRD to guarantee text readability */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.96) 32%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 72%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 110px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  font-weight: 500;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,146,74,0.18);
}
.hero__title {
  font-family: var(--serif);
  font-size: var(--t-1);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 13ch;
  margin: 0 0 30px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 40px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 64px var(--gutter);
}
.trust__grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust__grid li {
  padding: 12px 32px;
  border-left: 1px solid rgba(184,146,74,0.25);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust__grid li:first-child { border-left: 0; padding-left: 0; }
.trust__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--gold-deep);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.trust__num span {
  font-size: 0.6em;
  margin-left: 2px;
  font-weight: 300;
  color: var(--gold);
}
.trust__label {
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 28ch;
}

/* ==========================================================================
   ANKAUF
   ========================================================================== */
.ankauf {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.ankauf__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--paper-line);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  grid-column: span 2;
}
.card--feature {
  grid-column: span 6;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-color: var(--ink);
  background: var(--paper-warm);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -30px rgba(20,17,13,0.25);
  border-color: var(--gold);
}
.card__media {
  overflow: hidden;
  background: var(--paper-warm);
  aspect-ratio: 4 / 3;
}
.card--feature .card__media { aspect-ratio: auto; height: 100%; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body {
  padding: 36px 32px 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.card--feature .card__body { padding: 60px 56px; gap: 18px; justify-content: center; }
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
  position: absolute;
  top: 28px;
  right: 28px;
}
.card--feature .card__num { position: static; font-size: 1.1rem; margin-bottom: 4px; }
.card__title {
  font-family: var(--serif);
  font-size: 1.6rem;
}
.card--feature .card__title { font-size: clamp(1.8rem, 2.6vw, 2.5rem); }
.card__copy {
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.card--feature .card__copy {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.55;
  font-style: italic;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__list li {
  padding-left: 18px;
  position: relative;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.ankauf__note {
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.ankauf__note span {
  color: var(--gold-deep);
  margin-right: 10px;
  font-style: normal;
  font-weight: 300;
}

/* ==========================================================================
   ÜBER UNS
   ========================================================================== */
.ueber {
  background: var(--paper-warm);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 100%;
}
.ueber__media {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}
.ueber__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ueber__media-caption {
  position: absolute;
  left: -16px;
  bottom: -16px;
  background: var(--paper);
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  z-index: 2;
}
.ueber__content { max-width: 560px; }
.ueber__lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  margin: 24px 0 24px;
  color: var(--ink);
}
.ueber__content p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.ueber__bullets {
  list-style: none;
  padding: 32px 0;
  margin: 8px 0 32px;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ueber__bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ueber__bullets li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.7rem;
  line-height: 1.7;
}

/* ==========================================================================
   LEISTUNGEN
   ========================================================================== */
.leistungen {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}
.leistung {
  padding: 38px 32px 36px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background .3s ease;
}
.leistung:hover { background: var(--paper-warm); }
.leistung__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.leistung h3 {
  font-size: 1.35rem;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.leistung p {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   HAUSBESUCH
   ========================================================================== */
.hausbesuch {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
}
.hausbesuch__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hausbesuch__inner > * { min-width: 0; }
.ueber > * { min-width: 0; }
.hausbesuch__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.hausbesuch__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(95%);
}
.hausbesuch h2 { color: var(--paper); }
.hausbesuch .section-head__num { color: var(--gold-soft); }
.hausbesuch__lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  margin: 24px 0 36px;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
}
.hausbesuch__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hausbesuch__list li {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hausbesuch__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hausbesuch__icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: 0.02em;
}
.hausbesuch__list h4 {
  color: var(--paper);
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.hausbesuch__list p {
  font-family: var(--sans);
  color: rgba(255,255,255,0.62);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}
.hausbesuch .btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hausbesuch .btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--ink); }

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.quote blockquote { margin: 0; }
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.005em;
}
.quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.kontakt {
  background: var(--paper-warm);
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  border-top: 1px solid var(--paper-line);
}
.kontakt .section-head { text-align: left; }
.kontakt__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184,146,74,0.3);
}
.kontakt__card {
  padding: 40px 32px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(184,146,74,0.25);
}
.kontakt__card:last-child { border-right: 0; }
.kontakt__card:not(:first-child) { padding-left: 32px; }
.kontakt__card h3 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0;
}
.kontakt__addr {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.kontakt__addr a:hover { color: var(--gold-deep); }
.kontakt__hint {
  font-size: 0.86rem;
  color: var(--ink-mute);
  line-height: 1.5;
}
.kontakt__hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.kontakt__hours th, .kontakt__hours td {
  padding: 8px 0;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px dotted var(--paper-line);
  color: var(--ink-soft);
}
.kontakt__hours th {
  font-family: var(--sans);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.kontakt__hours td { font-family: var(--serif); font-style: italic; color: var(--gold-deep); text-align: right; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--gutter) 30px;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__brand { display: flex; gap: 18px; align-items: flex-start; }
.footer__brand .nav__brand-mark { background: var(--gold); color: var(--ink); }
.footer__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: var(--paper);
}
.footer__sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.footer__cols p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}
.footer__cols a:hover { color: var(--gold-soft); }
.footer__bottom {
  max-width: var(--container);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ==========================================================================
   INFO RIBBON
   ========================================================================== */
.infobar {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--paper-line);
  box-shadow: inset 0 2px 0 var(--gold);
}
.infobar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px 40px;
  flex-wrap: wrap;
}
.infobar__item { display: flex; flex-direction: column; gap: 3px; }
.infobar__label {
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.infobar__value {
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.infobar__value a:hover { color: var(--gold-deep); }
.infobar__route { margin-left: auto; }

/* Mobile-Teaser zum Goldrechner (nur auf kleinen Screens sichtbar) */
.rechner-teaser { display: none; }

/* ==========================================================================
   HAUSBESUCH — KONTAKTFORMULAR
   ========================================================================== */
.hausbesuch__form-wrap {
  max-width: var(--container);
  margin: clamp(48px, 6vw, 84px) auto 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hausbesuch__form-head { margin-bottom: 32px; }
.hausbesuch__form-head h3 {
  color: var(--paper);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 12px;
}
.hausbesuch__form-head p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
  margin: 0;
  max-width: 58ch;
}
.hausbesuch__form-head span { color: var(--gold-soft); font-style: normal; }
.hbform {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}
.hbform__field { display: flex; flex-direction: column; gap: 8px; }
.hbform__field--full { grid-column: 1 / -1; }
.hbform label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hbform input,
.hbform textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--paper);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 13px 16px;
  border-radius: 0;
  transition: border-color .25s ease, background .25s ease;
}
.hbform input::placeholder,
.hbform textarea::placeholder { color: rgba(255,255,255,0.34); }
.hbform input:focus,
.hbform textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.hbform textarea { resize: vertical; min-height: 116px; line-height: 1.55; }
.hbform__consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.hbform__consent input {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}
.hbform__consent a { color: var(--gold-soft); border-bottom: 1px solid rgba(217,193,147,0.5); }
.hbform__consent a:hover { color: var(--paper); }
.hbform__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hbform__note { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.4; }
.hbform__status {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-soft);
  margin: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  max-width: 940px;
  margin: 0 auto;
}
.faq__list { border-top: 1px solid var(--paper-line); }
.faq__item { border-bottom: 1px solid var(--paper-line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 52px 28px 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--ink);
  transition: color .25s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-deep); }
.faq__item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--gold-deep);
}
.faq__item[open] summary::after { content: "−"; }
.faq__answer {
  padding: 0 52px 32px 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 72ch;
}
.faq__answer p { margin: 0; }

/* ==========================================================================
   KONTAKT — PARKEN
   ========================================================================== */
.kontakt__parking {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--gold-deep);
  line-height: 1.5;
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.kontakt__parking::before {
  content: "P";
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.8rem;
  align-self: flex-start;
}

/* ==========================================================================
   GOLDRECHNER
   ========================================================================== */
.rechner {
  background: var(--paper-warm);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: clamp(72px, 10vw, 120px) var(--gutter);
}
.rechner__inner { max-width: 1060px; margin: 0 auto; }
.rechner__kurs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px 22px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.rechner__kurs-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  animation: rechnerPulse 2.4s ease-out infinite;
}
@keyframes rechnerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,146,74,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(184,146,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,146,74,0); }
}
@media (prefers-reduced-motion: reduce) { .rechner__kurs-dot { animation: none; } }
.rechner__kurs-label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep);
}
.rechner__kurs-metal { display: inline-flex; align-items: baseline; gap: 7px; }
.rechner__kurs-metal strong { font-family: var(--serif); font-style: italic; font-size: 1.2rem; font-weight: 500; color: var(--gold-deep); }
.rechner__kurs-stand { flex-basis: 100%; text-align: center; color: var(--ink-mute); font-size: 0.76rem; letter-spacing: 0.04em; }

.rechner__panel {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  box-shadow: 0 40px 90px -60px rgba(20,17,13,0.5);
  padding: clamp(26px, 4vw, 52px);
}
.rechner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
}
.rechner__col-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold);
}
.rechner__col-title::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  align-self: center;
}
.rechner__rows { display: flex; flex-direction: column; }
.rechner__row {
  display: grid;
  grid-template-columns: 1fr 104px 118px;
  align-items: center;
  gap: 18px;
  padding: 14px;
  margin: 0 -14px;
  border-bottom: 1px solid var(--paper-line);
  transition: background .25s ease, box-shadow .25s ease;
}
.rechner__rows .rechner__row:last-child { border-bottom: 0; }
.rechner__row.is-active {
  background: var(--gold-tint);
  box-shadow: inset 3px 0 0 var(--gold);
}
.rechner__row-label { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.rechner__row-name { font-family: var(--sans); font-size: 0.95rem; color: var(--ink); line-height: 1.25; }
.rechner__row-fine {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.rechner__input-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--paper-line);
  background: var(--paper);
  padding-right: 11px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.rechner__input-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.14); }
.rechner__input-wrap input {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--sans);
  font-size: 1rem;
  text-align: right;
  padding: 11px 3px 11px 12px;
  border: 0;
  background: transparent;
  border-radius: 0;
  -moz-appearance: textfield;
}
.rechner__input-wrap input::-webkit-outer-spin-button,
.rechner__input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rechner__input-wrap input:focus { outline: none; }
.rechner__g {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-mute);
  pointer-events: none;
}
.rechner__row-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--gold-deep);
  text-align: right;
  white-space: nowrap;
}
.rechner__row-value.is-zero { color: var(--ink-mute); opacity: 0.4; }

.rechner__total {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
  padding: clamp(26px, 3.5vw, 38px) clamp(28px, 4vw, 44px);
  background: var(--ink);
  color: var(--paper);
}
.rechner__total::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--gold-deep));
}
.rechner__total-left { display: flex; flex-direction: column; gap: 6px; }
.rechner__total-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.rechner__total-sub { font-family: var(--serif); font-style: italic; font-size: 0.96rem; color: rgba(255,255,255,0.55); }
.rechner__total-value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1;
}
.rechner__disclaimer {
  margin: 30px auto 0;
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink-mute);
  max-width: 64ch;
  line-height: 1.55;
}
.rechner__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .rechner__grid { grid-template-columns: 1fr; gap: 8px; }
  .rechner__col + .rechner__col { margin-top: 30px; }
  .rechner__row { grid-template-columns: 1fr 88px 100px; gap: 12px; padding: 14px 12px; margin: 0 -12px; }
  .rechner__row-name { font-size: 0.9rem; }
  .rechner__total { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   MOBILE-NAV — BURGER ANIMATION
   ========================================================================== */
.nav__burger span { transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   REVEAL ANIMATION (progressive enhancement)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE — TABLET
   ========================================================================== */
@media (max-width: 1080px) {
  .nav__burger { display: flex; position: relative; z-index: 70; }
  .nav__cta { margin-left: auto; }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    width: min(82vw, 340px);
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 96px 32px 40px;
    background: var(--paper);
    box-shadow: -24px 0 70px -34px rgba(20,17,13,0.5);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 60;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { padding: 18px 0; border-bottom: 1px solid var(--paper-line); font-size: 1.05rem; letter-spacing: 0.04em; }
  .nav__links a::after { display: none; }
  .ankauf__grid { grid-template-columns: repeat(4, 1fr); }
  .card { grid-column: span 2; }
  .card--feature { grid-column: span 4; }
  .leistungen__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .trust__grid li:nth-child(3) { border-left: 0; padding-left: 0; }
  .ueber, .hausbesuch__inner { grid-template-columns: 1fr; }
  .ueber__media { max-width: 480px; margin: 0 auto; }
  .hausbesuch__media { max-width: 480px; margin: 0 auto; aspect-ratio: 4/3; }
  .kontakt__grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt__card:nth-child(2) { border-right: 0; }
  .kontakt__card:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(184,146,74,0.25); padding-top: 32px; margin-top: 8px; }
  .kontakt__card:nth-child(4) { border-top: 1px solid rgba(184,146,74,0.25); padding-top: 32px; margin-top: 8px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 720px) {
  .nav__inner { padding: 14px var(--gutter); }
  .nav__cta-num { display: none; }
  .nav__cta { padding: 10px 14px; }
  .nav__cta::before {
    content: "Anrufen";
  }
  .nav__brand-name { font-size: 1.2rem; }
  .nav__brand-sub { font-size: 0.6rem; letter-spacing: 0.28em; }
  .nav__brand-mark { width: 32px; height: 32px; font-size: 1.25rem; }

  .hero { min-height: 760px; }
  .hero__media img { object-position: 60% bottom; }
  .hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,1) 0%,
      rgba(255,255,255,0.99) 50%,
      rgba(255,255,255,0.86) 65%,
      rgba(255,255,255,0.45) 80%,
      rgba(255,255,255,0.10) 100%
    );
  }
  .hero__content { padding: 36px var(--gutter) 90px; justify-content: flex-start; }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.4rem); line-height: 1.02; }
  .hero__lede { font-size: 1.02rem; line-height: 1.5; max-width: 100%; }
  .hero__meta {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px var(--gutter);
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .hero__title { max-width: 100%; }
  .hero__cta .btn { flex: 1; justify-content: center; padding: 14px 20px; font-size: 0.78rem; }
  .hero__meta { flex-direction: column; gap: 8px; align-items: flex-start; bottom: 24px; }

  .trust { padding: 48px var(--gutter); }
  .trust__grid { grid-template-columns: 1fr; gap: 28px; }
  .trust__grid li { padding-left: 0; border-left: 0; padding-bottom: 28px; border-bottom: 1px solid var(--paper-line); }
  .trust__grid li:last-child { border-bottom: 0; padding-bottom: 0; }

  .ankauf__grid { grid-template-columns: 1fr; gap: 20px; }
  .card, .card--feature { grid-column: span 1; }
  .card--feature { grid-template-columns: 1fr; }
  .card--feature .card__media { aspect-ratio: 4/3; }
  .card--feature .card__body { padding: 32px 28px 36px; }
  .card__body { padding: 28px 26px 30px; }

  .leistungen__grid { grid-template-columns: 1fr; }
  .leistung { padding: 28px 24px; }

  .hausbesuch__list li { gap: 20px; }
  .hausbesuch__list { gap: 24px; }

  /* Stack the phone CTA so the long phone number doesn't blow out the row */
  .btn--phone {
    flex-direction: column;
    gap: 4px;
    padding: 16px 22px;
    text-align: center;
    line-height: 1.2;
    width: 100%;
    justify-content: center;
  }
  .btn--phone .btn__sep { display: none; }
  .btn--phone .btn__num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: none;
    opacity: 0.85;
  }
  .btn--phone .btn__label { font-size: 0.78rem; }

  .quote p { font-size: 1.4rem; }

  .kontakt .section-head { text-align: left; }
  .kontakt__grid { grid-template-columns: 1fr; }
  .kontakt__card { padding: 28px 0 !important; border-right: 0; border-bottom: 1px solid rgba(184,146,74,0.25); border-top: 0 !important; margin-top: 0 !important; }
  .kontakt__card:last-child { border-bottom: 0; }

  .footer { padding: 56px var(--gutter) 24px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; font-size: 0.66rem; }

  .infobar__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 9px;
    padding: 15px var(--gutter);
  }
  .infobar__item { align-items: center; gap: 3px; }
  .infobar__label { font-size: 0.6rem; letter-spacing: 0.22em; }
  .infobar__value { font-size: 0.98rem; }
  .infobar__route { margin: 5px 0 0; }

  .rechner-teaser {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    font-family: var(--sans);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-deep);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
  }
  .rechner-teaser span { font-size: 1rem; }

  .hbform { grid-template-columns: 1fr; gap: 18px; }
  .faq__item summary { font-size: 1.18rem; padding-right: 44px; }
  .faq__answer { padding-right: 0; }
}
