/* ══ RESET & VARIABLES ════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #172126;
  --ink-mid:   #1e3040;
  --accent:    #9d2f25;
  --accent-dk: #7d2018;
  --white:     #ffffff;
  --soft:      #f4f1ec;
  --g100:      #f5f3ef;
  --g200:      #e8e4de;
  --g400:      #9e9890;
  --g600:      #5c5650;
  --wa:        #25d366;
  --wa-dk:     #1da851;
  --ease:      0.3s ease;
  --shadow:    0 4px 24px rgba(23,33,38,.12);
  --radius:    8px;
  --radius-lg: 14px;
}

html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; padding: 0; }
address { font-style: normal; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section.bg-soft { background: var(--soft); }
.section.bg-gray { background: var(--g100); }
.section.bg-dark { background: var(--ink); }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; font-weight: 800; }
h1 { font-size: clamp(36px, 5.5vw, 68px); letter-spacing: .01em; }
h2 { font-size: clamp(28px, 4vw, 46px);   letter-spacing: .01em; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
  display: block;
}
.section-header { margin-bottom: 56px; }
.section-sub    { font-size: 17px; color: var(--g600); line-height: 1.75; max-width: 600px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s;
}
.btn:hover  { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(23,33,38,.16); }
.btn:active { transform: translateY(0); }
.btn svg    { flex-shrink: 0; }

.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

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

.btn-wa { background: var(--wa); color: var(--white); border-color: var(--wa); }
.btn-wa:hover { background: var(--wa-dk); border-color: var(--wa-dk); }

/* ══ HEADER ═══════════════════════════════════════════════ */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  padding: 18px 0;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(23,33,38,.97); padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.32); backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 800; color: var(--white); white-space: nowrap;
}
.nav-logo-mark {
  width: 36px; height: 36px; background: var(--accent);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  transition: color var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width .3s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-phone a {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: color var(--ease);
}
.nav-phone a:hover { color: #d4756d; }
.nav-phone svg { color: #d4756d; flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; display: block; }

/* ══ HERO ═════════════════════════════════════════════════ */
.page-hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.06); will-change: transform;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(23,33,38,.93) 0%, rgba(23,33,38,.77) 55%, rgba(30,48,64,.52) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(157,47,37,.15); border: 1px solid rgba(157,47,37,.45);
  color: #d4756d; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 32px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 6.5vw, 74px); font-weight: 800;
  color: var(--white); line-height: 1.08; letter-spacing: .01em; margin-bottom: 24px;
}
.hero-title .word { display: inline-block; margin-right: .22em; opacity: 0; transform: translateY(44px); }
.hero-lead {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.82);
  line-height: 1.75; margin-bottom: 44px; max-width: 570px;
  opacity: 0; transform: translateY(22px);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(22px); }
.hero-scroll {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.45); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* Sub-page hero (shorter) */
.sub-hero {
  padding: 140px 0 72px; position: relative; overflow: hidden;
  background: var(--ink);
}
.sub-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(157,47,37,.18) 0%, transparent 65%);
  pointer-events: none;
}
.sub-hero-content { position: relative; z-index: 1; }
.sub-hero h1     { color: var(--white); margin-bottom: 16px; }
.sub-hero .lead  { font-size: 18px; color: rgba(255,255,255,.7); max-width: 600px; }

/* ══ TRUST STRIP ══════════════════════════════════════════ */
.trust-strip { background: var(--ink); padding: 0; border-top: 3px solid var(--accent); }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 28px; color: rgba(255,255,255,.88);
  font-size: 14px; font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color var(--ease); white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: #d4756d; }
.trust-item svg  { color: #d4756d; flex-shrink: 0; }

/* ══ SERVICE CARDS ════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.svc-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--g200);
  position: relative; overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: 0 18px 52px rgba(23,33,38,.12); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 54px; height: 54px; background: rgba(157,47,37,.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background .3s;
}
.svc-card:hover .svc-icon { background: rgba(157,47,37,.2); }
.svc-icon svg { color: var(--accent); }
.svc-card h3  { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.svc-card p   { font-size: 14px; color: var(--g600); line-height: 1.68; }
.svc-card a   { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--accent); transition: gap .2s; }
.svc-card a:hover { gap: 10px; }

/* ══ STATS BAR ════════════════════════════════════════════ */
.stats-bar {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 64px;
}
.stat-cell { padding: 40px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(44px, 5.5vw, 68px); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,.55); font-weight: 500; }

/* ══ USP GRID ═════════════════════════════════════════════ */
.usp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.usp-card {
  background: rgba(30,48,64,.45); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 32px;
  transition: background .3s, border-color .3s, transform .3s;
}
.usp-card:hover { background: rgba(30,48,64,.72); border-color: rgba(157,47,37,.35); transform: translateY(-5px); }
.usp-icon { width: 48px; height: 48px; background: rgba(157,47,37,.14); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.usp-icon svg { color: var(--accent); }
.usp-card h3  { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.usp-card p   { font-size: 14px; color: rgba(255,255,255,.58); line-height: 1.68; }

/* ══ TIMELINE ═════════════════════════════════════════════ */
.timeline { position: relative; max-width: 880px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(157,47,37,.08) 100%);
  transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 52px 1fr; gap: 0 20px; margin-bottom: 42px; align-items: start; }
.tl-item:nth-child(odd)  .tl-card  { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd)  .tl-empty { grid-column: 3; }
.tl-item:nth-child(even) .tl-card  { grid-column: 3; }
.tl-item:nth-child(even) .tl-empty { grid-column: 1; }
.tl-dot {
  grid-column: 2; grid-row: 1; width: 44px; height: 44px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 16px; color: var(--white);
  border: 4px solid var(--white); box-shadow: 0 0 0 4px rgba(157,47,37,.22);
  align-self: start; margin-top: 12px; flex-shrink: 0; z-index: 2;
}
.tl-card { background: var(--g100); border-radius: 12px; padding: 22px 26px; border-left: 3px solid var(--accent); transition: box-shadow .3s, transform .3s; }
.tl-item:nth-child(odd) .tl-card { border-left: none; border-right: 3px solid var(--accent); }
.tl-card:hover { transform: scale(1.025); box-shadow: 0 8px 28px rgba(23,33,38,.1); }
.tl-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.tl-card p  { font-size: 13px; color: var(--g600); line-height: 1.65; }
.tl-empty   { min-height: 1px; }

/* ══ MARQUEE ══════════════════════════════════════════════ */
.marquee-wrap { position: relative; overflow: hidden; margin: 40px 0 24px; }
.marquee-wrap::before,
.marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left:  0; background: linear-gradient(to right, var(--g100), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left,  var(--g100), transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mchip {
  display: flex; align-items: center; gap: 10px; padding: 14px 32px;
  background: var(--white); border: 1px solid var(--g200);
  border-radius: 8px; margin-right: 14px; white-space: nowrap;
  font-weight: 700; font-size: 14px; color: var(--ink);
  transition: border-color .3s, color .3s; cursor: default;
}
.mchip:hover { border-color: var(--accent); color: var(--accent); }
.mchip svg { color: var(--accent); }
.mchip--home { border-color: rgba(157,47,37,.35); color: var(--accent); background: rgba(157,47,37,.06); }

/* ══ FAQ ══════════════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--g200); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0; cursor: pointer; font-weight: 600;
  font-size: 16px; color: var(--ink); transition: color var(--ease);
  border: none; background: none; width: 100%; text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 28px; height: 28px; background: var(--g100); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .25s, transform .35s; }
.faq-item.open .faq-icon { background: rgba(157,47,37,.1); transform: rotate(45deg); }
.faq-item.open .faq-q   { color: var(--accent); }
.faq-icon svg { color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 420ms cubic-bezier(.4,0,.2,1); }
.faq-a-inner { padding: 0 0 22px; font-size: 15px; color: var(--g600); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; }

/* ══ CONTACT ══════════════════════════════════════════════ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.55fr; gap: 64px; align-items: start; }
.cinfo-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.cinfo-ico { width: 44px; height: 44px; background: rgba(157,47,37,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cinfo-ico svg { color: var(--accent); }
.cinfo-body strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--g400); margin-bottom: 4px; }
.cinfo-body a, .cinfo-body span { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.6; }
.cinfo-body a:hover { color: var(--accent); }
.wa-cta { margin-top: 28px; }
.form-wrap { background: var(--white); border-radius: 16px; padding: 40px; border: 1px solid var(--g200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--g600); margin-bottom: 6px; }
.fg input, .fg textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--g200);
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--ink); background: var(--white); outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.fg input:focus, .fg textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(157,47,37,.1); }
.fg textarea { resize: vertical; min-height: 118px; }
.form-hint { font-size: 12px; color: var(--g400); margin-bottom: 16px; }
.form-priv { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; font-size: 13px; color: var(--g600); }
.form-priv input { width: auto; margin-top: 2px; flex-shrink: 0; }
.form-priv a:hover { color: var(--accent); }
.btn-submit { width: 100%; padding: 16px; font-size: 15px; justify-content: center; }

/* ══ CTA BANNER ═══════════════════════════════════════════ */
.cta-banner { padding: 80px 0; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(157,47,37,.18) 0%, transparent 65%); pointer-events: none; }
.cta-banner h2   { color: var(--white); max-width: 640px; margin: 0 auto 16px; }
.cta-banner p    { color: rgba(255,255,255,.65); font-size: 17px; margin-bottom: 40px; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ FOOTER ═══════════════════════════════════════════════ */
.site-footer { background: var(--ink); padding: 64px 0 28px; border-top: 3px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand-mark { width: 32px; height: 32px; background: var(--accent); border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.footer-desc    { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.75; margin-bottom: 18px; }
.footer-address { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.85; }
.footer-col h4  { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #d4756d; margin-bottom: 20px; }
.footer-nav li  { margin-bottom: 11px; }
.footer-nav a   { font-size: 14px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; transition: color var(--ease); }
.footer-nav a::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.footer-nav a:hover { color: var(--white); }
.avail-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(157,47,37,.1); border: 1px solid rgba(157,47,37,.3); border-radius: 8px; padding: 12px 16px; margin-bottom: 20px; }
.avail-dot   { width: 10px; height: 10px; background: #22c55e; border-radius: 50%; animation: pulseDot 2.2s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }
.avail-lbl     { font-size: 14px; font-weight: 600; color: var(--white); }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-citem  { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--ease); }
.footer-citem svg { color: #d4756d; flex-shrink: 0; }
.footer-citem a   { color: inherit; }
.footer-citem:hover { color: rgba(255,255,255,.85); }
.footer-hr     { border: none; border-top: 1px solid rgba(255,255,255,.09); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy   { font-size: 13px; color: rgba(255,255,255,.36); }
.footer-legal  { display: flex; gap: 22px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.38); transition: color var(--ease); }
.footer-legal a:hover { color: #d4756d; }

/* ══ MOBILE BAR ═══════════════════════════════════════════ */
.mobile-bar { display: none; }

/* ══ REVEAL ═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); }

/* ══ LEGAL PAGES ══════════════════════════════════════════ */
.copy-content { max-width: 760px; margin: 0 auto; }
.copy-content h2 { font-size: 24px; margin: 48px 0 12px; }
.copy-content h2:first-child { margin-top: 0; }
.copy-content p  { margin-bottom: 16px; color: var(--g600); }
.copy-content a  { color: var(--accent); }

/* ══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .usp-grid     { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .stats-bar    { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { grid-column: span 2; border-top: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 65px; left: 0; right: 0;
    background: rgba(23,33,38,.98); padding: 24px; gap: 20px;
    backdrop-filter: blur(14px); z-index: 999;
  }
  .services-grid { grid-template-columns: 1fr; }
  .stats-bar     { grid-template-columns: 1fr; }
  .stat-cell     { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.1); grid-column: unset !important; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .trust-items   { flex-direction: column; padding: 0 20px; }
  .trust-item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .hero-btns     { flex-direction: column; max-width: 300px; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }

  .timeline::before { left: 20px; }
  .tl-item  { display: block; padding-left: 62px; position: relative; margin-bottom: 32px; }
  .tl-dot   { position: absolute; left: 0; top: 0; width: 40px; height: 40px; font-size: 13px; margin-top: 0; }
  .tl-card  { text-align: left !important; border-right: none !important; border-left: 3px solid var(--accent) !important; }
  .tl-empty { display: none; }

  .mobile-bar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 200;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 10px;
    background: rgba(255,255,255,.97); border: 1px solid rgba(23,33,38,.08); border-radius: 10px;
    box-shadow: 0 16px 36px rgba(23,33,38,.18), 0 0 0 1px rgba(23,33,38,.05);
    backdrop-filter: blur(12px);
  }
  .mobile-bar .btn { min-height: 44px; padding: 10px 8px; font-size: .82rem; gap: 5px; justify-content: center; }
}
@media (max-width: 440px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(32px, 11vw, 52px); }
}

/* ══ SCROLL PROGRESS BAR ══════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #e06b5f 50%, #d4756d 100%);
  transform-origin: left; transform: scaleX(0);
  z-index: 2001; pointer-events: none; will-change: transform;
}

/* ══ NAV HAMBURGER ANIMATION ══════════════════════════════ */
.nav-toggle span { transition: transform .28s ease, opacity .22s ease, background .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ STORY / FAMILIENBETRIEB ══════════════════════════════ */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-img-wrap {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(23,33,38,.2);
}
.story-img-wrap img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.story-img-wrap:hover img { transform: scale(1.05); }
.story-img-badge {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--accent); color: var(--white);
  border-radius: var(--radius); padding: 12px 22px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(157,47,37,.45);
}
.story-img-years {
  position: absolute; top: 28px; right: 28px;
  background: rgba(23,33,38,.82); backdrop-filter: blur(10px);
  color: var(--white); border-radius: 12px; padding: 16px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,.12);
}
.story-img-years strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 800;
  color: var(--accent); display: block; line-height: 1;
}
.story-img-years span { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.story-text blockquote {
  border-left: 4px solid var(--accent); padding-left: 24px;
  font-size: 19px; font-style: italic; color: var(--ink);
  margin: 28px 0; line-height: 1.65; font-weight: 500;
}
.story-text p { color: var(--g600); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.story-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.story-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 100px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  transition: border-color .25s, color .25s, transform .2s;
}
.story-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.story-pill svg { color: var(--accent); flex-shrink: 0; }

/* ══ PHOTO GRID ═══════════════════════════════════════════ */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px; margin-top: 48px;
}
.photo-grid-item {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; background: var(--g200);
}
.photo-grid-item:first-child { grid-row: span 2; }
.photo-grid-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .75s cubic-bezier(.25,.46,.45,.94);
}
.photo-grid-item:hover img { transform: scale(1.07); }
.photo-grid-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,33,38,.5) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.photo-grid-item:hover::after { opacity: 1; }

/* ══ TRUST PILLS MINI ═════════════════════════════════════ */
.mini-trust { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.mini-trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--g200);
  border-radius: 100px; padding: 10px 20px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 8px rgba(23,33,38,.06);
  transition: border-color .25s, color .25s, transform .2s, box-shadow .2s;
}
.mini-trust-item:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(157,47,37,.12); }
.mini-trust-item svg { color: var(--accent); }

/* ══ SECTION DIVIDER ══════════════════════════════════════ */
.section-divider {
  display: block; width: 52px; height: 4px;
  background: var(--accent); border-radius: 2px; margin: 0 0 24px;
}
.section-header.centered .section-divider { margin: 0 auto 24px; }

/* ══ HIGHLIGHT TEXT ═══════════════════════════════════════ */
.text-accent { color: var(--accent); }
.text-highlight {
  position: relative; display: inline;
}
.text-highlight::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 3px; height: 8px;
  background: rgba(157,47,37,.15); z-index: -1; border-radius: 2px;
  transform: skewX(-4deg);
}

/* ══ ENHANCED SVCCARD HOVER (icon pulse) ══════════════════ */
@keyframes iconPop {
  0%   { transform: scale(1);   }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1);   }
}
.svc-card:hover .svc-icon { animation: iconPop .45s ease-out; }

/* ══ FLOATING PARTICLES IN HERO ═══════════════════════════ */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.2);
  animation: particleDrift var(--dur,12s) ease-in-out infinite;
  animation-delay: var(--del,0s);
}
@keyframes particleDrift {
  0%   { transform: translate(0,0); opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: .6; }
  100% { transform: translate(var(--dx,20px), var(--dy,-80px)); opacity: 0; }
}

/* ══ HERO SCROLL INDICATOR IMPROVED ══════════════════════ */
.hero-scroll { cursor: pointer; }
.hero-scroll:hover { color: rgba(255,255,255,.75); }

/* ══ SHIMMER PLACEHOLDER ══════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.img-shimmer {
  background: linear-gradient(90deg, var(--g100) 25%, var(--g200) 37%, var(--g100) 63%);
  background-size: 600px 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

/* ══ COUNTER BADGE IN DARK SECTION ═══════════════════════ */
.stat-cell .stat-suffix { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 50px); font-weight: 800; color: var(--accent); }

/* ══ RESPONSIVE – STORY & PHOTO GRID ══════════════════════ */
@media (max-width: 1024px) {
  .story-grid { gap: 48px; }
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-wrap img { height: 340px; }
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .photo-grid-item:first-child { grid-column: span 2; grid-row: unset; }
}
@media (max-width: 640px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-grid-item:first-child { grid-column: unset; }
  .photo-grid-item img { min-height: 220px; }
  .story-img-wrap img { height: 260px; }
  .story-text blockquote { font-size: 16px; }
  .mini-trust { gap: 8px; }
  .mini-trust-item { font-size: 12px; padding: 8px 14px; }
}
