/* ==========================================================================
   Elisabetta Knezevic — DVAG Agenturleiterin
   Design tokens + base + components. Mobile-first.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-bg: #FAFAF8;
  --color-bg-alt: #F1EEE7;
  --color-ink: #16130F;
  --color-ink-soft: #4A453D;
  --color-muted: #756E62;
  --color-charcoal: #1B1713;
  --color-charcoal-raised: #24201B;
  --color-cream: #FFFFFF;
  --color-gold: #B6892C;
  --color-gold-strong: #96701E;
  --color-gold-light: #E7C87A;
  --color-border: #E4DED1;
  --color-border-dark: rgba(255, 255, 255, 0.14);
  --color-success: #2E6B3E;
  --color-success-bg: #EAF3EA;
  --color-error: #B23A2E;
  --color-error-bg: #FBEBE8;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-card: 0 1px 2px rgba(22, 19, 15, 0.04), 0 12px 32px -16px rgba(22, 19, 15, 0.12);
  --shadow-gold: 0 8px 24px -8px rgba(150, 112, 30, 0.45);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img, picture { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* Visually-hidden but accessible */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -60px;
  background: var(--color-charcoal);
  color: var(--color-gold-light);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: var(--space-sm); }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ---------------------------------------------------------------------- */
/* Typography                                                              */
/* ---------------------------------------------------------------------- */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-strong);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-gold-strong);
}

/* ---------------------------------------------------------------------- */
/* Header                                                                   */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-charcoal);
  border-bottom: 1px solid var(--color-border-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--color-gold-light);
  line-height: 1;
}

.brand__sub {
  display: none;
}

@media (min-width: 640px) {
  .brand__sub {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.3;
    border-left: 1px solid var(--color-border-dark);
    padding-left: 0.7rem;
  }
}

a.header-cta {
  display: none;
}

@media (min-width: 640px) {
  a.header-cta { display: inline-flex; }
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                  */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-charcoal);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 12px 30px -8px rgba(150, 112, 30, 0.55); transform: translateY(-1px); }

.btn--ghost-dark {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-border-dark);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

.btn--outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
}
.btn--outline:hover { border-color: var(--color-gold); color: var(--color-gold-strong); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1rem; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                     */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--color-charcoal);
  color: var(--color-cream);
  overflow: hidden;
  padding-block: var(--space-2xl) var(--space-2xl);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 420px at 85% 0%, rgba(182, 137, 44, 0.22), transparent 60%),
    radial-gradient(500px 400px at 0% 100%, rgba(182, 137, 44, 0.10), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-2xl);
  }
}

.hero__eyebrow {
  color: var(--color-gold-light);
}
.hero__eyebrow::before { background: var(--color-gold-light); }

.hero__title {
  color: var(--color-cream);
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  margin-top: var(--space-sm);
}

.hero__title em {
  font-style: normal;
  color: var(--color-gold-light);
}

.hero__lede {
  margin-top: var(--space-md);
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}

.hero__actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__trust {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
}
.trust-item svg { flex: none; color: var(--color-gold-light); }

/* Photo + speech-bubble composition */
.hero__figure {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 340px;
}

.hero__photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(160deg, var(--color-gold-light), var(--color-gold) 60%, var(--color-gold-strong));
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}

.hero__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid var(--color-charcoal);
}

.hero__bubble {
  position: absolute;
  background: var(--color-cream);
  color: var(--color-ink);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  box-shadow: var(--shadow-card);
  max-width: 210px;
}

.hero__bubble::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--color-cream);
}

.hero__bubble--one {
  top: -6%;
  left: -14%;
}
.hero__bubble--one::after {
  bottom: -6px;
  right: 28px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.hero__bubble--two {
  bottom: -4%;
  right: -16%;
  background: var(--color-gold);
  color: var(--color-charcoal);
}
.hero__bubble--two::after {
  top: -6px;
  left: 28px;
  background: var(--color-gold);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

@media (max-width: 420px) {
  .hero__figure { max-width: 280px; }
  .hero__bubble { font-size: 0.85rem; padding: 0.7rem 0.9rem; max-width: 168px; }
  .hero__bubble--one { left: -6%; top: -10%; }
  .hero__bubble--two { right: -6%; }
}

@media (min-width: 900px) {
  .hero__figure { max-width: 400px; }
}

/* ---------------------------------------------------------------------- */
/* Sections                                                                 */
/* ---------------------------------------------------------------------- */
section { padding-block: var(--space-2xl); }

.section-head {
  max-width: 60ch;
  margin-bottom: var(--space-xl);
}

.section-head h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.4rem);
  margin-top: var(--space-sm);
}

.section-head p {
  margin-top: var(--space-sm);
  color: var(--color-muted);
  font-size: 1.02rem;
}

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

/* Support / value grid */
.support-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .support-grid { grid-template-columns: repeat(3, 1fr); }
}

.support-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: #E9D9AE;
}

.support-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F4E9CE;
  color: var(--color-gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.support-card h3 {
  font-size: 1.08rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.support-card p {
  margin-top: 0.45rem;
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* About / personal section */
.about {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .about { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-2xl); }
}

.about__portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }

.about__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.42;
  color: var(--color-ink);
  margin-top: var(--space-sm);
}

.about__meta {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.about__meta dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.about__meta dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

/* Steps */
.steps {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  padding-top: var(--space-lg);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; }
.step p { margin-top: 0.4rem; color: var(--color-muted); font-size: 0.94rem; }

/* ---------------------------------------------------------------------- */
/* Contact form                                                             */
/* ---------------------------------------------------------------------- */
.contact {
  background: var(--color-charcoal);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 380px at 100% 0%, rgba(182,137,44,0.18), transparent 60%);
  pointer-events: none;
}

.contact__grid {
  position: relative;
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 980px) {
  .contact__grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

.contact__intro .eyebrow { color: var(--color-gold-light); }
.contact__intro .eyebrow::before { background: var(--color-gold-light); }

.contact__intro h2 {
  color: var(--color-cream);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-top: var(--space-sm);
}

.contact__intro p {
  margin-top: var(--space-sm);
  color: rgba(255,255,255,0.75);
  max-width: 42ch;
}

.contact__direct {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact__direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  color: var(--color-cream);
  transition: color 180ms var(--ease);
}
.contact__direct a:hover { color: var(--color-gold-light); }
.contact__direct svg { color: var(--color-gold-light); flex: none; }

.form-card {
  background: var(--color-cream);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55);
}

.form-card h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.form-card > p {
  margin-top: 0.4rem;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.form-row {
  margin-top: var(--space-md);
}

.form-row--split {
  display: grid;
  gap: var(--space-md);
}
@media (min-width: 560px) {
  .form-row--split { grid-template-columns: 1fr 1fr; }
}

.field label,
.field legend {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-ink);
  padding: 0;
}

.field .optional-tag {
  font-weight: 500;
  color: var(--color-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background-color 160ms var(--ease);
}

.field textarea { min-height: 96px; resize: vertical; }

.field input:hover, .field textarea:hover { border-color: #D8CDAF; }

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-cream);
  box-shadow: 0 0 0 4px rgba(182, 137, 44, 0.16);
}

.field input:invalid[data-touched="true"],
.field textarea:invalid[data-touched="true"] {
  border-color: var(--color-error);
}

.field-hint {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.field-error {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-error);
  display: none;
  align-items: center;
  gap: 0.35rem;
}
.field.has-error .field-error { display: flex; }
.field.has-error input,
.field.has-error textarea { border-color: var(--color-error); background: var(--color-error-bg); }

/* Radio options for "Wobei kann ich dich unterstützen" */
fieldset { border: none; padding: 0; margin: 0; }

.option-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease);
  min-height: 48px;
}

.option:hover { border-color: #D8CDAF; background: #FCFAF5; }

.option input[type="radio"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-gold-strong);
  flex: none;
}

.option span { font-size: 0.94rem; line-height: 1.4; }

.option:has(input:checked) {
  border-color: var(--color-gold);
  background: #FBF3E0;
  box-shadow: 0 0 0 1px var(--color-gold) inset;
}

.form-actions {
  margin-top: var(--space-lg);
}

.form-legal {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.5;
}
.form-legal a { text-decoration: underline; text-underline-offset: 2px; }

.form-status {
  margin-top: var(--space-md);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  display: none;
  align-items: flex-start;
  gap: 0.6rem;
}
.form-status.is-visible { display: flex; }
.form-status--success { background: var(--color-success-bg); color: var(--color-success); }
.form-status--error { background: var(--color-error-bg); color: var(--color-error); }
.form-status svg { flex: none; margin-top: 0.1rem; }

.btn[disabled] { opacity: 0.65; pointer-events: none; }

.spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: currentColor;
  animation: spin 700ms linear infinite;
  display: none;
}
[data-loading="true"] .spinner { display: inline-block; }
[data-loading="true"] .btn-label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------------------------------------------------------------- */
/* FAQ                                                                      */
/* ---------------------------------------------------------------------- */
.faq {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon-plus { transition: transform 220ms var(--ease); flex: none; color: var(--color-gold-strong); }
.faq-item[open] summary .icon-plus { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.15rem; color: var(--color-muted); font-size: 0.95rem; max-width: 62ch; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding-block: var(--space-xl) var(--space-lg);
}

.footer-grid {
  display: grid;
  gap: var(--space-lg);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand .brand__mark { color: var(--color-gold-light); }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; max-width: 40ch; color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.85rem;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; transition: color 160ms var(--ease); }
.footer-col a:hover { color: var(--color-gold-light); }

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------------------------------------------------------------------- */
/* Sticky mobile CTA                                                        */
/* ---------------------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0.7rem var(--space-md);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
  background: var(--color-charcoal);
  border-top: 1px solid var(--color-border-dark);
}
@media (min-width: 900px) {
  .mobile-cta { display: none; }
}
body { padding-bottom: 78px; }
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* ---------------------------------------------------------------------- */
/* Legal pages                                                              */
/* ---------------------------------------------------------------------- */
.legal {
  padding-block: var(--space-2xl);
}
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.legal h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  margin-top: var(--space-lg);
  margin-bottom: 0.5rem;
}
.legal p, .legal li { color: var(--color-ink-soft); font-size: 0.98rem; max-width: 72ch; }
.legal ul { list-style: disc; padding-left: 1.2rem; display: block; margin-top: 0.5rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { text-decoration: underline; text-underline-offset: 2px; color: var(--color-gold-strong); }
.legal .back-link { margin-bottom: var(--space-lg); display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; }
