:root {
  --navy: #0a1628;
  --navy-mid: #122240;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-pale: #f5ecd4;
  --cream: #faf8f3;
  --text: #1a1a1a;
  --text-muted: #5a6478;
  --white: #ffffff;
  --danger: #b91c1c;
  --success: #166534;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
  --font: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--white);
  text-decoration: none;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, #1a3055 100%);
  color: var(--white);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 162, 39, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  max-width: 38rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 162, 39, 0.15);
  padding: 1.75rem;
  color: var(--text);
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.form-card .form-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #c8d0dc;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1rem 0;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.btn-primary {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b8921f 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-trust span::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 700;
}

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.92rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #dcfce7;
  color: var(--success);
  border: 1px solid #86efac;
}

.form-message.error {
  display: block;
  background: #fee2e2;
  color: var(--danger);
  border: 1px solid #fca5a5;
}

/* Alert banner */
.alert-banner {
  background: var(--danger);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: inherit;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-top: 3px solid var(--gold);
}

.section-dark .card h3 {
  color: var(--gold-light);
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Trust / Bekannt aus */
.trust-section {
  background: var(--white);
  border-bottom: 1px solid #e8ecf2;
  padding: 2.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.trust-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.counsel-profile {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.counsel-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
}

.counsel-profile h2 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.counsel-title {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.counsel-bio {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.counsel-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.counsel-link:hover {
  color: var(--gold);
}

.media-badges {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.65rem;
}

.media-badges li {
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid #e8ecf2;
  border-left: 3px solid var(--gold);
}

.badge-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.badge-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.trust-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* SEO subpages */
.page-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 2.5rem 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0.75rem 0;
  line-height: 1.2;
}

.page-lead {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.bc-sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}

.content-page h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page p,
.content-page li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.content-page ul {
  padding-left: 1.25rem;
}

.topic-heading {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 1rem;
}

.topic-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-links li {
  margin-bottom: 0.5rem;
}

.topic-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy-mid);
}

.topic-links a:hover {
  color: var(--gold);
}

.topic-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.topic-links-grid a {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e8ecf2;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}

.topic-links-grid a:hover {
  box-shadow: var(--shadow);
}

.topic-links-grid strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.topic-links-grid span {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.page-cta {
  margin-top: 1.5rem;
}

.page-cta .header-cta {
  display: inline-flex;
}

/* Timeline / news refs */
.content-block {
  max-width: 760px;
}

.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.content-block h3:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.content-block ul {
  padding-left: 1.25rem;
}

.content-block li {
  margin-bottom: 0.5rem;
}

.quote-block {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Press refs */
.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.press-list a {
  font-weight: 600;
  text-decoration: none;
}

.press-list span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* FAQ */
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8ecf2;
}

.faq summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq .faq-body {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-grid a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  text-align: center;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }

  .sticky-mobile-cta a {
    display: block;
    text-align: center;
    padding: 0.85rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 600px) {
  .header-cta {
    display: none;
  }

  body {
    font-size: 16px;
  }
}
