/* =====================================================================
   components.css — Buttons, Brand, Hero, Service-Blöcke, Säulen,
   Projekte, Formular, Reveal-Animationen
   ===================================================================== */

a, button { touch-action: manipulation; }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0.95rem 1.55rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.btn .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn--sm { padding: 0.7rem 1.15rem; min-height: 42px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.btn--gold { background: var(--gold); color: #1a1404; }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn--ghost { color: var(--text-on-dark); border-color: var(--line-dark-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.theme-paper .btn--ghost,
.theme-paper-2 .btn--ghost { color: var(--text-on-light); border-color: var(--line-light); }
.theme-paper .btn--ghost:hover,
.theme-paper-2 .btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-on-light); }

.btn--text {
  min-height: 0; padding: 0; gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  border-radius: 0;
}
.theme-paper .btn--text,
.theme-paper-2 .btn--text { color: var(--gold-on-light); }
.btn--text::after {
  content: ""; height: 1px; flex: 0 0 1.5rem;
  background: currentColor; transition: flex-basis var(--dur) var(--ease-out);
}
.btn--text:hover::after { flex-basis: 2.5rem; }

.btn[data-loading="true"] { pointer-events: none; opacity: 0.75; }
.btn[data-loading="true"] .btn__label { visibility: hidden; }
.btn[data-loading="true"]::after {
  content: ""; position: absolute;
  width: 18px; height: 18px;
  border: 2px solid currentColor; border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn { position: relative; }

/* ---------------------------------------------------------------------
   Eyebrow & Section-Head
   --------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 1.75rem; height: 1px; background: currentColor; opacity: 0.8; }
.eyebrow--no-rule::before { display: none; }
.theme-paper .eyebrow,
.theme-paper-2 .eyebrow { color: var(--gold-on-light); }

.section-head { max-width: 64ch; display: grid; gap: var(--space-4); margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.section-head--center { margin-inline: auto; justify-items: center; text-align: center; }
.section-head__title { font-size: var(--fs-h2); }
.theme-paper .lead, .theme-paper-2 .lead { color: var(--muted-on-light); }

/* ---------------------------------------------------------------------
   Brand / Logo-Platzhalter
   Austauschbar: inneres Markup durch <img src="assets/images/logo.svg">
   ersetzen — die feste Höhe verhindert Layout-Verschiebung.
   --------------------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; height: 42px; }
.brand__mark {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 60%, transparent);
  border-radius: var(--radius-xs);
  background: var(--ink);
  overflow: hidden;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}
.brand__name b { color: var(--gold); font-weight: 800; }
.brand__sub {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-on-dark);
  margin-top: 0.28rem;
}

/* ---------------------------------------------------------------------
   Hero (Startseite)
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ink);
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: var(--section-y);
  overflow: hidden;
}
.hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.04fr 0.96fr; } }

.hero__title { font-size: var(--fs-display); line-height: var(--lh-tight); letter-spacing: -0.03em; font-weight: 800; }
.hero__title .accent { color: var(--gold); }
.hero__lead { margin-top: var(--space-5); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }

.hero__media-wrap { position: relative; }
.hero__media { aspect-ratio: 4 / 5; }
@media (min-width: 980px) { .hero__media { aspect-ratio: 3 / 4; } }
.hero__media .parallax { position: absolute; inset: -8% 0; width: 100%; height: 116%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: clamp(-0.5rem, -1vw, -1.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  background: var(--ink-2);
  border: 1px solid var(--line-dark-2);
  border-left: 2px solid var(--gold);
  padding: 1rem 1.25rem;
  max-width: 16rem;
  box-shadow: var(--shadow-md);
}
.hero__badge .eyebrow { margin-bottom: 0.4rem; }
.hero__badge p { font-size: var(--fs-small); color: var(--muted-on-dark); }

/* Vertrauens-Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-dark);
}
.trust-strip li { display: inline-flex; align-items: center; gap: 0.6rem; font-size: var(--fs-small); color: var(--muted-on-dark); }
.trust-strip li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }

/* ---------------------------------------------------------------------
   Page-Hero (Unterseiten)
   --------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--ink);
  padding-top: calc(var(--header-h) + clamp(2.75rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero__title { font-size: var(--fs-h1); margin-top: var(--space-3); max-width: 18ch; }
.page-hero__lead { margin-top: var(--space-5); max-width: 56ch; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.8125rem; color: var(--muted-on-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { opacity: 0.5; }

/* ---------------------------------------------------------------------
   Icon-Circle (Gold-Ring wie in der Brand-Vorlage)
   --------------------------------------------------------------------- */
.icon-circle {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
}
.icon-circle svg { width: 26px; height: 26px; stroke-width: 1.6; }
.theme-paper .icon-circle, .theme-paper-2 .icon-circle { color: var(--gold-on-light); border-color: color-mix(in srgb, var(--gold-deep) 55%, transparent); }

/* ---------------------------------------------------------------------
   Leistungs-Teaser (Startseite) — numerierte Editorial-Liste
   --------------------------------------------------------------------- */
.svc-list { border-top: 1px solid var(--line-dark); }
.theme-paper .svc-list { border-top-color: var(--line-light); }
.svc-list__item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2.2vw, 1.4rem) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left var(--dur) var(--ease-out);
}
.theme-paper .svc-list__item { border-bottom-color: var(--line-light); }
.svc-list__num { font-size: 0.85rem; color: var(--gold); min-width: 2.6ch; }
.theme-paper .svc-list__num { color: var(--gold-on-light); }
.svc-list__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 2rem); letter-spacing: -0.02em; transition: color var(--dur-fast) var(--ease-out); }
.svc-list__arrow { margin-left: auto; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.svc-list__item:hover { padding-left: 0.6rem; }
.svc-list__item:hover .svc-list__name { color: var(--gold); }
.theme-paper .svc-list__item:hover .svc-list__name { color: var(--gold-on-light); }
.svc-list__item:hover .svc-list__arrow { opacity: 1; transform: translateX(0); }

/* ---------------------------------------------------------------------
   Service-Block (Leistungen-Seite) — alternierend
   --------------------------------------------------------------------- */
.service-block { padding-block: clamp(2.5rem, 6vw, 4.5rem); border-top: 1px solid var(--line-dark); }
.service-block:first-of-type { border-top: 0; }
.service-block__index { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 7vw, 4.5rem); line-height: 1; color: var(--gold); opacity: 0.28; margin-bottom: var(--space-4); }
.service-block__head { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); }
.service-block__title { font-size: var(--fs-h2); }
.service-block__desc { color: var(--muted-on-dark); max-width: 52ch; }

.benefits { display: grid; gap: 0.7rem; margin-top: var(--space-6); }
.benefits li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: var(--fs-small); color: var(--text-on-dark); max-width: none; }
.benefits li::before {
  content: ""; flex: 0 0 auto;
  width: 1.15rem; height: 1.15rem; margin-top: 0.15rem;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.theme-paper .benefits li, .theme-paper-2 .benefits li { color: var(--text-on-light); }
.theme-paper .benefits li::before, .theme-paper-2 .benefits li::before { background: var(--gold-deep); }

/* Leistungen-Block auf hellem Grund */
.theme-paper .service-block, .theme-paper-2 .service-block { border-top-color: var(--line-light); }
.theme-paper .service-block__desc, .theme-paper-2 .service-block__desc { color: var(--muted-on-light); }
.theme-paper .service-block__index, .theme-paper-2 .service-block__index { color: var(--gold-deep); opacity: 0.22; }

/* ---------------------------------------------------------------------
   Säulen (Über uns) — Storytelling statt Karten
   --------------------------------------------------------------------- */
.pillars { display: grid; gap: clamp(2.5rem, 6vw, 4.5rem); counter-reset: pillar; }
.pillar { display: grid; gap: clamp(0.75rem, 3vw, 2.5rem); align-items: start; }
@media (min-width: 840px) { .pillar { grid-template-columns: 5fr 7fr; } }
.pillar__index { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.75rem, 7vw, 5rem); line-height: 0.95; color: var(--gold); opacity: 0.32; }
.pillar__title { font-size: var(--fs-h3); display: flex; align-items: center; gap: 0.85rem; margin-bottom: var(--space-3); }
.pillar__title .icon-circle { width: 40px; height: 40px; }
.pillar__title .icon-circle svg { width: 20px; height: 20px; }
.pillar__text { color: var(--muted-on-dark); }
.theme-paper .pillar__text, .theme-paper-2 .pillar__text { color: var(--muted-on-light); }

/* ---------------------------------------------------------------------
   Prozess / Ablauf (Über uns)
   --------------------------------------------------------------------- */
.process { display: grid; gap: var(--space-6); }
@media (min-width: 760px) { .process { grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); } }
.process__step { padding-top: var(--space-5); border-top: 1px solid var(--gold); }
.process__num { font-family: var(--font-display); font-weight: 700; color: var(--gold); font-size: 0.9rem; }
.process__title { font-size: var(--fs-h3); margin: var(--space-2) 0 var(--space-3); }
.process__text { font-size: var(--fs-small); color: var(--muted-on-dark); }
.theme-paper .process__step { border-top-color: var(--gold-deep); }
.theme-paper .process__num { color: var(--gold-on-light); }
.theme-paper .process__text { color: var(--muted-on-light); }

/* ---------------------------------------------------------------------
   Projekte / Referenzen — asymmetrisches Raster
   --------------------------------------------------------------------- */
.projects { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (min-width: 640px) { .projects { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 640px) {
  .project:nth-child(6n+1) { grid-column: span 4; }
  .project:nth-child(6n+2) { grid-column: span 2; }
  .project:nth-child(6n+3) { grid-column: span 2; }
  .project:nth-child(6n+4) { grid-column: span 4; }
  .project:nth-child(6n+5) { grid-column: span 3; }
  .project:nth-child(6n+6) { grid-column: span 3; }
}
.project {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xs);
  background: var(--anthracite-2);
  min-height: 16rem;
  isolation: isolate;
}
.project > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); z-index: -1; }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,0) 35%, rgba(11,11,12,0.82) 100%); z-index: -1; }
.project:hover > img { transform: scale(1.05); }
.project__body { padding: clamp(1.25rem, 3vw, 1.75rem); margin-top: auto; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; gap: 0.5rem; }
.project__title { font-size: clamp(1.15rem, 2vw, 1.5rem); color: #fff; }
.project__loc { font-size: 0.8125rem; color: rgba(255,255,255,0.72); display: flex; align-items: center; gap: 0.4rem; }
.project__body .tag { align-self: flex-start; margin-bottom: 0.25rem; }

.tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold);
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-dark-2);
  border-radius: 999px;
  background: rgba(11,11,12,0.45);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

/* Kundensegmente */
.segments { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
@media (min-width: 720px) { .segments { grid-template-columns: repeat(3, 1fr); } }
.segment { padding: clamp(1.5rem, 3vw, 2rem); border: 1px solid var(--line-dark); border-radius: var(--radius-xs); background: var(--anthracite); }
.theme-paper .segment { border-color: var(--line-light); background: #fff; }
.segment h3 { font-size: var(--fs-h3); margin: var(--space-4) 0 var(--space-2); }
.segment p { font-size: var(--fs-small); color: var(--muted-on-dark); }
.theme-paper .segment p { color: var(--muted-on-light); }

/* ---------------------------------------------------------------------
   CTA-Band
   --------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-top: 1px solid var(--line-dark); }
.cta-band__inner { display: grid; gap: var(--space-6); align-items: center; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.5fr 0.9fr; } }
.cta-band__title { font-size: var(--fs-h2); max-width: 20ch; }
.cta-band__aside { display: flex; flex-direction: column; gap: var(--space-4); align-items: flex-start; }
@media (min-width: 900px) { .cta-band__aside { align-items: flex-end; text-align: right; } }
.cta-band__phone { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--gold); }
.cta-band__phone span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.8125rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 0.2rem; }

/* ---------------------------------------------------------------------
   Kontakt-Layout + Formular
   --------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-info { display: grid; gap: var(--space-6); }
.contact-info__phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--gold); letter-spacing: -0.01em; }
.contact-line { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-line .icon-circle { width: 44px; height: 44px; }
.contact-line .icon-circle svg { width: 20px; height: 20px; }
.contact-line h3 { font-family: var(--font-body); font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted-on-dark); margin-bottom: 0.3rem; font-weight: 600; }
.contact-line a, .contact-line p { color: var(--text-on-dark); }
.contact-line a:hover { color: var(--gold); }

/* Social-Media-Icons (LinkedIn / Facebook / Instagram / WhatsApp) */
.socials { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  transition: color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.social svg { width: 19px; height: 19px; }
.social:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.theme-paper .social, .theme-paper-2 .social { color: var(--gold-on-light); border-color: color-mix(in srgb, var(--gold-deep) 55%, transparent); }
.theme-paper .social:hover, .theme-paper-2 .social:hover { color: var(--paper); background: var(--gold-deep); border-color: var(--gold-deep); }
.site-footer .socials { margin-top: var(--space-5); }

.form-card { background: var(--anthracite); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); }
.form { display: grid; gap: var(--space-5); }
.form__row { display: grid; gap: var(--space-5); }
@media (min-width: 600px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.5rem; }
.field > label { font-size: var(--fs-small); font-weight: 600; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  background: var(--ink-2);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-sm);
  color: var(--text-on-dark);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 150px; resize: vertical; padding-top: 0.85rem; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted-on-dark) 80%, transparent); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6a256' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1rem;
  padding-right: 2.75rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 28%, transparent);
}
.field__hint { font-size: 0.8125rem; color: var(--muted-on-dark); }
.field__error { font-size: 0.8125rem; color: #ff9d99; display: none; align-items: center; gap: 0.4rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #e5736f; }
.field.has-error .field__error { display: flex; }

.checkbox { display: flex; gap: 0.75rem; align-items: flex-start; font-size: var(--fs-small); color: var(--muted-on-dark); cursor: pointer; max-width: 60ch; }
.checkbox input { appearance: none; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 0.1rem; border: 1px solid var(--line-dark-2); border-radius: var(--radius-xs); background: var(--ink-2); transition: border-color var(--dur-fast), background var(--dur-fast); cursor: pointer; }
.checkbox input:checked { background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1404' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 70% no-repeat; border-color: var(--gold); }
.checkbox input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.checkbox a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.form__status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  background: color-mix(in srgb, var(--gold) 12%, var(--anthracite));
  font-size: var(--fs-small);
}
.form__status.is-visible { display: flex; gap: 0.6rem; align-items: center; }
.form__status .icon-circle { width: 32px; height: 32px; border: 0; color: var(--gold); }
.form__status .icon-circle svg { width: 22px; height: 22px; }
/* Spam-Honeypot: visuell und für Screenreader ausgeblendet */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
/* Fehlermeldung beim Versand */
.form__error { margin-top: var(--space-4); color: #f0a39b; font-size: var(--fs-small); line-height: 1.5; }
.form__error a { color: inherit; text-decoration: underline; }

/* ---------------------------------------------------------------------
   Reveal-Animationen (nur mit JS aktiv; Reduced-Motion respektiert)
   --------------------------------------------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js [data-reveal="left"]  { transform: translateX(-24px); }
.js [data-reveal="right"] { transform: translateX(24px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
