@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --red:         #b91c1c;
  --red-dark:    #991b1b;
  --red-50:      #fef2f2;
  --teal:        #0f766e;
  --teal-dark:   #0d6659;
  --teal-50:     #f0fdfa;
  --gray-900:    #111827;
  --gray-700:    #374151;
  --gray-500:    #6b7280;
  --gray-400:    #9ca3af;
  --gray-200:    #e5e7eb;
  --gray-100:    #f3f4f6;
  --border:      rgba(17,24,39,0.08);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
  --shadow:      0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.09);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1440px;
  --px:          20px;
  --nav-h:       68px;
}
@media (min-width: 640px)  { :root { --px: 32px; } }
@media (min-width: 1024px) { :root { --px: 64px; } }
@media (min-width: 1280px) { :root { --px: 80px; } }

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: #fdfcfb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 10px 20px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 400;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ── Intro overlay ──────────────────────────────────────────── */
.skip-intro #intro { display: none !important; }

@media (prefers-reduced-motion: reduce) { #intro { display: none !important; } }

#intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
}
#intro.is-done {
  opacity: 0;
  pointer-events: none;
}
.intro-logo {
  width: clamp(200px, 52vw, 560px);
  position: relative;
}
/* Subtle warm halo behind logo */
.intro-logo::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at center, rgba(185,28,28,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.intro-logo svg { position: relative; z-index: 1; }
#intro-skip {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
#intro-skip:hover {
  color: var(--gray-700);
  background: var(--gray-100);
}

/* ── Navigation ─────────────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#site-nav.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 16px rgba(0,0,0,0.05);
}
.nav-bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand / Logo in nav */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo {
  height: 34px;
  width: auto;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--gray-900); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  white-space: nowrap;
  margin-left: 4px;
  transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Hamburger */
#nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  transition: background 0.15s;
}
#nav-toggle:hover { background: var(--gray-100); }
@media (min-width: 768px) { #nav-toggle { display: none; } }

/* Mobile menu */
#mobile-menu {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px var(--px) 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#mobile-menu[hidden] { display: none; }
.mobile-link {
  display: block;
  padding: 13px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.mobile-link:hover { background: var(--off-white); color: var(--gray-900); }
.mobile-link--cta {
  margin-top: 10px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.mobile-link--cta:hover { background: var(--red-dark); color: #fff; }

/* ── Section shells ─────────────────────────────────────────── */
.section {
  padding-block: 80px;
}
@media (min-width: 768px) { .section { padding-block: 112px; } }

/* Section alt backgrounds */
.section--alt { background: var(--off-white); }
.section--teal { background: var(--teal-50); }
.section--dark { background: var(--gray-900); color: #fff; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.7s ease;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ── Mobile contact dock ────────────────────────────────────── */
#mobile-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (min-width: 768px) { #mobile-dock { display: none; } }
.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.dock-btn:active { opacity: 0.8; }
.dock-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.dock-btn--primary { background: var(--red); color: #fff; }
.dock-btn--secondary { background: var(--gray-100); color: var(--gray-700); border: 1px solid var(--border); }
.dock-btn--email { background: var(--teal); color: #fff; }
.dock-btn--whatsapp { background: #25d366; color: #fff; }

/* ── WhatsApp FAB ────────────────────────────────────────────── */
#wa-fab {
  display: none;
}
@media (min-width: 768px) {
  #wa-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  #wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  }
}

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding-block: 56px;
}
.footer-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}
.footer-logo {
  display: block;
  margin-bottom: 4px;
}
.footer-logo .logo-svg {
  width: 180px;
  height: auto;
  display: block;
}
.footer-logo .logo-svg .cls-1 { fill: #fff; }
.footer-logo .logo-svg .cls-2 { stroke: #fff; }
.brand-name,
.footer-brand__name {
  font-family: 'Libre Baskerville', serif;
}
.footer-brand__tagline {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding-block: 4px;
  transition: color 0.15s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  position: relative;
}

/* ── Animated gradient mesh ──────────────────────────────────── */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-left .hero-content {
  position: relative;
  z-index: 1;
}

.hero-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

/* Warm red — top right, large, slow */
.hero-mesh-blob--1 {
  width: 700px;
  height: 700px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(185,28,28,0.18) 0%, transparent 70%);
  animation: mesh-drift-1 18s ease-in-out infinite;
}

/* Teal — bottom left, medium */
.hero-mesh-blob--2 {
  width: 580px;
  height: 580px;
  bottom: -20%;
  left: -8%;
  background: radial-gradient(circle, rgba(15,118,110,0.14) 0%, transparent 70%);
  animation: mesh-drift-2 22s ease-in-out infinite;
}

/* Soft amber — centre, subtle warmth */
.hero-mesh-blob--3 {
  width: 460px;
  height: 460px;
  top: 30%;
  left: 30%;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
  animation: mesh-drift-3 16s ease-in-out infinite;
}

/* Faint red — bottom right, counterpoint */
.hero-mesh-blob--4 {
  width: 380px;
  height: 380px;
  bottom: 5%;
  right: 15%;
  background: radial-gradient(circle, rgba(185,28,28,0.10) 0%, transparent 70%);
  animation: mesh-drift-4 20s ease-in-out infinite;
}

@keyframes mesh-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 30px) scale(1.06); }
  66%       { transform: translate(25px, -20px) scale(0.96); }
}
@keyframes mesh-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(35px, -25px) scale(1.04); }
  70%       { transform: translate(-20px, 20px) scale(0.97); }
}
@keyframes mesh-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, 30px) scale(1.08); }
}
@keyframes mesh-drift-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45%       { transform: translate(-30px, -15px) scale(1.05); }
  80%       { transform: translate(15px, 25px) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh-blob { animation: none; }
}

/* Ambient light: white center, teal top-right, red bottom-left */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 85% 10%, rgba(15,118,110,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(185,28,28,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 42%, #ffffff 28%, #f7f6f5 100%);
  z-index: 0;
}


/* Hero blob image — pre-shaped PNG, no CSS mask needed */
.hero-blob-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* ── Depth glows behind blob images ──────────────────────────── */
.hero-visual,
.trust-visual,
.ablauf-visual {
  position: relative;
  isolation: isolate;
}

/* Hero: teal upper-right + warm red lower-left */
.hero-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(15,118,110,0.18) 0%, transparent 70%);
  filter: blur(48px);
  border-radius: 50%;
  z-index: 0;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 52%;
  height: 52%;
  bottom: 2%;
  left: -4%;
  background: radial-gradient(circle, rgba(185,28,28,0.10) 0%, transparent 70%);
  filter: blur(56px);
  border-radius: 50%;
  z-index: 0;
}

/* Über uns (teal-50 bg): warm red upper + teal lower */
.trust-visual::before {
  content: "";
  position: absolute;
  width: 68%;
  height: 68%;
  top: -6%;
  left: -6%;
  background: radial-gradient(circle, rgba(185,28,28,0.09) 0%, transparent 70%);
  filter: blur(52px);
  border-radius: 50%;
  z-index: 0;
}
.trust-visual::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 55%;
  bottom: -4%;
  right: -4%;
  background: radial-gradient(circle, rgba(15,118,110,0.14) 0%, transparent 70%);
  filter: blur(44px);
  border-radius: 50%;
  z-index: 0;
}

/* Ablauf (off-white bg): teal upper-left + warm lower-right */
.ablauf-visual::before {
  content: "";
  position: absolute;
  width: 65%;
  height: 65%;
  top: -6%;
  left: -5%;
  background: radial-gradient(circle, rgba(15,118,110,0.14) 0%, transparent 70%);
  filter: blur(48px);
  border-radius: 50%;
  z-index: 0;
}
.ablauf-visual::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -4%;
  right: -4%;
  background: radial-gradient(circle, rgba(185,28,28,0.08) 0%, transparent 70%);
  filter: blur(52px);
  border-radius: 50%;
  z-index: 0;
}

/* Hero layout: left text / right image */
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
/* ── Split hero panels ───────────────────────────────────────── */
.hero-visual { display: none; }

.hero-left {
  position: relative;
  background: var(--teal-50);
  display: flex;
  align-items: center;
  padding: 100px 48px 100px max(calc((100vw - 1440px) / 2 + 80px), 48px);
  overflow: hidden;
  clip-path: inset(0 0 0 0 round 0 24px 24px 0);
  z-index: 1;
}

.hero-left .hero-content {
  max-width: 520px;
  width: 100%;
}

/* Right panel: full-bleed image */
.hero-right {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-right { margin-left: -24px; width: calc(100% + 24px); }
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.7s ease;
}

.hero-img-base  { object-position: center 15%; opacity: 1; }
.hero-img-hover { object-position: center 8%;  opacity: 0; }

.hero-right:hover .hero-img-base  { opacity: 0; }
.hero-right:hover .hero-img-hover { opacity: 1; }

/* Floating trust card */
.hero-img-card {
  position: absolute;
  bottom: 36px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 22px 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
}

.hero-img-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal);
  flex-shrink: 0;
}

.hero-img-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.hero-img-card-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.hero-img-card-text span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.3;
}

@media (max-width: 767px) {
  .hero { grid-template-columns: 1fr; grid-template-rows: auto 100vw; height: auto; }
  .hero-left { padding: 40px 24px; clip-path: none; }
  .hero-left .hero-content { max-width: 100%; margin-left: 0; }
  .hero-right { border-radius: 20px; margin: 0 16px 16px; }
  .hero-img-base  { object-position: center 10%; }
  .hero-img-hover { object-position: center 5%; }
  .hero-img-card { bottom: 16px; left: 16px; }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

/* Neueröffnung badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--teal-50);
  border: 1px solid rgba(15,118,110,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .badge-dot { animation: none; }
}

/* Red accent rule — short horizontal line between badge and headline */
.hero-rule {
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 0 22px;
}

/* Headline */
.hero-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: #000000;
}
.hero-headline__accent {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.25em;
  margin-bottom: -0.25em;
}

/* Subline */
.hero-subline {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
}
.br-desk { display: none; }
@media (min-width: 540px) { .br-desk { display: block; } }

/* CTAs */
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 44px;
}
@media (min-width: 480px) {
  .hero-ctas { flex-direction: row; justify-content: flex-start; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(185,28,28,0.22);
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.btn-primary:hover  { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(185,28,28,0.28); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg    { width: 17px; height: 17px; flex-shrink: 0; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: #25d366;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(37,211,102,0.28);
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.btn-whatsapp:hover  { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,0.35); }
.btn-whatsapp:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: transparent;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, transform 0.12s;
}
.btn-outline:hover  { border-color: var(--gray-400); color: var(--gray-900); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }

.hero-ctas .btn-outline {
  background: #fff;
  border-color: #fff;
  color: var(--teal-dark);
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.12s;
}
.hero-ctas .btn-outline:hover {
  background: #f0fdfa;
  border-color: #f0fdfa;
  color: var(--teal);
  transform: translateY(-2px);
}
.hero-ctas .btn-outline:active { transform: translateY(0); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  padding: 14px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-text:hover { color: var(--gray-900); border-bottom-color: var(--gray-300); }

/* Trust signals */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
}
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--teal-50);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-icon svg { width: 10px; height: 10px; color: var(--teal); }
.trust-sep { width: 1px; height: 12px; background: var(--gray-200); }
@media (max-width: 479px) { .trust-sep { display: none; } }

/* Mobile: no extra bottom padding on hero */

/* ── Blob image mask ──────────────────────────────────────────── */
.blob-wrap {
  position: relative;
  isolation: isolate;
}
/* Decorative teal accent offset behind the blob */
.blob-wrap::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  background: var(--teal-50);
  border-radius: 50% 50% 45% 55% / 45% 55% 45% 55%;
  z-index: -1;
}
/*
  Portrait Union blob — two overlapping rounded lobes with a concave neck,
  inspired by the Union.svg reference. 400×500 grid matches the 4:5 aspect-ratio.

  Structure:
  - Small lobe: upper-left (x 32–292, y 10–242)
  - Large lobe: lower-right (x 72–396, y 242–498)
  - Concave S-curve neck at mid-height creates the characteristic Union "bite"
  - Diagonal lean (upper-left → lower-right) gives strong visual dynamism
  - No axis of symmetry — obviously not a circle or oval
*/
.blob-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M 148 10 C 220 5 290 55 292 118 C 294 175 275 210 268 242 C 262 268 295 295 338 322 C 375 345 396 388 390 435 C 384 475 350 498 305 498 C 262 498 215 488 180 468 C 142 448 95 415 72 372 C 48 330 52 275 82 252 C 108 232 118 192 102 162 C 88 138 62 108 48 78 C 32 52 65 12 148 10 Z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M 148 10 C 220 5 290 55 292 118 C 294 175 275 210 268 242 C 262 268 295 295 338 322 C 375 345 396 388 390 435 C 384 475 350 498 305 498 C 262 498 215 488 180 468 C 142 448 95 415 72 372 C 48 330 52 275 82 252 C 108 232 118 192 102 162 C 88 138 62 108 48 78 C 32 52 65 12 148 10 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.12)) drop-shadow(0 4px 14px rgba(15,118,110,0.09));
}

/* ── Section heading ─────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #000000 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  margin-inline: auto;
}

/* ── Tab switcher ─────────────────────────────────────────────── */
.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--gray-700); }
.tab-btn.is-active { color: var(--gray-900); font-weight: 600; }
.tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
}
.tab-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 20px;
  flex-shrink: 0;
}
.tab-badge--teal { background: var(--teal-50); color: var(--teal); }
.tab-badge--red  { background: var(--red-50);  color: var(--red);  }

/* ── Service panel / cards ────────────────────────────────────── */
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--teal-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon svg { width: 20px; height: 20px; color: var(--teal); }
.service-card__icon--red { background: var(--red-50); }
.service-card__icon--red svg { color: var(--red); }
.service-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── 24h availability bar ─────────────────────────────────────── */
.avail-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
@media (min-width: 640px) {
  .avail-bar { flex-direction: row; align-items: center; justify-content: space-between; }
}
.avail-bar__inner { display: flex; align-items: center; gap: 16px; }
.avail-bar__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.avail-bar__icon svg { width: 24px; height: 24px; color: var(--teal); }
.avail-bar__title { font-size: 15px; font-weight: 600; color: var(--gray-900); }
.avail-bar__sub { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* ── Process steps (Ablauf) ──────────────────────────────────── */
.ablauf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 52px;
}
@media (max-width: 767px) {
  .ablauf-layout { grid-template-columns: 1fr; gap: 40px; }
  .ablauf-visual  { max-width: 320px; margin-inline: auto; }
}
.ablauf-layout .steps-list {
  max-width: none;
  margin-inline: 0;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  position: relative;
}
.step:not(:last-child) .step-line {
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s, background 0.25s;
}
.step:hover .step-num { border-color: var(--teal); background: var(--teal-50); }
.step-num span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-400);
  transition: color 0.25s;
}
.step:hover .step-num span { color: var(--teal); }
.step-body { padding: 12px 0 40px; }
.step-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step-body p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

/* ── Trust / Über uns ─────────────────────────────────────────── */
.trust-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .trust-split { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
}
.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.trust-stat {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,118,110,0.12);
}
.trust-stat__number {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.trust-stat__label { font-size: 13px; color: var(--gray-500); line-height: 1.4; }
.trust-text p { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; }
.trust-text p:last-of-type { margin-bottom: 28px; }
.trust-quote {
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 28px;
}

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--teal); }
.faq-btn[aria-expanded="true"] { color: var(--teal); }
.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
}
.faq-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-body.is-open { grid-template-rows: 1fr; }
.faq-body-inner {
  overflow: hidden;
}
.faq-body-inner p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ── Contact section ──────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-split { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
}
.contact-text p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  transition: background 0.2s, transform 0.2s;
}
.contact-link:hover { background: var(--gray-200); transform: translateX(3px); }
.contact-link__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-link__icon svg { width: 18px; height: 18px; }
.contact-link__icon--red  { background: var(--red-50);  color: var(--red);  }
.contact-link__icon--green { background: #dcfce7; color: #16a34a; }
.contact-link__icon--gray { background: var(--gray-200); color: var(--gray-500); }
.contact-link__label { font-size: 12px; color: var(--gray-400); font-weight: 400; display: block; margin-top: 1px; }
.contact-address {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.contact-address strong { color: var(--gray-900); font-weight: 600; display: block; margin-bottom: 4px; }

/* ── Kontakt section ambient blobs ──────────────────────────── */
#kontakt {
  position: relative;
  overflow: hidden;
}
#kontakt::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(15,118,110,0.08) 0%, transparent 65%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}
#kontakt::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(185,28,28,0.06) 0%, transparent 65%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Impressum page ─────────────────────────────────────────── */
.impressum-wrap {
  max-width: 860px;
}
.impressum-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 40px;
  transition: color 0.15s;
}
.impressum-back:hover { color: var(--gray-900); }
.impressum-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  background: linear-gradient(135deg, #000000 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impressum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 640px) {
  .impressum-grid { grid-template-columns: 1fr; }
}
.impressum-block {
  padding: 28px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.impressum-block--full {
  grid-column: 1 / -1;
}
.impressum-block h2 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.impressum-block p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}
.impressum-block a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.impressum-block a:hover { color: var(--teal-dark); }

/* ── Placeholder notice (dev only) ─────────────────────────── */
.placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
}

/* ── Blog articles ───────────────────────────────────────────── */
.blog-article {
  padding-block: 64px 96px;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 64px;
  align-items: start;
}
.blog-wrap {
  max-width: 740px;
}
.blog-toc {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  padding-top: 148px;
}
.blog-toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin: 0 0 12px;
}
.blog-toc nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.blog-toc nav a {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  padding: 5px 8px 5px 12px;
  border-left: 2px solid var(--border);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s, border-color 0.15s;
}
.blog-toc nav a:hover { color: var(--gray-900); }
.blog-toc nav a.toc-active {
  color: var(--gray-900);
  border-left-color: #0f766e;
  font-weight: 500;
}
.blog-toc nav a.toc-h3 {
  padding-left: 20px;
  font-size: 12px;
}
.blog-wrap h2, .blog-wrap h3 {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
@media (max-width: 960px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-toc { display: none; }
}
.blog-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.blog-date {
  font-size: 13px;
  color: var(--gray-400);
}
.blog-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #000000 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.blog-intro {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.blog-wrap h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-top: 56px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.blog-wrap h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f766e;
  margin-top: 28px;
  margin-bottom: 10px;
}
.blog-wrap p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}
.blog-wrap ul,
.blog-wrap ol {
  padding-left: 0;
  margin-bottom: 18px;
  list-style: none;
}
.blog-wrap ol { counter-reset: ol-counter; }
.blog-wrap ul li,
.blog-wrap ol li {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.blog-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0f766e;
}
.blog-list-warning li::before {
  background: #dc2626;
  border-radius: 2px;
  width: 8px;
  height: 8px;
  top: 8px;
  transform: rotate(45deg);
}
.blog-wrap ol li::before {
  counter-increment: ol-counter;
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f766e;
}
.blog-wrap strong { color: var(--gray-900); font-weight: 600; }
.blog-callout {
  background: #f0fdf9;
  border-left: 3px solid #0f766e;
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.blog-callout p {
  margin: 0;
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
}
.blog-callout strong { color: #0f766e; }
.blog-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f0fdf9;
  border: 1px solid rgba(15,118,110,0.18);
  border-radius: 12px;
  padding: 18px 24px;
  margin: 24px 0;
}
.blog-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.03em;
  white-space: nowrap;
  line-height: 1;
}
.blog-stat-label {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}
.blog-cta-box {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--teal-50);
  border: 1px solid rgba(15,118,110,0.15);
  border-radius: var(--radius-xl);
}
.blog-cta-box h2 {
  margin-top: 0;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--gray-900);
}
.blog-cta-box p {
  color: var(--gray-600, var(--gray-700));
  margin-bottom: 24px;
}

/* ── Blog Index ─────────────────────────────────────────────── */
.blog-index-hero {
  padding: calc(var(--nav-h) + 56px) 0 48px;
}
.blog-index-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--gray-900);
  margin: 12px 0 16px;
}
.blog-index-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}
.blog-index-grid {
  padding: 0 0 80px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-100);
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 28px 28px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.blog-card-excerpt {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.blog-card-link::after {
  content: '→';
}
