/*
 * section-contact/style.css
 * ──────────────────────────
 * CTA-Band, Kontaktinfos-Bereich.
 * Erfordert: core-theme/style.css, core-layout/style.css
 */

/* ── CTA Band ── */
.cta-band {
  text-align: center; padding: 80px 0;
  background: var(--verdant); color: white; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -120px; right: -120px; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.cta-band::after  { content: ''; position: absolute; bottom: -100px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.03); }
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 14px; letter-spacing: -0.03em; }
.cta-band h2 em { font-style: italic; font-family: 'Playfair Display', Georgia, serif; color: var(--sprout); }
.cta-band p { font-size: 1.0625rem; color: rgba(255,255,255,0.72); max-width: 52ch; margin: 0 auto 40px; line-height: 1.7; }
.cta-band .btn-hero-primary { min-height: 56px; padding: 0 36px; font-size: 1rem; }
.btn-hero-primary { background: #fff; color: var(--verdant); box-shadow: 0 4px 20px rgba(0,0,0,0.18); border: none; border-radius: var(--radius-pill); }
.btn-hero-primary:hover { background: var(--fern); transform: translateY(-2px); color: var(--verdant); }

/* ── Contact Info ── */
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.contact-item h3 { font-size: 1.125rem; font-weight: 700; color: var(--forest); }
.contact-item span { color: var(--muted); font-size: 0.95rem; }

/* ── Contact Info Items ── */
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--fern); border-radius: var(--radius-md); transition: background 0.2s; }
.contact-info-item:hover { background: var(--mist); }
.contact-info-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--meadow); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.contact-info-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--stone); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item span { font-size: 0.9375rem; color: var(--forest); font-weight: 500; display: block; }
.contact-info-item a:hover { color: var(--meadow); text-decoration: underline; }

@media (max-width: 640px) {
  .cta-band::before, .cta-band::after { display: none; }
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
}
