/* =========================================================
   Axel Merten – Versicherungsvertreter der NÜRNBERGER
   Stylesheet
   ========================================================= */

/* ---------- Custom Properties ---------- */
:root {
  /* Farben */
  --navy-deep:   #0a1f44;   /* Hauptblau */
  --navy:        #143063;
  --navy-soft:   #1f3f7a;
  --blue-accent: #3a6ea5;
  --gold:        #b8945a;   /* zurückhaltender warmer Akzent */
  --cream:       #faf7f1;
  --white:       #ffffff;
  --paper:       #fcfbf8;
  --grey-100:    #f3f4f6;
  --grey-300:    #d9dde3;
  --grey-500:    #6b7280;
  --grey-700:    #374151;
  --grey-900:    #111827;

  /* Typografie */
  --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-w: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(10, 31, 68, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(10, 31, 68, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(10, 31, 68, 0.25);
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-900);
  background: var(--paper);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; line-height: 1.3; }

p  { color: var(--grey-700); }

.lead {
  font-size: 1.15rem;
  color: var(--grey-700);
  max-width: 56ch;
}

/* ---------- Top-Bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.6rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a:hover { color: var(--white); }
.topbar-info {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy-deep);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--navy-deep);
  opacity: 0.25;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-deep);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  line-height: 1.4;
}

nav.primary ul {
  display: flex;
  gap: 2.2rem;
}
nav.primary a {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.2s ease;
}
nav.primary a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav.primary a:hover { color: var(--navy-deep); }
nav.primary a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--navy-deep);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover {
  background: transparent;
  color: var(--navy-deep);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-deep);
}
.btn--ghost:hover {
  background: var(--navy-deep);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--navy-deep);
  margin-block: 6px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 8rem) clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(184, 148, 90, 0.08), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(10, 31, 68, 0.05), transparent 50%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(10, 31, 68, 0.04) 1px, transparent 1px);
  background-size: 60px 100%;
  z-index: -1;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 4.5rem; }
}

.hero-headline {
  margin-block: 1.5rem 1.8rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 31, 68, 0.06);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 80px; height: 80px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.hero-card::after {
  content: "";
  position: absolute;
  bottom: -14px; right: -14px;
  width: 80px; height: 80px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.hero-card-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.hero-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.55rem;
}
.hero-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hero-card li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--grey-700);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--grey-100);
}
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--navy-deep);
  margin-top: 0.55rem;
  transform: rotate(45deg);
}

/* ---------- Sections shared ---------- */
section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  margin-top: 1.2rem;
}
.section-head p {
  margin-top: 1.2rem;
}

/* ---------- Über mich ---------- */
.about {
  background: var(--white);
  border-top: 1px solid rgba(10, 31, 68, 0.06);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.25fr; gap: 5rem; }
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy-deep);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 1.2s ease;
}
.portrait:hover img {
  transform: scale(1.03);
}
.portrait::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 90px;
  height: 90px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  z-index: 2;
}
.portrait::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 90px;
  height: 90px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  z-index: 2;
}

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p + p { margin-top: 1.1rem; }
.about-text .signature {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy-deep);
}
.about-text .signature small {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 0.3rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-100);
}
.value strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}
.value span {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* ---------- Leistungen ---------- */
.services { background: var(--paper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: rgba(10, 31, 68, 0.1);
  border: 1px solid rgba(10, 31, 68, 0.1);
}
.service {
  background: var(--white);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s ease;
}
.service:hover { background: var(--cream); }
.service .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.service h3 {
  font-family: var(--font-serif);
  color: var(--navy-deep);
}
.service p {
  font-size: 0.95rem;
  color: var(--grey-700);
}
.service::after {
  content: "→";
  position: absolute;
  bottom: 1.5rem;
  right: 1.6rem;
  color: var(--navy-deep);
  font-size: 1.1rem;
  opacity: 0.3;
  transition: all 0.25s ease;
}
.service:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

/* ---------- Kontakt ---------- */
.contact {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border: 1px solid rgba(184, 148, 90, 0.15);
  border-radius: 50%;
}
.contact::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(184, 148, 90, 0.08);
  border-radius: 50%;
}
.contact .eyebrow { color: var(--gold); }
.contact .eyebrow::before { background: var(--gold); }
.contact h2 { color: var(--white); }
.contact p { color: rgba(255,255,255,0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2.5rem;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child { border-bottom: 0; }
.contact-item-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-item-value {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
}
.contact-item-value a:hover { color: var(--gold); }
.contact-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(184, 148, 90, 0.4);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.contact-cta {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
}

/* ---------- Sprechzeiten ---------- */
.hours-block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.92rem;
}
.hours-block strong {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hours-block > div {
  display: flex;
  justify-content: space-between;
  padding-block: 0.4rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- Kontaktformular ---------- */
.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  position: relative;
}
.contact-form h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.contact-form-intro {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Honeypot – für echte Nutzer komplett unsichtbar */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.form-field label span {
  color: var(--gold);
  margin-left: 0.15rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.6rem 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.25s ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 0.6rem;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Select dezent stylen */
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23b8945a' stroke-width='1.5'><path d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  background-size: 12px;
  padding-right: 1.5rem;
  cursor: pointer;
}
.form-field select option {
  background: var(--navy-deep);
  color: var(--white);
}

/* Datenschutz-Checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0.5rem 0 1.8rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.form-consent input[type="checkbox"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.form-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--navy-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-consent a:hover { color: var(--white); }
.form-consent .req { color: var(--gold); }

.form-submit {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  width: 100%;
  justify-content: center;
}
.form-submit:hover {
  background: transparent;
  color: var(--gold);
}

.form-hint {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
}

.form-status {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  display: none;
}
.form-status.is-error {
  display: block;
  background: rgba(220, 80, 80, 0.12);
  border-left: 2px solid #e57373;
  color: #ffbcbc;
}
.form-status.is-success {
  display: block;
  background: rgba(184, 148, 90, 0.12);
  border-left: 2px solid var(--gold);
  color: var(--gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #060f24;
  color: rgba(255,255,255,0.55);
  padding-block: 3rem 1.8rem;
  font-size: 0.88rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.site-footer a:hover { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; }

/* ---------- Legal Pages (Impressum / Datenschutz) ---------- */
.legal {
  background: var(--paper);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.legal-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.legal h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.8rem;
}
.legal .legal-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}
.legal h2 {
  font-size: 1.5rem;
  margin-top: 2.8rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-100);
}
.legal h3 {
  font-size: 1.15rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.legal p, .legal li {
  margin-bottom: 0.8rem;
  color: var(--grey-700);
  font-size: 0.97rem;
}
.legal ul {
  list-style: none;
  padding-left: 1.5rem;
}
.legal ul li::before {
  content: "—";
  color: var(--gold);
  margin-right: 0.6rem;
  margin-left: -1.5rem;
}
.legal strong { color: var(--navy-deep); }
.legal a { color: var(--blue-accent); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--navy-deep); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.legal-back:hover { color: var(--gold); }

/* ---------- Leistungs-Unterseiten ---------- */

/* Hero der Unterseite */
.subhero {
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(3rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(10,31,68,0.02), transparent),
    var(--paper);
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.subhero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(10, 31, 68, 0.035) 1px, transparent 1px);
  background-size: 60px 100%;
  z-index: -1;
  opacity: 0.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--grey-300); }
.breadcrumb .current { color: var(--gold); }

.subhero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 22ch;
  margin-block: 1rem 1.5rem;
}
.subhero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.subhero-lead {
  font-size: 1.15rem;
  color: var(--grey-700);
  max-width: 60ch;
  line-height: 1.65;
}
.subhero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Content-Sektion */
.content {
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: var(--white);
}
.content-alt {
  background: var(--paper);
  border-top: 1px solid rgba(10, 31, 68, 0.05);
  border-bottom: 1px solid rgba(10, 31, 68, 0.05);
}

.content-wrap {
  max-width: 900px;
  margin-inline: auto;
}
.content-wrap h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}
.content-wrap p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.content-wrap h3 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
}
.content-wrap .eyebrow { margin-bottom: 1rem; }

/* Info-Zitat / Hinweisbox */
.callout {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin-block: 2rem;
  background: rgba(184, 148, 90, 0.05);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-deep);
  line-height: 1.55;
}
.callout small {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 0.6rem;
}

/* Zwei-Spalten Grid für Leistungsmerkmale */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.feature {
  border-top: 1px solid var(--grey-100);
  padding-top: 1.25rem;
}
.feature-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.feature h3 {
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}
.feature p {
  font-size: 0.95rem;
  color: var(--grey-700);
  margin: 0;
  line-height: 1.65;
}

/* Für wen geeignet – Checkliste */
.suitability {
  background: var(--cream);
  padding: 2rem;
  margin-block: 2.5rem;
  border: 1px solid rgba(184, 148, 90, 0.2);
}
.suitability h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  color: var(--navy-deep);
}
.suitability ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media (min-width: 700px) {
  .suitability ul { grid-template-columns: 1fr 1fr; gap: 0.85rem 2rem; }
}
.suitability li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--grey-900);
  line-height: 1.5;
}
.suitability li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* FAQ Accordion */
.faq {
  margin-top: 2rem;
  border-top: 1px solid var(--grey-100);
}
.faq details {
  border-bottom: 1px solid var(--grey-100);
  padding: 1.4rem 0;
}
.faq summary {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-right: 0.25rem;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary { color: var(--gold); }
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq details p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--grey-700);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* Prominenter CTA-Block */
.cta-block {
  background: var(--navy-deep);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  border: 1px solid rgba(184, 148, 90, 0.12);
  border-radius: 50%;
  z-index: -1;
}
.cta-block .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-block .container { grid-template-columns: 1.5fr auto; gap: 3.5rem; }
}
.cta-block .eyebrow { color: var(--gold); }
.cta-block .eyebrow::before { background: var(--gold); }
.cta-block h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-block: 1rem 1rem;
  max-width: 22ch;
}
.cta-block p {
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  font-size: 1.02rem;
}
.cta-block .btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  padding: 1.1rem 2rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.cta-block .btn:hover {
  background: transparent;
  color: var(--gold);
}
.cta-block-alt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-contact-mini {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.cta-contact-mini a {
  display: block;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-top: 0.25rem;
}
.cta-contact-mini a:hover { color: var(--gold); }

/* Verwandte Leistungen */
.related {
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: var(--paper);
  border-top: 1px solid rgba(10, 31, 68, 0.05);
}
.related-head {
  text-align: center;
  margin-bottom: 3rem;
}
.related-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-top: 0.8rem;
}
.related-head .eyebrow {
  justify-content: center;
}
.related-head .eyebrow::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin-inline: auto;
}
.related-card {
  background: var(--white);
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(10, 31, 68, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.related-card:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  transform: translateY(-3px);
}
.related-card:hover h3,
.related-card:hover .num { color: var(--white); }
.related-card:hover::after { color: var(--gold); }
.related-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
}
.related-card h3 {
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin: 0;
  transition: color 0.3s ease;
}
.related-card::after {
  content: "→";
  color: var(--navy-deep);
  font-size: 1rem;
  align-self: flex-end;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

/* Service-Karten auf Startseite als Links */
a.service {
  text-decoration: none;
  color: inherit;
}

/* ---------- Reveal Animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Mobile ---------- */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav.primary {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
    border-bottom: 1px solid var(--grey-100);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  nav.primary.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  nav.primary ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--gutter);
  }
  nav.primary a {
    display: block;
    padding-block: 1rem;
    border-bottom: 1px solid var(--grey-100);
  }
  nav.primary li:last-child a { border-bottom: 0; }
  .site-header .btn { display: none; }
  .topbar-info { font-size: 0.75rem; gap: 1rem; }
}

@media (max-width: 500px) {
  .hero-card { padding: 1.75rem; }
  .service { padding: 2rem 1.5rem; }
  .contact-cta,
  .contact-form { padding: 1.75rem; }
}
