/* ================================================================
   humect/src/style.css
   CI-Tokens und Komponenten für humect.de
   Boutique Premium Personalberatung — Forest / Tabacco / Cream
   ================================================================ */

/* ── Brand Tokens ─────────────────────────────────────────── */
:root {
  --hh-forest:       #1B3A2F;
  --hh-tabacco:      #B8956A;
  --hh-cream:        #F4EDE0;
  --hh-off-white:    #FAF7F2;
  --hh-text:         #1B3A2F;
  --hh-text-muted:   #4A5C52;
  --hh-border:       rgba(27, 58, 47, 0.12);
  --hh-anchor:       #14241C;

  /* Shared-interface aliases */
  --brand-primary:   var(--hh-forest);
  --brand-accent:    var(--hh-tabacco);
  --brand-bg:        var(--hh-off-white);
  --brand-surface:   #FFFFFF;
  --brand-text:      var(--hh-text);
  --brand-text-muted: var(--hh-text-muted);
  --brand-border:    var(--hh-border);
}

@media (prefers-color-scheme: dark) {
  :root {
    --hh-off-white:  #0F1A14;
    --hh-cream:      #1A2620;
    --hh-text:       #E8DCC4;
    --hh-text-muted: #A0AEA5;
    --hh-border:     rgba(232, 220, 196, 0.1);
    --hh-forest:     #6FAA8E;
    --brand-surface: #1A2620;
    --brand-bg:      #0F1A14;
    --brand-text:    #E8DCC4;
    --brand-text-muted: #A0AEA5;
    --brand-border:  rgba(232, 220, 196, 0.1);
  }
}

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background-color: var(--hh-off-white);
  color: var(--hh-text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── Utilities ────────────────────────────────────────────── */
.text-hh        { color: var(--hh-text); }
.text-muted     { color: var(--hh-text-muted); }
.text-forest    { color: var(--hh-forest); }
.text-tabacco   { color: var(--hh-tabacco); }
.bg-surface     { background-color: var(--brand-surface); }
.bg-hh          { background-color: var(--hh-off-white); }
.bg-cream       { background-color: var(--hh-cream); }
.border-hh      { border-color: var(--hh-border); }

/* ── Navigation ───────────────────────────────────────────── */
.nav-glass {
  background-color: color-mix(in srgb, var(--brand-surface) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Eyebrow badge ─────────────────────────────────────────── */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--hh-border);
  background-color: var(--brand-surface);
  color: var(--hh-forest);
}
.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--hh-tabacco);
  flex-shrink: 0;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-bg {
  background: var(--hh-off-white);
  position: relative;
  overflow: hidden;
}
.hero-blob-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,106,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-2 {
  position: absolute;
  bottom: -60px;
  left: 80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,58,47,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-3 {
  position: absolute;
  top: 40%;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,106,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}

@media (prefers-color-scheme: dark) {
  .hero-bg { background: #0F1A14; }
  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      rgba(15,26,20,0.97) 0%,
      rgba(27,58,47,0.80) 55%,
      rgba(184,149,106,0.20) 100%);
    z-index: 0;
    pointer-events: none;
  }
  .hero-blob-1 { background: radial-gradient(circle, rgba(184,149,106,0.12) 0%, transparent 65%); }
  .hero-blob-2 {
    background: radial-gradient(circle, rgba(244,237,224,0.04) 0%, transparent 65%);
    bottom: auto; top: -40px; left: auto; right: 30%;
  }
  .hero-blob-3 { display: none; }

}

.accent {
  color: var(--hh-tabacco);
  font-style: italic;
  font-weight: 700;
}
.h1-accent {
  font-style: italic;
  color: var(--hh-tabacco);
  font-weight: 800;
}
@media (prefers-color-scheme: dark) {
  .h1-accent { color: var(--hh-tabacco); }
}

/* ── Hero logo mark ──────────────────────────────────────── */
.hero-logo-mark {
  margin-bottom: 20px;
  opacity: 0.9;
}
@media (prefers-color-scheme: dark) {
  .hero-logo-mark { opacity: 0.85; }
}

/* ── Section label ────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hh-tabacco);
}
.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: var(--hh-tabacco);
}

/* ── Stat tiles ───────────────────────────────────────────── */
.stat-tile {
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--hh-border);
  background-color: var(--brand-surface);
}
.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hh-forest);
}
.stat-label {
  font-size: 0.8125rem;
  margin-top: 0.25rem;
  color: var(--hh-text-muted);
}

/* ── Service cards ─────────────────────────────────────────── */
.service-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--hh-border);
  background-color: var(--brand-surface);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--hh-tabacco);
  box-shadow: 0 4px 16px -4px rgba(184, 149, 106, 0.15);
  transform: translateY(-2px);
}
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--hh-tabacco) 12%, transparent);
  color: var(--hh-tabacco);
  flex-shrink: 0;
}

/* ── USP list ─────────────────────────────────────────────── */
.usp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--hh-text-muted);
  line-height: 1.5;
}
.usp-list li::before {
  content: '';
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: var(--hh-tabacco);
  flex-shrink: 0;
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* ── Location cards ───────────────────────────────────────── */
.location-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--hh-border);
  background-color: var(--brand-surface);
}
.location-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--hh-forest) 10%, transparent);
  color: var(--hh-forest);
  border: 1px solid color-mix(in srgb, var(--hh-forest) 20%, transparent);
  margin-bottom: 0.75rem;
}

/* ── Visual accent card ───────────────────────────────────── */
.visual-card {
  border-radius: 1.25rem;
  padding: 2rem;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--hh-forest) 8%, var(--brand-surface)),
    color-mix(in srgb, var(--hh-tabacco) 6%, var(--brand-surface)));
  border: 1px solid var(--hh-border);
}

/* ── Nav CTA button ───────────────────────────────────────── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background-color: var(--hh-forest);
  text-decoration: none;
  transition: filter 0.2s;
  min-height: 44px;
}
.nav-cta:hover { filter: brightness(1.1); }

/* ── Footer anchor ────────────────────────────────────────── */
.footer-anchor {
  background-color: var(--hh-anchor);
}

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 640px) {
  .stat-tile { padding: 1rem 1.125rem; }
  .service-card { padding: 1.125rem; }
  .service-icon { width: 2rem; height: 2rem; margin-bottom: 0.75rem; }
}

/* ── Login Pill ───────────────────────────────────────────── */
.nav-login-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--hh-forest);
  color: var(--hh-cream);
  text-decoration: none;
  transition: all 0.2s;
  border: 0.5px solid var(--hh-forest);
  min-height: 36px;
}
.nav-login-pill:hover {
  background: var(--hh-tabacco);
  color: var(--hh-forest);
  border-color: var(--hh-tabacco);
}

/* ── Active nav link ──────────────────────────────────────── */
.nav-links a {
  position: relative;
}
.nav-links a.active {
  color: var(--hh-forest);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

/* ── Page hero (subpages) ─────────────────────────────────── */
.page-hero {
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 0.5px solid var(--hh-border);
}
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--hh-tabacco);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hh-tabacco);
  flex-shrink: 0;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--hh-text);
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--hh-text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

/* ── CTA strip ────────────────────────────────────────────── */
.cta-strip {
  background: color-mix(in srgb, var(--hh-forest) 4%, var(--hh-off-white));
  border-top: 0.5px solid var(--hh-border);
  padding: 56px 24px;
}
.cta-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cta-card {
  background: var(--brand-surface);
  border: 0.5px solid var(--hh-border);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--hh-text);
}
.cta-card:hover {
  border-color: var(--hh-tabacco);
  box-shadow: 0 4px 16px -4px rgba(184, 149, 106, 0.15);
  transform: translateY(-2px);
}
.cta-card [data-lucide] { color: var(--hh-tabacco); }
.cta-card-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 6px;
  color: var(--hh-text);
}
.cta-card-sub {
  font-size: 13px;
  color: var(--hh-text-muted);
}
@media (max-width: 768px) {
  .cta-strip-grid { grid-template-columns: 1fr; }
}

/* ── Team ─────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: var(--hh-off-white);
  border: 0.5px solid var(--hh-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.team-card-placeholder { opacity: 0.65; }
.team-photo {
  margin-bottom: 20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

/* Team-Foto: freigestellte PNGs auf CI-Gradient-Hintergrund */
.team-photo {
  /* Light Mode = dunkler Hintergrund (Forest/Tabacco) */
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--hh-forest)  85%, #0F1A14),
    color-mix(in srgb, var(--hh-tabacco) 30%, #1B3A2F)
  );
  border-radius: 50%;
  overflow: hidden;
}

.team-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: normal;
}

@media (prefers-color-scheme: dark) {
  .team-photo {
    /* Dark Mode = heller Hintergrund (Cream/Off-White) */
    background: linear-gradient(
      145deg,
      #F4EDE0,
      #FAF7F2
    );
  }
}
.team-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--brand-surface);
  border: 2px dashed var(--hh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hh-text-muted);
}
.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--hh-text);
}
.team-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--hh-tabacco);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.team-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hh-text-muted);
  margin-bottom: 20px;
  flex: 1;
}
.team-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 8px;
  border: 0.5px solid var(--hh-border);
  color: var(--hh-text-muted);
  text-decoration: none;
  transition: all 0.15s;
}
.team-link:hover { border-color: var(--hh-tabacco); color: var(--hh-tabacco); }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

/* ── Standorte ────────────────────────────────────────────── */
.standorte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.standort-card {
  background: var(--hh-off-white);
  border: 0.5px solid var(--hh-border);
  border-radius: 16px;
  padding: 32px;
}
.standort-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hh-tabacco);
  background: color-mix(in srgb, var(--hh-tabacco) 12%, transparent);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.standort-card h3 { font-size: 20px; font-weight: 700; color: var(--hh-text); margin-bottom: 16px; }
.standort-addr { font-size: 15px; font-style: normal; line-height: 1.7; color: var(--hh-text); margin-bottom: 20px; }
.standort-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 0.5px solid var(--hh-border);
  margin-bottom: 16px;
}
.standort-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--hh-tabacco);
  text-decoration: none;
  transition: opacity 0.15s;
}
.standort-contact a:hover { opacity: 0.75; }
.standort-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--hh-text-muted);
  text-decoration: none;
  transition: color 0.15s;
  padding-top: 8px;
}
.standort-map-link:hover { color: var(--hh-tabacco); }
@media (max-width: 768px) { .standorte-grid { grid-template-columns: 1fr; } }

/* ── Visual Card Tablet ──────────────────────────────────── */
@media (max-width: 1023px) { .visual-card { display: none; } }
@media (min-width: 1024px) { .visual-card { display: block; } }

/* ── Team Photo Mobile ───────────────────────────────────── */
@media (max-width: 640px) {
  .team-photo, .team-photo img { width: 120px; height: 120px; }
}

/* ── Hero + Footer: Tablet ───────────────────────────────── */
@media (min-width: 641px) and (max-width: 1023px) {
  .hero-bg {
    padding-top: 2.5rem !important;
    padding-bottom: 3rem !important;
  }
  .hero-logo-mark img { height: 26px; }
  .hero-bg h1 {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }
  .hero-bg h1 br { display: inline !important; }
  .hero-bg p {
    font-size: 1rem !important;
    max-width: 500px !important;
  }
  .hero-bg .btn-primary,
  .hero-bg .btn-outline {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  .stat-tile { padding: 0.875rem 1rem; }
  .stat-value { font-size: 1.05rem; }
  .stat-label { font-size: 0.75rem; }
  .stat-tile-gvp picture img { height: 36px !important; }
  footer.footer-anchor .max-w-5xl {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  footer.footer-anchor > div > div.flex { gap: 1.5rem; }
  footer nav { gap: 0.875rem 1rem !important; font-size: 0.75rem; }
  .footer-transparency { font-size: 11px; max-width: 100%; }
}

/* ── Hero + Footer: Mobile ───────────────────────────────── */
@media (max-width: 640px) {
  .hero-bg {
    padding-top: 1.75rem !important;
    padding-bottom: 2.5rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .hero-logo-mark { margin-bottom: 14px; }
  .hero-logo-mark img { height: 22px; }
  .hero-bg h1 {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
    margin-top: 1rem !important;
  }
  .hero-bg h1 br { display: none !important; }
  .hero-bg p {
    font-size: 0.9375rem !important;
    line-height: 1.6 !important;
    margin-top: 1rem !important;
    max-width: 100% !important;
  }
  .hero-bg .flex.flex-wrap.gap-3 {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-top: 1.75rem !important;
  }
  .hero-bg .btn-primary,
  .hero-bg .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
  }
  .hero-bg .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.625rem !important;
    margin-top: 2rem !important;
  }
  .stat-tile { padding: 0.875rem 1rem; border-radius: 0.75rem; }
  .stat-value { font-size: 1rem; }
  .stat-label { font-size: 0.6875rem; }
  .stat-tile-gvp { grid-column: 1 / -1 !important; padding: 0.75rem 1rem !important; }
  .stat-tile-gvp picture img { height: 34px !important; }
  footer.footer-anchor .max-w-5xl { padding: 1.5rem 1.25rem !important; }
  footer.footer-anchor > div > div.flex.flex-col.sm\:flex-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
  }
  footer.footer-anchor img[alt*="humect"],
  footer.footer-anchor img[alt*="STAFFECT"] {
    width: 28px !important;
    height: 28px !important;
  }
  footer.footer-anchor .text-sm.font-semibold {
    font-size: 0.8125rem !important;
    line-height: 1.4;
  }
  footer.footer-anchor .text-xs {
    font-size: 0.6875rem !important;
    line-height: 1.5;
  }
  footer nav {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.625rem 1rem !important;
    font-size: 0.75rem !important;
    width: 100%;
  }
  footer nav a { padding: 0.125rem 0; line-height: 1.4; }
  .footer-transparency {
    font-size: 10.5px !important;
    line-height: 1.55;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .footer-gvp {
    display: flex;
    justify-content: flex-start;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .footer-gvp img { height: 30px !important; }
}

/* ── Extra Small ─────────────────────────────────────────── */
@media (max-width: 380px) {
  .team-preview-av { width: 40px; height: 40px; margin-left: -10px; }
  .team-preview-label { font-size: 13px; }
  footer nav { grid-template-columns: 1fr !important; font-size: 0.6875rem !important; }
  .footer-transparency { font-size: 10px !important; }
}

/* ── Team Preview Strip ──────────────────────────────────── */
.team-preview-strip {
  padding: 40px 0 36px;
  background: var(--hh-off-white);
}
.team-preview-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.team-preview-avatars {
  display: flex;
  flex-shrink: 0;
}
.team-preview-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--brand-surface);
  background-color: color-mix(in srgb, var(--hh-forest) 85%, #0F1A14);
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--hh-border);
}

@media (prefers-color-scheme: dark) {
  .team-preview-av {
    background-color: #F4EDE0;
  }
}
.team-preview-av:first-child { margin-left: 0; }
.team-preview-av span {
  display: none;
}
.team-preview-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.team-preview-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--hh-text);
}
.team-preview-sub {
  font-size: 12px;
  color: var(--hh-text-muted);
}
.team-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hh-forest);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  border: 1.5px solid var(--hh-forest);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.team-preview-link:hover {
  background: var(--hh-forest);
  color: var(--hh-cream);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .team-preview-inner { gap: 14px; }
  .team-preview-link { display: none; }
  .team-preview-av { width: 44px; height: 44px; }
}

/* ── Jobs / Karriere ──────────────────────────────────────── */
.jobs-iframe-section {
  position: relative;
  width: 100%;
  margin-top: 48px;
  margin-bottom: 0;
}
.jobs-iframe {
  width: 100%;
  min-height: 1200px;
  border: none;
  display: block;
  background: transparent;
  overflow: hidden;
}
.jobs-iframe-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 200px;
  font-size: 14px;
  color: var(--hh-text-muted);
  transition: opacity 0.3s ease;
}
.jobs-iframe-loading.hidden { display: none; }
.jobs-iframe-loading svg { animation: spin 1s linear infinite; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.initiativ-section {
  margin-top: 0;
  padding-top: 72px;
  border-top: 0.5px solid var(--hh-border);
}

/* ── Footer transparency note ── */
.footer-transparency {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  max-width: 720px;
}
.footer-transparency strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}
/* ── Logo (inline SVG, currentColor) ── */
.brand-logo {
  display: block;
  height: 32px;
  width: auto;
}
.brand-logo svg {
  height: 100%;
  width: auto;
  display: block;
}
.nav-logo-link    { color: var(--hh-forest); }
.footer-logo-link { color: var(--hh-tabacco); }

/* ── H1 Mobile Scale ───────────────────────────────────── */
@media (max-width: 640px) {
  h1.animate-fade-up {
    font-size: 2.25rem; /* text-4xl = 36px statt text-3xl = 30px */
  }
}
