/* Goldankauf pillar: the two-ways cards (everything else reuses base.css). */

.ga-ways { grid-template-columns: 1fr 1fr; }

a.ship-card.ga-way {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
a.ship-card.ga-way:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.ga-way-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.ga-way-link .arr { color: var(--gold); transition: transform .2s; display: inline-block; }
a.ship-card.ga-way:hover .ga-way-link .arr { transform: translateX(4px); }

@media (max-width: 760px) {
  .ga-ways { grid-template-columns: 1fr; }
}

/* Enriched two-ways cards: keep the intro paragraph at natural height so only
   the detail paragraph grows and the link stays pinned to the card bottom. */
.ga-way-intro { flex: 0 0 auto; }

/* ============ Goldankauf enquiry form ============ */
.ga-form-section { padding: 80px 0; background: var(--cream); }
.ga-form-wrap { max-width: 720px; margin: 0 auto; }
.ga-form-head { text-align: center; margin-bottom: 34px; }
.ga-form-head h2 { font-family: "Cormorant Garamond", serif; font-weight: 400; font-size: clamp(26px, 2.4vw, 36px); line-height: 1.15; margin: 14px 0 10px; }
.ga-form-head h2 em { font-style: italic; color: var(--gold); }
.ga-form-head p { font-family: "Geist", sans-serif; font-size: 15px; line-height: 1.6; color: rgba(26,23,20,0.7); max-width: 520px; margin: 0 auto; }

.gaf-form { background: var(--white); border: 1px solid rgba(26,23,20,0.1); padding: 30px; }
.gaf-row { margin-bottom: 16px; }
.gaf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gaf-field { display: block; }
.gaf-label { display: block; font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(26,23,20,0.72); margin-bottom: 7px; }
.gaf-form input[type="text"], .gaf-form input[type="email"], .gaf-form input[type="tel"], .gaf-form select, .gaf-form textarea {
  /* 16px: below this, iOS Safari auto-zooms the viewport on field focus. */
  width: 100%; font-family: "Geist", sans-serif; font-size: 16px; padding: 12px 14px;
  border: 1px solid rgba(26,23,20,0.2); background: var(--white); color: var(--ink); border-radius: 2px;
  transition: border-color .2s;
}
.gaf-form input:focus, .gaf-form select:focus, .gaf-form textarea:focus { outline: none; border-color: var(--gold); }
.gaf-form textarea { resize: vertical; }
.gaf-form input[type="file"] { width: 100%; font-family: "Geist", sans-serif; font-size: 13px; padding: 9px 0; color: rgba(26,23,20,0.7); }
.gaf-consent { display: flex; gap: 9px; align-items: flex-start; margin: 4px 0 22px; font-family: "Geist", sans-serif; font-size: 12px; line-height: 1.45; color: rgba(26,23,20,0.62); }
.gaf-consent input { flex: 0 0 auto; margin-top: 1px; width: 22px; height: 22px; accent-color: var(--gold); }
.gaf-consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.gaf-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.gaf-note { font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(26,23,20,0.62); }
.gaf-msg { margin: 14px 0 0; font-family: "Geist", sans-serif; font-size: 13px; line-height: 1.4; }
.gaf-msg:empty { margin: 0; }
.gaf-msg.is-ok { color: #4a7c4a; }
.gaf-msg.is-err { color: #b4453a; }

/* Two-path intent toggle (Einsende-Set vs. Vorbewertung) */
.gaf-intent { border: 0; padding: 0; margin: 0 0 20px; }
.gaf-intent legend { padding: 0; }
.gaf-intent .gaf-label { margin-bottom: 10px; }
.gaf-intent-opt { display: block; cursor: pointer; margin-top: 10px; }
.gaf-intent-opt input { position: absolute; opacity: 0; pointer-events: none; }
.gaf-intent-card {
  display: block; padding: 14px 16px; border: 1px solid rgba(26,23,20,0.2);
  background: var(--white); border-radius: 2px; transition: border-color .2s, box-shadow .2s;
}
.gaf-intent-card strong { display: block; font-family: "Geist", sans-serif; font-size: 14px; color: var(--ink); }
.gaf-intent-card small { display: block; margin-top: 3px; font-family: "Geist", sans-serif; font-size: 12px; line-height: 1.4; color: rgba(26,23,20,0.6); }
.gaf-intent-opt input:checked + .gaf-intent-card { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.gaf-intent-opt input:focus-visible + .gaf-intent-card { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Postal address block, revealed for the Einsende-Set path */
.gaf-address { margin-bottom: 16px; }
.gaf-address[hidden] { display: none; }
.gaf-address .gaf-field { margin-bottom: 16px; }
.gaf-address .gaf-row { margin-bottom: 0; }
.gaf-address-hint { margin: 0 0 14px; font-family: "Geist", sans-serif; font-size: 12px; line-height: 1.45; color: rgba(26,23,20,0.6); }

@media (max-width: 600px) {
  .gaf-row-2 { grid-template-columns: 1fr; }
  .gaf-form { padding: 22px 18px; }
  .ga-form-section { padding: 56px 0; }
}

/* ============ HERO TRUST STATS ============ */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
/* Mobile: the three-across row broke 2+1 with a stranded third stat. Stack them
   as a hairline-ruled list - number left, label right - which reads cleanly at
   any width for the 45+ audience. */
@media (max-width: 720px) {
  .hero-stats {
    margin-top: 34px;
    gap: 0;
    flex-direction: column;
  }
  .hero-stats > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(26,23,20,0.12);
  }
  .hero-stats > div:last-child { border-bottom: 1px solid rgba(26,23,20,0.12); }
  .hero-stats .serif { font-size: 32px !important; }
  .hero-stats .mono {
    margin-top: 0 !important;
    text-align: right;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    opacity: 1 !important;
    color: rgba(26,23,20,0.6);
  }
}

/* ============ FLOATING CALL BUTTON (Ankauf pages) ============ */
.sticky-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 15px 22px;
  border-radius: 2px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(26,23,20,0.28);
  /* Hidden until scrolled past the hero (JS toggles .is-visible). */
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s cubic-bezier(0.22,0.61,0.36,1), opacity .35s ease, background .25s, color .25s;
}
.sticky-call.is-visible { transform: translateY(0); opacity: 1; }
.sticky-call:hover { background: var(--gold); color: var(--ink); }
.sticky-call svg { flex-shrink: 0; }
/* Only where the header drops its "Anrufen" button (mobile nav, <= 980px);
   on desktop the sticky header CTA already covers this. */
@media (min-width: 981px) { .sticky-call { display: none; } }
@media (max-width: 480px) {
  .sticky-call { bottom: 16px; right: 16px; padding: 14px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-call { transition: opacity .2s ease, background .25s, color .25s; transform: none; }
  .sticky-call:not(.is-visible) { visibility: hidden; }
}

/* "spontanen" only fills out the headline on desktop; on mobile the line wraps
   anyway, so the extra word is dropped to avoid an awkward break. */
@media (max-width: 760px) {
  .only-desktop-inline { display: none; }
}
