/* ═══════════════════════════════════════════
   360 Business Planer — styles.css
   Sofinnova-style: massive type, line reveals,
   circle wipe, snap slides, vector field
═══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #ffffff;
  color: #1F3B5B;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ══════════════════════════════════════════
   PAGE LOADER  —  SVG ring reveal
   Adapted from Flow-Design-Studio concept
══════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #162A40;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ── Ring container ── */
.loader-rings {
  position: relative;
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* outer ring: CW   r=44 → circumference ≈ 276.5 */
.loader-ring-outer {
  stroke-dasharray: 276.5;
  stroke-dashoffset: 276.5;
  transform: rotate(-90deg);
  transform-origin: 50px 50px;
  animation: loaderDrawCW 1.2s cubic-bezier(.65,0,.35,1) .05s forwards;
}
/* inner ring: CCW  r=36 → circumference ≈ 226.2 */
.loader-ring-inner {
  stroke-dasharray: 226.2;
  stroke-dashoffset: -226.2;
  transform: rotate(-90deg);
  transform-origin: 50px 50px;
  animation: loaderDrawCCW 1.4s cubic-bezier(.65,0,.35,1) .2s forwards;
}
@keyframes loaderDrawCW  { to { stroke-dashoffset: 0; } }
@keyframes loaderDrawCCW { to { stroke-dashoffset: 0; } }

/* ── "360°" centre text ── */
.loader-360 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  opacity: 0;
  transform: scale(.8);
  animation: loaderPopIn .45s cubic-bezier(.16,1,.3,1) .6s forwards;
  position: relative;
  z-index: 2;
}
@keyframes loaderPopIn { to { opacity: 1; transform: scale(1); } }

/* ── Brand name + accent line ── */
.loader-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  opacity: 0;
  transform: translateY(10px);
  animation: loaderSlideUp .5s cubic-bezier(.16,1,.3,1) 1.25s forwards;
}
.loader-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.loader-brand-line {
  display: block;
  height: 1.5px;
  width: 0;
  background: hsl(335,52%,70%);
  animation: loaderLineGrow .4s cubic-bezier(.16,1,.3,1) 1.45s forwards;
}
@keyframes loaderSlideUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes loaderLineGrow { to { width: 48px; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --navy:      #1F3B5B;
  --navy-deep: #162A40;
  --accent:    #4E7DA6;
  --pink:      #DA8CAD;
  --pink-dark: #C4718F;
  --pink-soft: hsl(335,52%,96%); /* very pale pink — from Flow-Design-Studio muted */
  --white:     #ffffff;
  --gray:      #F4F6F8;
  --muted:     #64748b;
  --font-disp: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-77:   cubic-bezier(0.77, 0, 0.175, 1);
  --radius-xl: 24px;
  --side:      clamp(24px, 5vw, 80px);
}

/* ── Custom scrollbar (premium feel, from Flow-Design-Studio) ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: rgba(31,59,91,.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* ── Line reveal container ── */
.line-wrap {
  overflow: clip;
  overflow-clip-margin: 0.35em;
  display: block;
}
.line-inner {
  display: block;
  transform: translateY(160%);
  transition: transform 0.55s var(--ease-out);
}
.line-inner.revealed {
  transform: translateY(0);
}

/* ── Reveal up (generic) ── */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: 0.08s;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 88px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(31,59,91,0.08);
  backdrop-filter: blur(12px);
}
.hdr-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hdr-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 8px;
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 44px;
  align-items: stretch;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hdr-menu > span { width: 100%; }
@media (max-width: 900px) {
  .hdr-menu { display: flex; }
}
.hdr-menu span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease-77), opacity 0.3s;
}
.hdr-menu.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hdr-menu.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }
/* When menu open: hamburger turns into white X (visible over dark overlay) */
.hdr-menu.open span { background: var(--white); }
/* Hamburger button stays clickable above the overlay */
.hdr-menu { position: relative; z-index: 251; }

.hdr-logo img { height: 46px; width: auto; }

.hdr-cta {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--pink);
  color: var(--white);
  border-radius: 100px;
  padding: 13px 30px;
  box-shadow: 0 6px 18px rgba(218,140,173,0.35);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hdr-cta:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(218,140,173,0.45);
}

/* Mobile overlay — sits BELOW the fixed header so the hamburger X stays clickable.
   Header becomes transparent when menu open so the dark overlay shows through. */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-77), visibility 0s linear 0.4s;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.4s var(--ease-77), visibility 0s linear 0s;
}

/* Scroll lock when menu is open — html-level overflow lock works reliably on iOS */
html.menu-locked,
html.menu-locked body {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none;
}

/* Body lock state — header transparent so menu visually unifies, header items hidden */
body.menu-open .site-header {
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
body.menu-open .hdr-logo,
body.menu-open .hdr-cta,
body.menu-open .hdr-nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
}
.mobile-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}
.mob-link {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.mob-link:hover { color: var(--white); }
.mob-cta {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--pink);
  border-radius: 100px;
  padding: 14px 36px;
  margin-top: 16px;
}

/* ══════════════════════════════════════════
   HERO — Full dark, Obys/Studio Freight style
   Inspired by: locomotive.ca · obys.agency
   · studiofreight.com Playwright analysis
══════════════════════════════════════════ */

/* Expo easing — Studio Freight's primary */
:root { --ease-expo: cubic-bezier(0.19, 1, 0.22, 1); }

.s-hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 96px clamp(32px, 6vw, 96px) 52px;
}

/* ── Grain texture overlay ── */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
}

/* ── Top bar ── */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease-expo) 0.25s forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Portrait card — absolute, top right ── */
.hero-card {
  position: absolute;
  top: 96px;
  right: clamp(32px, 6vw, 96px);
  width: clamp(260px, 30vw, 430px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  z-index: 2;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s var(--ease-expo) 0.35s;
}
.hero-card.revealed { clip-path: inset(0 0% 0 0); }
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.92;
  transform: scale(1.04);
  transition: transform 2s var(--ease-expo) 0.3s;
}
.hero-card.revealed .hero-photo { transform: scale(1); }
.hero-card-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(22,42,64,0.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hcm-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
}
.hcm-role {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Giant headline — fills center zone ── */
.hero-body {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 3;
  padding-bottom: 8px;
}
.hero-headline { margin: 0; }
.hero-l1,
.hero-l2 {
  font-family: var(--font-disp);
  font-size: clamp(4.6rem, 9.5vw, 11.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  display: block;
}
.hero-l2 { transition-delay: 0.11s; }
.hero-l3 {
  font-family: var(--font-disp);
  font-size: clamp(4rem, 8vw, 9.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--pink);
  display: block;
  transition-delay: 0.22s;
}

/* ── Floor bar: desc + CTAs ── */
.hero-floor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 3;
  margin-top: 8px;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 400px;
  margin: 0;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.hero-btn-prim {
  display: inline-flex;
  align-items: center;
  background: var(--pink);
  color: var(--white);
  border-radius: 100px;
  padding: 13px 30px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-btn-prim:hover { background: var(--white); color: var(--navy); }
.hero-btn-sec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color 0.22s, border-color 0.22s;
}
.hero-btn-sec:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}

/* ── Scroll hint (dark bg) ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-label { color: rgba(255,255,255,0.22); }
.hero-scroll-chevron { color: var(--pink); animation: scrollBounce 2s ease-in-out infinite; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.s-about {
  display: grid;
  grid-template-columns: 1fr;
  background: #F5F3F0;
  overflow: hidden;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  padding: 80px clamp(24px, 5vw, 80px);
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* Decorative 360° watermark */
.about-content::before {
  content: '360°';
  position: absolute;
  font-family: var(--font-disp);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(31,59,91,0.035);
  bottom: -1.5rem;
  right: clamp(24px, 5vw, 80px);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.about-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.about-left { display: flex; flex-direction: column; justify-content: center; }
.about-right { display: flex; flex-direction: column; justify-content: center; }
.about-quote-wrap {
  margin-bottom: 36px;
}
.about-q1, .about-q2, .about-q3 {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.about-q2 { transition-delay: 0.12s; }
.about-q3 { transition-delay: 0.24s; font-style: italic; color: var(--pink); }

.about-body {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease-out) 0.12s, transform 0.45s var(--ease-out) 0.12s;
}
.about-body.visible { opacity: 1; transform: translateY(0); }
.about-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.btn-inline {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.25s, border-color 0.25s;
}
.btn-inline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.35s var(--ease-out);
}
.btn-inline:hover { color: var(--pink); border-color: var(--pink); }
.btn-inline:hover::after { width: 100%; }

/* ══════════════════════════════════════════
   CIRCLE WIPE TRANSITION
══════════════════════════════════════════ */
.s-wipe {
  height: 180vh;
  position: relative;
}
.wipe-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
}
.wipe-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  clip-path: circle(0% at 50% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: clip-path 0.05s linear;
}

/* Giant decorative watermark */
.wipe-deco {
  position: absolute;
  font-family: var(--font-disp);
  font-size: clamp(16rem, 38vw, 52rem);
  font-weight: 900;
  color: var(--pink);
  opacity: 0.07;
  line-height: 1;
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  white-space: nowrap;
}

.wipe-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.wipe-overlay.label-visible .wipe-label { opacity: 1; }

.wipe-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s 0.15s, transform 0.6s var(--ease-out) 0.15s;
}
.wipe-overlay.label-visible .wipe-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.wipe-title-wrap {
  overflow: hidden;
  line-height: 0.88;
}
.wipe-title-line {
  display: block;
  font-family: var(--font-disp);
  font-size: clamp(4rem, 10vw, 13rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 0.9;
  transform: translateY(108%);
  transition: transform 0.85s var(--ease-out) 0.2s;
}
.wipe-title-italic {
  font-style: italic;
  color: var(--pink);
  transition: transform 0.85s var(--ease-out) 0.32s;
}
.wipe-overlay.label-visible .wipe-title-line {
  transform: translateY(0);
}

.wipe-label-hr {
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 28px auto;
  transition: width 0.8s var(--ease-out) 0.55s;
}
.wipe-overlay.label-visible .wipe-label-hr { width: 160px; }

.wipe-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s 0.75s;
}
.wipe-overlay.label-visible .wipe-tagline { opacity: 1; }

/* ══════════════════════════════════════════
   SERVICES — clean numbered rows
══════════════════════════════════════════ */
.s-services {
  background: var(--navy);
  padding: 100px clamp(24px, 5vw, 80px);
  position: relative;
}
.srv-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.srv-hd {
  margin-bottom: 72px;
}
.srv-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.srv-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--white);
}
.srv-heading em {
  font-style: italic;
  color: var(--pink);
}
.srv-rows {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.srv-row {
  display: grid;
  grid-template-columns: clamp(56px, 8vw, 96px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  transition: border-color 0.3s;
}
.srv-row:hover {
  border-color: rgba(218,140,173,0.2);
}
.srv-row-num {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--pink);
  line-height: 1;
  padding-top: 4px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.srv-row:hover .srv-row-num {
  opacity: 1;
}
.srv-row-title {
  font-family: var(--font-disp);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
  transition: color 0.25s;
}
.srv-row:hover .srv-row-title {
  color: var(--pink);
}
.srv-row-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin-bottom: 18px;
}
.srv-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}
.srv-row-tags li {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 3px 11px;
}

/* ══════════════════════════════════════════
   STATS — horizontal strip
══════════════════════════════════════════ */
.s-stats {
  background: var(--white);
  padding: 56px clamp(24px, 5vw, 80px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
}
.stat-block {
  padding: 0 clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(31,59,91,0.08);
}
.stat-block:first-child { padding-left: 0; }
.stat-block:last-child { border-right: none; }
.stat-label-top {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}
.stat-number-wrap {
  overflow: hidden;
  padding-top: 0.18em;
}
.stat-num-inner {
  font-family: var(--font-disp);
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}
.stat-unit {
  font-size: clamp(1.2rem, 2.5vw, 2.8rem);
  font-weight: 700;
  color: var(--pink);
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.s-process {
  background: #F5F3F0;
  padding: 100px clamp(24px, 5vw, 80px);
  border-top: none;
}
.proc-header {
  margin-bottom: 72px;
  overflow: clip;
  overflow-clip-margin: 0.35em;
}
.proc-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 5.4vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--navy);
}
.proc-list {
  display: flex;
  flex-direction: column;
}
.proc-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
}
.proc-item + .proc-item { border-top: 1px solid rgba(31,59,91,0.1); }
.proc-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  /* pill badge — from Flow-Design-Studio icon-box idea */
  background: rgba(218,140,173,.12);
  border: 1px solid rgba(218,140,173,.25);
  border-radius: 100px;
  padding: 5px 10px;
  width: fit-content;
  align-self: flex-start;
}
.proc-hr {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--accent));
  margin-bottom: 16px;
  transition: width 0.6s var(--ease-out) 0.2s;
}
.proc-item.visible .proc-hr { width: 40px; }
.proc-content h3 {
  font-family: var(--font-disp);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.proc-content p {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ══════════════════════════════════════════
   TESTIMONIAL — centered full-width
══════════════════════════════════════════ */
.s-testimonial {
  background: var(--pink-soft);
  padding: 100px clamp(24px, 5vw, 80px);
  text-align: center;
}
.testi-inner {
  max-width: 860px;
  margin: 0 auto;
}
.testi-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 40px;
}
.testi-quote {
  font-family: inherit;
  margin-bottom: 48px;
}
.tq-l1, .tq-l2, .tq-l3, .tq-l4 {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  line-height: 1.18;
}
.tq-l2 { transition-delay: 0.08s; }
.tq-l3 { transition-delay: 0.16s; }
.tq-l4 { transition-delay: 0.24s; }
.testi-attr {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.testi-attr-line {
  width: 32px;
  height: 1.5px;
  background: var(--pink);
  display: block;
  flex-shrink: 0;
}
.testi-attr-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
}
.testi-attr-name {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.testi-attr-role {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   NEWS / FAQ
══════════════════════════════════════════ */
.s-news {
  background: var(--white);
  padding: 100px clamp(24px, 5vw, 80px);
}
.news-heading {
  overflow: clip;
  overflow-clip-margin: 0.35em;
  margin-bottom: 64px;
}
.news-heading .line-inner {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 5.4vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--navy);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Cards inspired by Flow-Design-Studio FeatureGrid */
.news-item {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(218,140,173,.12);
  border-radius: var(--radius-xl, 24px);
  box-shadow: 0 2px 16px rgba(31,59,91,.06);
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.news-item:hover {
  box-shadow: 0 8px 32px rgba(218,140,173,.2);
  transform: translateY(-3px);
}
.news-hr {
  width: 0;
  height: 2px;
  background: var(--pink);
  margin-bottom: 14px;
  transition: width 0.5s var(--ease-out) 0.1s;
}
.news-item.visible .news-hr { width: 32px; }
.news-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.news-item h3 {
  font-family: var(--font-disp);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.news-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.s-contact {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
  padding: 100px clamp(24px, 5vw, 80px);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 55%;
  opacity: 0.6;
  pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  align-items: center;
  padding-top: 160px; /* canvas area */
}
.ct-l1, .ct-l2, .ct-l3 {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--white);
}
.ct-l2 { transition-delay: 0.12s; }
.ct-l3 { transition-delay: 0.24s; }
.contact-plus {
  font-family: var(--font-disp);
  font-size: clamp(4rem, 10vw, 12rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 0.9;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}
.contact-plus.visible { opacity: 1; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-full { margin-bottom: 16px; }
.cf-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.cf-field input,
.cf-field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.22s, background 0.22s;
  width: 100%;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--pink);
  background: rgba(218,140,173,0.08);
}
.cf-field textarea { resize: vertical; min-height: 88px; }
.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  flex: 1;
}
.cf-check input[type="checkbox"] {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}
.cf-check a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cf-submit {
  background: var(--white);
  color: var(--navy);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.22s;
  white-space: nowrap;
}
.cf-submit:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info a,
.contact-info span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 28px clamp(24px, 5vw, 80px);
  border-top: 2px solid var(--pink);
}
.ftr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.ftr-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.ftr-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ftr-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.ftr-links a:hover { color: var(--pink); }
.ftr-social {
  display: flex;
  gap: 16px;
}
.ftr-social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s, transform 0.2s;
  display: flex; align-items: center;
}
.ftr-social a:hover { color: var(--pink); transform: translateY(-2px); }
.ftr-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hero */
  .s-hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vw; min-height: 280px; }
  .hero-left { padding: 100px clamp(24px, 5vw, 60px) 60px; }
  .hero-scroll-hint { left: 50%; }

  /* About */
  .about-content { grid-template-columns: 1fr; padding: 64px 40px; }
  .about-image { height: 260px; }

  /* Stats: 2x2 on tablet */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 24px clamp(16px, 3vw, 32px); border-bottom: 1px solid rgba(31,59,91,0.08); }
  .stat-block:nth-child(2n) { border-right: none; }
  .stat-block:nth-child(3),
  .stat-block:nth-child(4) { border-bottom: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Scroll indicator ── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: heroScrollIn .6s var(--ease-expo) 2s forwards;
  pointer-events: none;
}
@keyframes heroScrollIn { to { opacity: 1; } }

.hero-scroll-label {
  font-family: var(--font-body);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
}
.hero-scroll-chevron {
  color: var(--pink);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Header: dark hero → nav white */
.site-header:not(.scrolled) .hdr-logo { filter: brightness(0) invert(1); }

/* ══════════════════════════════════════════
   ABOUT — PHOTO instead of lines
══════════════════════════════════════════ */
.about-image {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 50vw, 640px);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.about-image.visible img { transform: scale(1); }

.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 32px 28px;
  background: linear-gradient(to top, rgba(22,42,64,0.8) 0%, transparent 100%);
  border-bottom: 3px solid var(--pink);
}
.about-img-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════════
   TESTIMONIAL PORTRAIT
══════════════════════════════════════════ */
.testi-portrait-wrap {
  width: 220px;
  aspect-ratio: 3/4;
  border-radius: var(--radius, 12px);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(31,59,91,0.2);
  flex-shrink: 0;
}
.testi-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testi-photo-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ══════════════════════════════════════════
   TEAM PHOTO STRIP
══════════════════════════════════════════ */
.s-team-strip {
  background: var(--white);
  padding: 80px clamp(24px, 5vw, 80px);
  border-top: 1px solid rgba(218,140,173,.1);
}
.team-strip-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 40px;
}
.team-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.team-photo-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-photo-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  filter: grayscale(20%);
  transition: filter 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.team-photo-item:hover img {
  filter: grayscale(0%);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(218,140,173,0.2);
}
.team-photo-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.3;
}
.team-photo-role {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   CLIENT MARQUEE
══════════════════════════════════════════ */
.s-marquee {
  background: var(--navy-deep);
  padding: 60px 0;
  border-top: none;
  border-bottom: none;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 32px;
}
.marquee-track-wrap {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-name {
  font-family: var(--font-disp);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  padding: 0 32px;
  transition: color 0.25s;
}
.marquee-name:hover { color: rgba(255,255,255,0.9); }
.marquee-sep {
  font-size: 1.5rem;
  color: var(--pink);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}


@media (max-width: 768px) {
  .site-header { padding: 0 24px; }

  /* Hero mobile: stack text above photo */
  .hero-left { padding: 100px 24px 48px; }
  .hero-l1, .hero-l2 { font-size: clamp(3.5rem, 16vw, 7rem); }
  .hero-l3 { font-size: clamp(2.8rem, 12vw, 5.5rem); }
  .hero-right { height: 60vw; min-height: 240px; order: -1; margin-top: 72px; }
  .hero-scroll-hint { display: none; }

  .srv-row { grid-template-columns: 44px 1fr; gap: 16px; padding: 32px 0; }
  .srv-row-num { font-size: 1.4rem; }

  /* Stats mobile: 1 column */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(31,59,91,0.08); }
  .stat-block:last-child { border-bottom: none; }

  .proc-item { grid-template-columns: 48px 1fr; }

  .news-grid { grid-template-columns: 1fr; }

  .contact-inner { padding-top: 100px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-footer { flex-direction: column; align-items: flex-start; }
  .cf-submit { width: 100%; justify-content: center; }

  .ftr-inner { flex-direction: column; align-items: flex-start; }

  .about-image { height: 220px; }
}

/* ══════════════════════════════════════════
   SUBPAGE SHARED STYLES
══════════════════════════════════════════ */

/* Page hero (dark, no photo) */
.s-page-hero {
  min-height: 58vh;
  padding-top: 72px;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
  padding-bottom: 72px;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.s-page-hero::before {
  content: attr(data-deco);
  position: absolute;
  font-family: var(--font-disp);
  font-size: clamp(14rem, 32vw, 44rem);
  font-weight: 900;
  color: rgba(78,125,166,0.06);
  line-height: 1;
  letter-spacing: -0.06em;
  right: -2vw;
  bottom: -0.15em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.ph-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.1s, transform 0.5s var(--ease-out) 0.1s;
}
.ph-eyebrow.revealed { opacity: 1; transform: translateY(0); }
.ph-headline {
  font: inherit;
  margin: 0;
  padding: 0;
  display: block;
}
.ph-l1 {
  font-family: var(--font-disp);
  font-size: clamp(3.5rem, 9vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  transition-delay: 0.15s;
}
.ph-l2 {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 7vw, 9rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--pink);
  transition-delay: 0.28s;
}
.ph-hr {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--pink) 0%, rgba(255,255,255,0.06) 100%);
  margin-top: 56px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.5s;
}
.ph-hr.revealed { transform: scaleX(1); }

/* Desktop nav links (subpages) */
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hdr-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  white-space: nowrap;
}
/* Mittlerer Desktop-Bereich: Nav etwas kompakter, damit sie sauber
   in eine Zeile passt, bevor der Burger ab 1080px übernimmt. */
@media (max-width: 1240px) {
  .hdr-nav { gap: 26px; }
  .hdr-nav a { font-size: 0.92rem; }
}
.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.3s var(--ease-out);
}
.hdr-nav a:hover { opacity: 1; }
.hdr-nav a:hover::after { width: 100%; }
.hdr-nav a.active { opacity: 1; font-weight: 600; }
.hdr-nav a.active::after { width: 100%; }
.site-header:not(.scrolled) .hdr-nav a { color: rgba(255,255,255,0.88); }
.site-header:not(.scrolled) .hdr-nav a:hover { color: var(--white); opacity: 1; }
@media (max-width: 1080px) { .hdr-nav { display: none; } }

/* Section intro label */
.sec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  display: block;
}

/* ── WER WIR SIND ── */
.s-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--white);
}
.phil-img {
  position: relative;
  overflow: hidden;
}
.phil-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease-out);
}
.phil-img.visible img { transform: scale(1); }
.phil-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 32px 32px;
  background: linear-gradient(to top, rgba(22,42,64,0.75), transparent);
}
.phil-img-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.phil-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 6vw, 80px);
}
.phil-quote {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 32px;
}
.phil-quote em { font-style: italic; color: var(--pink); }
.phil-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Team grid */
.s-team-full {
  background: var(--gray);
  padding: 100px clamp(24px, 5vw, 80px);
}
.team-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31,59,91,0.12);
}
.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: filter 0.4s, transform 0.5s var(--ease-out);
}
.team-card:hover .team-card-img img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.team-card-body {
  padding: 20px 24px 24px;
}
.team-card-name {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.team-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.team-card-lead {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team-card-lead .team-card-img { aspect-ratio: auto; min-height: 380px; }
.team-card-lead .team-card-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-card-lead .team-card-name { font-size: 1.4rem; margin-bottom: 6px; }

/* ── WAS WIR TUN ── */
.s-services-list {
  background: var(--white);
  padding: 100px clamp(24px, 5vw, 80px);
}
.srv-list-heading {
  overflow: clip;
  overflow-clip-margin: 0.35em;
  margin-bottom: 72px;
}
.srv-list-heading .line-inner {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 7vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--navy);
}
.srv-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(31,59,91,0.1);
}
.srv-detail-item {
  padding: 48px 40px 48px 0;
  border-bottom: 1px solid rgba(31,59,91,0.08);
  transition: background 0.3s;
}
.srv-detail-item:hover { background: var(--gray); }
.srv-detail-item + .srv-detail-item { padding-left: 40px; border-left: 1px solid rgba(31,59,91,0.08); }
.srv-detail-item:nth-child(3n+1) { padding-left: 0; border-left: none; }
.srv-detail-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.srv-detail-hr {
  width: 0;
  height: 2px;
  background: var(--navy);
  margin-bottom: 20px;
  transition: width 0.55s var(--ease-out) 0.1s;
}
.srv-detail-item.visible .srv-detail-hr { width: 32px; }
.srv-detail-item h3 {
  font-family: var(--font-disp);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.srv-detail-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.srv-detail-item ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.srv-detail-item li {
  font-size: 0.8rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.srv-detail-item li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}
.s-industries {
  background: var(--navy);
  padding: 80px clamp(24px, 5vw, 80px);
}
.ind-heading {
  overflow: clip;
  overflow-clip-margin: 0.35em;
  margin-bottom: 48px;
}
.ind-heading .line-inner {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
}
.ind-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ind-tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 20px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: default;
}
.ind-tag:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(78,125,166,0.15);
}

/* ── Resource Link List (Accordion-05 style) ── */
.res-list {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.res-link {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  cursor: pointer;
  transition: padding-left 0.3s var(--ease-out);
}
.res-link:hover { padding-left: 8px; }
.res-num {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  font-variant-numeric: tabular-nums;
  min-width: 24px;
  transition: color 0.25s;
}
.res-title {
  flex: 1;
  font-family: var(--font-disp);
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  transition: color 0.25s var(--ease-out);
}
.res-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.25s, transform 0.25s var(--ease-out);
  transform: translateX(0) translateY(0);
}
.res-link:hover .res-num  { color: rgba(255,255,255,0.5); }
.res-link:hover .res-title { color: var(--white); }
.res-link:hover .res-arrow {
  color: var(--pink, #DA8CAD);
  transform: translateX(4px) translateY(-4px);
}
.res-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 32px 0 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.res-list > .res-category:first-child { padding-top: 0; }

/* ── FINANZPOWER ── */
.s-book-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--white);
  overflow: hidden;
}
.book-visual {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2a4f76 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
.book-visual::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(218,140,173,0.08);
  pointer-events: none;
}
.book-visual::after {
  content: 'FINANZ\APOWER';
  white-space: pre;
  position: absolute;
  font-family: var(--font-disp);
  font-size: clamp(8rem, 14vw, 18rem);
  font-weight: 900;
  color: rgba(78,125,166,0.07);
  line-height: 0.85;
  letter-spacing: -0.05em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.book-cover-img {
  position: relative;
  z-index: 2;
  width: clamp(200px, 34vw, 380px);
  height: auto;
  border-radius: 6px;
  transform: rotate(-3deg);
  transition: transform 0.4s var(--ease-out);
}
.book-visual:hover .book-cover-img {
  transform: rotate(-1deg) scale(1.03);
}
.book-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 6vw, 80px);
}
.book-content h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.book-content h2 em {
  font-style: italic;
  color: var(--pink, #DA8CAD);
}
.book-content p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.book-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.book-theme-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(78,125,166,0.08);
  border-radius: 100px;
  padding: 5px 14px;
  border: 1px solid rgba(78,125,166,0.15);
  transition: background 0.2s, color 0.2s;
}
.book-theme-tag:hover {
  background: rgba(78,125,166,0.15);
  color: var(--navy);
}
.book-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink, #DA8CAD);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px !important;
}

/* ── FINANZPOWER QUOTE ── */
.s-fp-quote {
  background: var(--navy-deep, #162A40);
  padding: 100px clamp(24px,5vw,80px);
  display: flex;
  justify-content: center;
}
.fp-quote-inner {
  max-width: 780px;
  text-align: center;
  position: relative;
}
.fp-quote-mark {
  font-family: var(--font-disp);
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(218,140,173,0.2);
  margin-bottom: 16px;
  pointer-events: none;
}
.fp-quote-inner blockquote {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.fp-quote-inner cite {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(218,140,173,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.25s, transform 0.25s;
  width: fit-content;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

/* Downloads */
.s-downloads {
  background: var(--gray);
  padding: 100px clamp(24px, 5vw, 80px);
}
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.dl-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(31,59,91,0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31,59,91,0.1);
}
.dl-icon {
  width: 44px; height: 44px;
  background: rgba(78,125,166,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-disp);
}
.dl-title {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.dl-format {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.dl-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.dl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  margin-top: auto;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  min-width: 160px;
  transition: background 0.25s, transform 0.2s;
  user-select: none;
}
.dl-btn:hover { background: var(--accent); transform: translateY(-1px); }

/* Progress bar fill */
.dl-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: var(--accent);
  transition: width 0.2s ease;
  z-index: 0;
  border-radius: 100px;
}
.dl-btn-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Loading state – faded background so the fill bar shows */
.dl-btn--loading {
  background: rgba(31,59,91,0.5);
  pointer-events: none;
}
.dl-btn--loading:hover { transform: none; }

/* Done state – accent green */
.dl-btn--done {
  background: rgba(31,59,91,0.5);
  pointer-events: none;
}
.dl-btn--done .dl-bar { background: #34d399; }

/* Complete / reset */
.dl-btn--complete { background: var(--navy); }

/* Spinner animation */
.dl-spin {
  animation: dl-rotate 0.8s linear infinite;
  flex-shrink: 0;
}
@keyframes dl-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Cinematic Text Reveal ── */
@keyframes cinematic-reveal {
  0%   { opacity: 0; filter: blur(12px); transform: translateY(40%) scale(1.1); }
  50%  { opacity: 0.7; filter: blur(4px); }
  100% { opacity: 1; filter: blur(0px); transform: translateY(0) scale(1); }
}
.cin-char {
  display: inline-block;
  opacity: 0;
  animation: cinematic-reveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards paused;
  animation-delay: calc(0.045s * var(--cin-i));
  will-change: transform, opacity, filter;
}
@media (prefers-reduced-motion: reduce) {
  .cin-char { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
}
.dl-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(31,59,91,0.08);
  margin-top: 80px;
}
.dl-stat {
  padding: 32px 0 32px 40px;
  border-right: 1px solid rgba(31,59,91,0.08);
}
.dl-stat:first-child { padding-left: 0; }
.dl-stat:last-child { border-right: none; }
.dl-stat-num {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.dl-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ── NEWS ── */
.s-news-full {
  background: var(--white);
  padding: 100px clamp(24px, 5vw, 80px);
}
.news-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(31,59,91,0.1);
  margin-top: 64px;
}
.news-card {
  padding: 40px 36px 40px 0;
  border-bottom: 1px solid rgba(31,59,91,0.08);
  transition: background 0.3s;
}
.news-card:hover { background: rgba(244,246,248,0.5); }
.news-card + .news-card { padding-left: 36px; border-left: 1px solid rgba(31,59,91,0.08); }
.news-card:nth-child(3n+1) { padding-left: 0; border-left: none; }
.news-card-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.news-card-date {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.news-card h3 {
  font-family: var(--font-disp);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.2s;
}
.news-card:hover h3 { color: var(--accent); }
.news-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
.news-card-read {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(31,59,91,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.news-card-read:hover { color: var(--accent); border-color: var(--accent); }

/* ── TAX TV ── */
.s-tv-featured {
  background: var(--navy-deep);
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.s-tv-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(78,125,166,0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(218,140,173,0.08), transparent 60%);
  pointer-events: none;
}
.tv-featured-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}
.tv-featured-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.tv-feat-label {
  color: var(--pink) !important;
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.tv-featured-title {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.08;
  margin: 0 0 18px;
}
.tv-featured-excerpt {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 16px;
  max-width: 680px;
}
.tv-feat-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.tv-feat-dot { opacity: 0.5; }

.tv-featured-player {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.3);
  background: #000;
}
.tv-feat-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.tv-feat-poster-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: block;
}
.tv-feat-poster-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}
.tv-feat-poster-btn:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.tv-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,44,0.15) 0%, rgba(15,27,44,0.55) 100%);
  pointer-events: none;
}
.tv-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(72px, 9vw, 96px);
  height: clamp(72px, 9vw, 96px);
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 14px 40px rgba(218,140,173,0.5), 0 0 0 0 rgba(218,140,173,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.tv-feat-poster-btn:hover .tv-featured-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 18px 50px rgba(218,140,173,0.65), 0 0 0 12px rgba(218,140,173,0.18);
}
.tv-featured-play svg {
  width: 38%;
  height: 38%;
  margin-left: 5%;
}
.tv-feat-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15,27,44,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tv-feat-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tv-ep-title {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}
.tv-ep-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  max-width: 860px;
  margin: 12px auto 0;
  line-height: 1.7;
}
.s-tv-list {
  background: var(--white);
  padding: 80px clamp(24px, 5vw, 80px);
}
.tv-episodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.tv-ep-card {
  background: var(--gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.tv-ep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31,59,91,0.12);
}
.tv-ep-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tv-ep-thumb canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tv-play-btn {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s, transform 0.2s;
}
.tv-ep-card:hover .tv-play-btn {
  background: var(--accent);
  transform: scale(1.1);
}
.tv-play-btn svg { color: white; margin-left: 3px; }
.tv-ep-info { padding: 20px 24px 24px; }
.tv-ep-info .news-card-cat { margin-bottom: 6px; }
.tv-ep-info h3 {
  font-family: var(--font-disp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 6px;
}
.tv-ep-info p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── KONTAKT FULL PAGE ── */
.s-contact-page {
  background: var(--white);
  padding: 100px clamp(24px, 5vw, 80px);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.cpi-block h3 {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.cpi-block p,
.cpi-block a {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.75;
  display: block;
}
.cpi-block a { transition: color 0.2s; }
.cpi-block a:hover { color: var(--navy); }
.cpi-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
}
.cpi-hours dt { font-weight: 600; color: var(--navy); font-size: 0.88rem; }
.cpi-hours dd { font-size: 0.88rem; color: var(--muted); }
.contact-page-form {
  background: var(--gray);
  border-radius: 16px;
  padding: 48px;
}
.contact-page-form .cf-field label { color: var(--muted); }
.contact-page-form .cf-field input,
.contact-page-form .cf-field textarea,
.contact-page-form .cf-field select {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(31,59,91,0.12);
}
.contact-page-form .cf-field input::placeholder,
.contact-page-form .cf-field textarea::placeholder { color: rgba(31,59,91,0.25); }
.contact-page-form .cf-field input:focus,
.contact-page-form .cf-field textarea:focus { border-color: var(--accent); background: var(--white); }
.contact-page-form .cf-check { color: var(--muted); }
.contact-page-form .cf-submit {
  background: var(--navy);
  color: var(--white);
}
.contact-page-form .cf-submit:hover { background: var(--accent); color: var(--white); }
.s-map-strip {
  background: var(--gray);
  padding: 0;
  height: 360px;
  overflow: hidden;
}
.s-map-strip iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* Responsive subpage overrides */
@media (max-width: 1024px) {
  .s-philosophy { grid-template-columns: 1fr; }
  .phil-img { min-height: 340px; }
  .team-grid-full { grid-template-columns: repeat(2, 1fr); }
  .team-card-lead { grid-column: span 2; }
  .srv-detail-grid { grid-template-columns: 1fr 1fr; }
  .srv-detail-item:nth-child(3) { border-left: 1px solid rgba(31,59,91,0.08); padding-left: 40px; }
  .dl-grid { grid-template-columns: 1fr 1fr; }
  .dl-stat-row { grid-template-columns: 1fr 1fr; }
  .dl-stat:nth-child(2) { border-right: none; }
  .news-full-grid { grid-template-columns: 1fr 1fr; }
  .news-card:nth-child(3) { border-left: 1px solid rgba(31,59,91,0.08); padding-left: 36px; }
  .tv-episodes { grid-template-columns: 1fr 1fr; }
  .s-book-hero { grid-template-columns: 1fr; }
  .book-visual { min-height: 360px; }

  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .s-page-hero { min-height: 45vh; padding-bottom: 48px; }
  .ph-l1 { font-size: clamp(3rem, 16vw, 6rem); }
  .team-grid-full { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card-lead { grid-column: span 2; grid-template-columns: 1fr; }
  .team-card-lead .team-card-img { min-height: 260px; }
  .srv-detail-grid { grid-template-columns: 1fr; }
  .srv-detail-item { padding: 32px 0 !important; border-left: none !important; }
  .dl-grid { grid-template-columns: 1fr; }
  .dl-stat-row { grid-template-columns: 1fr 1fr; }
  .news-full-grid { grid-template-columns: 1fr; }
  .news-card { padding: 28px 0 !important; border-left: none !important; }
  .tv-episodes { grid-template-columns: 1fr; }
  .contact-page-form { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════
   NEWS TICKER (Steuernews, top of news page)
═══════════════════════════════════════════════ */
.s-news-ticker {
  padding: 72px var(--side) 80px;
  background: #f7f8fa;
  border-bottom: 1px solid rgba(31,59,91,.08);
}
.news-ticker-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}
.news-ticker-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #1F3B5B;
  line-height: 1.1;
  margin: 8px 0 0;
  letter-spacing: -.02em;
}
.news-ticker-skip {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: #4E7DA6;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
  flex-shrink: 0;
}
.news-ticker-skip:hover { color: #1F3B5B; }

.news-ticker-list {
  display: flex;
  flex-direction: column;
}

/* individual ticker item */
.ntick {
  display: grid;
  grid-template-columns: 36px 110px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(31,59,91,.1);
  text-decoration: none;
  transition: background .2s, padding-left .25s;
}
.ntick:last-child { border-bottom: 1px solid rgba(31,59,91,.1); }
.ntick:hover {
  background: rgba(31,59,91,.025);
  padding-left: 12px;
}

.ntick-num {
  font-family: 'Playfair Display', serif;
  font-size: .85rem;
  font-weight: 700;
  color: #DA8CAD;
  opacity: .7;
}
.ntick-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: #999;
  letter-spacing: .03em;
}
.ntick-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: #1F3B5B;
  line-height: 1.35;
  transition: color .2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ntick:hover .ntick-title { color: #4E7DA6; }
.ntick-arrow {
  color: #ccc;
  transition: color .2s, transform .25s;
  display: flex;
}
.ntick:hover .ntick-arrow {
  color: #DA8CAD;
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════
   STEUERNEWS ARCHIVE (steuernews.html)
═══════════════════════════════════════════════ */
.sn-archive {
  padding: 60px var(--side) 120px;
}

/* Toolbar: count + search */
.sn-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31,59,91,.1);
}
.sn-toolbar-count {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #aaa;
  letter-spacing: .03em;
}
.sn-toolbar-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(31,59,91,.18);
  border-radius: 30px;
  background: #fff;
  color: #bbb;
  flex-shrink: 0;
}
.sn-toolbar-search svg { flex-shrink: 0; color: #aaa; }

/* Featured highlight (latest post) */
.sn-hl {
  display: block;
  text-decoration: none;
  background: #1F3B5B;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 56px;
  position: relative;
  transition: box-shadow .3s;
}
.sn-hl:hover {
  box-shadow: 0 20px 60px rgba(31,59,91,.25);
}
.sn-hl-accent {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  background: #DA8CAD;
  border-radius: 10px 0 0 10px;
}
.sn-hl-body {
  padding: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 60px);
  padding-left: clamp(40px, 5vw, 68px);
}
.sn-hl-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(218,140,173,.2);
  color: #DA8CAD;
  margin-bottom: 16px;
}
.sn-hl-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin: 0 0 14px;
  max-width: 700px;
  letter-spacing: -.01em;
}
.sn-hl-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 620px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sn-hl-foot {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sn-hl-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}
.sn-hl .bmore { color: rgba(255,255,255,.8); }
.sn-hl:hover .bmore { color: #fff; }

/* Year divider */
.sn-year-divider {
  padding: 36px 0 14px;
}
.sn-year-divider span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #1F3B5B;
  letter-spacing: -.02em;
}

/* Individual news row */
.sn-row {
  display: grid;
  grid-template-columns: 130px 1fr 28px;
  align-items: start;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(31,59,91,.08);
  text-decoration: none;
  transition: background .2s, padding-left .25s;
}
.sn-row:last-child { border-bottom: 1px solid rgba(31,59,91,.08); }
.sn-row:hover {
  background: rgba(31,59,91,.02);
  padding-left: 14px;
}
.sn-row-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: #999;
  letter-spacing: .02em;
  padding-top: 3px;
  white-space: nowrap;
}
.sn-row-content { min-width: 0; }
.sn-row-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: #1F3B5B;
  line-height: 1.38;
  margin: 0 0 6px;
  transition: color .2s;
}
.sn-row:hover .sn-row-title { color: var(--pink); }
.sn-row-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #999;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sn-row-arrow {
  color: #ccc;
  transition: color .2s, transform .25s;
  display: flex;
  padding-top: 4px;
}
.sn-row:hover .sn-row-arrow {
  color: #DA8CAD;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .sn-toolbar { flex-direction: column; align-items: stretch; }
  .sn-row {
    grid-template-columns: 1fr 24px;
    gap: 8px;
  }
  .sn-row-date {
    grid-column: 1 / -1;
    padding-top: 0;
  }
  .sn-row-content { grid-column: 1; }
  .sn-row-arrow { grid-row: 2; }
}

/* ═══════════════════════════════════════════════
   BLOG SECTION (deeper articles)
═══════════════════════════════════════════════ */
.s-blog-section {
  padding: 80px var(--side) 120px;
}
.blog-section-header {
  margin-bottom: 40px;
}
.blog-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #1F3B5B;
  line-height: 1.1;
  margin: 8px 0 0;
  letter-spacing: -.02em;
}

/* ── Filter bar — editorial, typography-driven ── */
.blog-filter-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(31,59,91,0.12);
}
.cat-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  align-items: center;
}
.cat-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 0 12px;
  border: none;
  background: transparent;
  color: rgba(31,59,91,0.55);
  cursor: pointer;
  transition: color 0.3s var(--ease-expo);
  position: relative;
  line-height: 1;
}
.cat-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 0.4s var(--ease-expo);
}
.cat-btn:hover {
  color: var(--navy);
}
.cat-btn:hover::after { width: 100%; }
.cat-btn.active {
  color: var(--pink);
  font-weight: 600;
}
.cat-btn.active::after { width: 100%; }
.cat-count {
  font-family: var(--font-disp);
  font-variant-numeric: tabular-nums;
  font-size: 0.7em;
  color: rgba(31,59,91,0.35);
  font-weight: 400;
}

/* ── Search — minimalist, single underline ── */
.blog-search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid rgba(31,59,91,0.2);
  border-radius: 0;
  background: transparent;
  color: rgba(31,59,91,0.55);
  flex-shrink: 0;
  min-width: 240px;
  transition: border-color 0.3s var(--ease-expo);
}
.blog-search-wrap svg {
  flex-shrink: 0;
  color: rgba(31,59,91,0.45);
  transition: color 0.3s;
}
#blog-search {
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  border: none;
  outline: none;
  background: transparent;
  color: var(--navy);
  width: 100%;
  padding: 0;
}
#blog-search::placeholder {
  color: rgba(31,59,91,0.4);
  font-style: italic;
}
.blog-search-wrap:focus-within { border-color: var(--pink); }
.blog-search-wrap:focus-within svg { color: var(--pink); }
#sn-search {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  border: none;
  outline: none;
  background: transparent;
  color: #333;
  width: 200px;
  padding: 0;
}
#sn-search::placeholder { color: #bbb; }
.sn-toolbar-search:focus-within { border-color: var(--pink); }
.sn-toolbar-search:focus-within svg { color: var(--pink); }

/* Count row */
.blog-count-row {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #aaa;
  letter-spacing: .03em;
  margin-bottom: 32px;
}

/* ── Pagination — editorial, typography-driven ── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 96px;
  padding-top: 40px;
  border-top: 1px solid rgba(31,59,91,0.12);
  flex-wrap: wrap;
  position: relative;
}
.pg-btn {
  font-family: var(--font-disp);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: rgba(31,59,91,0.4);
  cursor: pointer;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  position: relative;
  transition: color 0.3s var(--ease-expo);
  line-height: 1;
}
.pg-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--pink);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-expo);
}
.pg-btn:hover { color: var(--navy); }
.pg-btn:hover::after { width: 24px; }
.pg-btn.active {
  color: var(--pink);
  font-weight: 700;
}
.pg-btn.active::after { width: 24px; }
.pg-prev,
.pg-next {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 12px 22px;
}
.pg-prev { margin-right: 16px; }
.pg-next { margin-left: 16px; }
.pg-prev::after,
.pg-next::after { display: none; }
.pg-prev:hover,
.pg-next:hover { color: var(--pink); }

/* ═══════════════════════════════════════════════
   EDITORIAL BLOG (news.html)
═══════════════════════════════════════════════ */

/* Shared tag & date & readmore */
.btag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
}
.bdate {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: #999;
  letter-spacing: .03em;
}
.bdate.light { color: rgba(255,255,255,.7); }

.bmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1F3B5B;
  text-decoration: none;
  margin-top: 6px;
  transition: gap .25s, color .2s;
}
.bmore:hover { gap: 13px; color: var(--pink); }
.bmore svg { flex-shrink: 0; transition: transform .25s; }
.bmore:hover svg { transform: translateX(3px); }
.bmore.light { color: rgba(255,255,255,.85); }
.bmore.light:hover { color: #fff; }

/* ── Hero card ── */
.blog-hero {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  text-decoration: none;
}
.blog-hero-inner {
  display: block;
  text-decoration: none;
}
.blog-hero-img-wrap {
  aspect-ratio: 21/9;
  overflow: hidden;
  background: #1F3B5B;
}
.blog-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s ease;
}
.blog-hero:hover .blog-hero-img-wrap img { transform: scale(1.04); }
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,20,40,.88) 0%,
    rgba(10,20,40,.45) 45%,
    transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 52px) clamp(24px, 5vw, 60px);
  gap: 10px;
}
.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin: 0;
  max-width: 820px;
  letter-spacing: -.01em;
}
.blog-hero-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Pair row ── */
.blog-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.blog-pair-card { display: flex; flex-direction: column; }
.bpair-img {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  background: #e8edf2;
  text-decoration: none;
  flex-shrink: 0;
}
.bpair-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}
.blog-pair-card:hover .bpair-img img { transform: scale(1.05); }
.bpair-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.bpair-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0 0;
}
.bpair-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.22;
  margin: 4px 0 2px;
  color: #1F3B5B;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bpair-title a { color: inherit; text-decoration: none; transition: color .2s; }
.bpair-title a:hover { color: var(--pink); }
.bpair-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  line-height: 1.65;
  color: #666;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── New grid cards ── */
.blog-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
}
.bcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(218,140,173,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31,59,91,.06);
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.bcard:hover {
  box-shadow: 0 8px 28px rgba(218,140,173,.2);
  transform: translateY(-3px);
}
.bcard-img {
  display: block;
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 0;
  background: #e8edf2;
  text-decoration: none;
  flex-shrink: 0;
}
.bcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.bcard:hover .bcard-img img { transform: scale(1.06); }
.bcard-cat {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.bcard-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 20px 20px;
  flex: 1;
}
.bcard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.28;
  margin: 4px 0 2px;
  color: #1F3B5B;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bcard-title a { color: inherit; text-decoration: none; transition: color .2s; }
.bcard-title a:hover { color: var(--pink); }
.bcard-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .83rem;
  line-height: 1.6;
  color: #777;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 0;
  font-family: 'DM Sans', sans-serif;
  color: #bbb;
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════
   TAX TV – episode archive
═══════════════════════════════════════════════ */
.tv-archive-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tv-archive-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #1F3B5B;
  line-height: .95;
  margin: 8px 0 0;
}
.tv-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(31,59,91,.2);
  border-radius: 30px;
  background: #fff;
  color: #bbb;
  flex-shrink: 0;
}
#tv-search {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  border: none;
  outline: none;
  background: transparent;
  color: #333;
  width: 200px;
}
.tv-count-row {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: #aaa;
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.tv-featured-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding-top: 8px;
  text-align: center;
}
.tv-featured-cta .btn-primary,
.tv-featured-cta .btn-secondary { margin-top: 0; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.tv-archive-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.6;
  max-width: 520px;
}

/* Episode grid */
.tv-ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
.tv-ep-item {
  display: flex;
  flex-direction: column;
  background: #0E1C2F;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s;
  border: 1px solid rgba(255,255,255,0.04);
}
.tv-ep-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(10,20,40,.4);
  border-color: rgba(218,140,173,0.25);
}
.tv-ep-thumb-wrap {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #162A40;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  flex-shrink: 0;
}
.tv-ep-thumb-wrap[disabled] { cursor: default; }
.tv-ep-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease-out), filter .3s;
}
.tv-ep-item:hover .tv-ep-thumb-wrap img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.tv-ep-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,44,0) 40%, rgba(15,27,44,0.55) 100%);
  pointer-events: none;
}
.tv-ep-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 56px;
  height: 56px;
  background: rgba(218,140,173,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity .25s, transform .35s var(--ease-out);
  box-shadow: 0 10px 30px rgba(218,140,173,0.5);
}
.tv-ep-play svg { filter: drop-shadow(0 1px 4px rgba(0,0,0,.4)); margin-left: 2px; }
.tv-ep-item:hover .tv-ep-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.tv-ep-item--nolink .tv-ep-play { display: none; }
.tv-ep-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15,27,44,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}
.tv-ep-info-new {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 20px;
  flex: 1;
}
.tv-ep-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
.tv-ep-title-new {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.tv-ep-title-new a { color: inherit; text-decoration: none; }
.tv-ep-title-new a:hover,
.tv-ep-item:hover .tv-ep-title-new { color: #DA8CAD; }
.tv-ep-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.tv-ep-info-new .bmore {
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-size: 0.78rem;
}
.tv-ep-info-new .bmore:hover { color: #DA8CAD; }

/* ── Lightbox Video Player ── */
.tv-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,16,28,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tv-lightbox.active {
  display: flex;
  opacity: 1;
}
.tv-lightbox-stage {
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tv-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 50px 120px rgba(0,0,0,0.6), 0 12px 32px rgba(0,0,0,0.4);
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-out);
}
.tv-lightbox.active .tv-lightbox-frame { transform: translateY(0); }
.tv-lightbox-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.tv-lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
  padding: 0 4px;
}
.tv-lightbox-meta h3 {
  font-family: var(--font-disp);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-weight: 700;
  margin: 0;
  flex: 1 1 auto;
  min-width: 240px;
  line-height: 1.3;
}
.tv-lightbox-meta a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.tv-lightbox-meta a:hover { color: #fff; }
.tv-lightbox-close {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.25s, transform 0.3s var(--ease-out), border-color 0.25s;
}
.tv-lightbox-close:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: rotate(90deg);
}

/* ── responsive ── */
@media (max-width: 1024px) {
  .blog-grid-new { grid-template-columns: repeat(2, 1fr); }
  .tv-ep-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-hero-img-wrap { aspect-ratio: 4/3; }
  .blog-pair { grid-template-columns: 1fr; }
  .blog-grid-new { grid-template-columns: 1fr; }
  .tv-ep-grid { grid-template-columns: 1fr; gap: 28px; }
  .tv-archive-header { flex-direction: column; align-items: flex-start; }
  #tv-search { width: 100%; }
  .tv-featured-cta { flex-direction: column; align-items: stretch; }
  .tv-featured-cta .btn-primary,
  .tv-featured-cta .btn-secondary { justify-content: center; width: 100%; }
  .tv-ep-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  .tv-lightbox-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .blog-filter-bar { flex-direction: column; align-items: stretch; gap: 24px; }
  .cat-filter-wrap { gap: 4px 20px; }
  .cat-btn { font-size: 0.8rem; padding: 8px 0 10px; }
  .blog-search-wrap { min-width: 0; width: 100%; }
  .ntick { grid-template-columns: 28px 1fr 20px; gap: 12px; padding: 16px 0; }
  .ntick-date { display: none; }
  .news-ticker-header { flex-direction: column; align-items: flex-start; }
  .blog-hero-title { font-size: clamp(1.3rem, 5vw, 2rem); }
  .blog-hero-overlay { padding: 20px 24px; }
}

/* ═══════════════════════════════════════════════════
   ARTICLE DETAIL PAGE
   ═══════════════════════════════════════════════════ */
.art-detail {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.art-back-bar {
  margin-bottom: 32px;
}
.art-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: color .2s;
}
.art-back-link:hover { color: var(--navy); }

.art-header { margin-bottom: 40px; }
.art-category {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.art-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.art-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: #888;
}
.art-hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 10px;
}

/* Article content styling */
.art-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
}
.art-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 .75rem;
}
.art-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 .5rem;
}
.art-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.25rem 0 .5rem;
}
.art-content p {
  margin: 0 0 1.2rem;
}
.art-content ul, .art-content ol {
  margin: 0 0 1.2rem;
  padding-left: 1.5rem;
}
.art-content li {
  margin-bottom: .4rem;
}
.art-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.art-content a:hover { color: var(--navy); }
.art-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
.art-content blockquote {
  border-left: 3px solid var(--pink);
  margin: 1.5rem 0;
  padding: .75rem 1.25rem;
  background: #f8f9fb;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: #555;
}
.art-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}
.art-content th, .art-content td {
  border: 1px solid #e0e0e0;
  padding: 8px 12px;
  text-align: left;
}
.art-content th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
}
.art-content tr:nth-child(even) td {
  background: #f8f9fb;
}
.art-content iframe {
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
}
.art-content .wp-block-embed,
.art-content .wp-block-video {
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .art-detail { padding: 100px 16px 60px; }
  .art-hero-img { max-height: 280px; border-radius: 8px; }
}

/* ══════════════════════════════════════════
   ANIMATION ENHANCEMENTS
══════════════════════════════════════════ */

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--pink), #e8a8c6);
  z-index: 10000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Hero right: vertical pink divider draws down on load ── */
.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(218,140,173,0.55) 25%,
    rgba(218,140,173,0.55) 75%,
    transparent
  );
  height: 0;
  z-index: 10;
  animation: lineDraw 1s var(--ease-out) 0.4s forwards;
}
@keyframes lineDraw { to { height: 100%; } }

/* Hero CTA: no glow pulse — taste-skill bans neon/outer glows */

/* ── Stats: scale + fade entrance (overrides base reveal-up) ── */
.s-stats .stat-block {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
.s-stats .stat-block.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.s-stats .stat-block:nth-child(2) { transition-delay: 0.1s; }
.s-stats .stat-block:nth-child(3) { transition-delay: 0.2s; }
.s-stats .stat-block:nth-child(4) { transition-delay: 0.3s; }

/* ── Process: timeline vertical connector line draws down ── */
.proc-list { position: relative; }
.proc-list::before {
  content: '';
  position: absolute;
  left: 39px; top: 36px;
  width: 1px;
  background: linear-gradient(to bottom, var(--pink), rgba(218,140,173,0.1));
  height: 0;
  transition: height 1.8s var(--ease-out);
  pointer-events: none;
}
.proc-list.line-active::before { height: calc(100% - 72px); }

/* ── Service rows: number scale on hover ── */
.srv-row { transition: background 0.2s; }
.srv-row:hover { background: rgba(218,140,173,0.04); border-radius: 8px; }
.srv-row:hover .srv-row-num {
  transform: scale(1.12);
  color: var(--pink);
  transition: transform 0.25s var(--ease-out), color 0.25s;
}
.srv-row-num { transition: transform 0.25s var(--ease-out), color 0.25s; }

/* ── Marquee hover handled in main marquee block ── */

/* ── FAQ: staggered reveal delays ── */
.faq-item:nth-child(2) { transition-delay: 0.08s; }
.faq-item:nth-child(3) { transition-delay: 0.16s; }
.faq-item:nth-child(4) { transition-delay: 0.24s; }
.faq-item:nth-child(5) { transition-delay: 0.32s; }
.faq-item:nth-child(6) { transition-delay: 0.40s; }

/* ── Hero left: subtle radial glow ── */
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(218,140,173,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════
   PREMIUM UPGRADES — Playwright Research
   Sources: Augen.pro · Linear.app · Resend.com
══════════════════════════════════════════ */

/* ── 1. Nav sibling dimming (Augen.pro) ── */
.hdr-nav:hover a { opacity: 0.5; }
.hdr-nav:hover a:hover { opacity: 1; }
/* Preserve correct state when not scrolled (white hero) */
.site-header:not(.scrolled) .hdr-nav:hover a { color: rgba(255,255,255,0.88); opacity: 0.5; }
.site-header:not(.scrolled) .hdr-nav:hover a:hover { color: var(--white); opacity: 1; }

/* ── 2. Service rows sibling dimming (Augen.pro) ── */
.srv-rows:hover .srv-row { opacity: 0.38; transition: opacity 0.18s ease; }
.srv-rows:hover .srv-row:hover { opacity: 1; }

/* ── 4. Linear.app dot grid — bottom of dark hero ── */
.hero-dot-grid {
  position: absolute;
  bottom: 64px;
  right: 36px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease 1.6s;
}
.hero-dot-grid.show { opacity: 1; }
.hdg-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.06;
  animation: hdgPulse 3200ms steps(1) var(--d, 0ms) infinite;
}
@keyframes hdgPulse {
  0%,  49% { opacity: 0.06; }
  50%, 100% { opacity: var(--on, 0.28); }
}

/* ── 5. Magnetic buttons — smooth snap-back ── */
.hero-btn-prim,
.hero-btn-sec,
.hdr-cta {
  transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.25s ease,
              color 0.25s ease;
  will-change: transform;
}

/* ── 6. Resend.com contact floating dots ── */
.contact-float-dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218,140,173,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
@keyframes floatDot {
  0%,  100% { transform: translateY(0); }
  50%       { transform: translateY(var(--float-y, -12px)); }
}

/* ══════════════════════════════════════════
   REDESIGN UPGRADES — Playwright Batch 2
   Sources: studiofreight.com · obys.agency
   · locomotive.ca
══════════════════════════════════════════ */

/* ── Studio Freight: sibling blur on service rows ── */
/* Replaces simple opacity dimming with blur+opacity combo */
/* Only on devices with REAL hover (desktop) — touch screens skip this entirely */
@media (hover: hover) and (pointer: fine) {
  .srv-rows:hover .srv-row {
    opacity: 0.32;
    filter: blur(1px);
    transition: opacity 0.22s ease, filter 0.22s ease;
  }
  .srv-rows:hover .srv-row:hover {
    opacity: 1;
    filter: blur(0);
  }
}

/* ── Obys crawling-line section divider ── */
.crawl-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--pink);
  transition: width 1.4s var(--ease-expo);
}
.crawl-line.active { width: 100%; }
/* Über dem Testimonial keine crawling-line – auch als Absicherung, falls ein
   gecachtes main.js das Element noch einfügt. */
.s-testimonial .crawl-line { display: none !important; }

/* ── Services: dark floating card over cream about ── */
.s-services {
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 5;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.28);
}

/* ── Stats: floating card over dark hero ── */
.s-stats {
  background: var(--white);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 5;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.24);
}

/* ── News: floating white card over pink testimonial ── */
.s-news {
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 5;
  box-shadow: 0 -24px 80px rgba(31,59,91,0.10);
  border-top: none;
}

/* ── Contact: dark floating card over white news ── */
.s-contact {
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 5;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.28);
}

/* ── Process: floating cream card over dark marquee ── */
.s-process {
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 5;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.20);
  background: #F5F3F0;
  border-top: none;
}

/* ── Expo easing upgrade on reveal animations ── */
.line-inner {
  transition: transform 0.65s var(--ease-expo);
}
.reveal-up {
  transition: opacity 0.55s var(--ease-expo), transform 0.55s var(--ease-expo);
  transition-delay: var(--delay, 0s);
}
.reveal-left {
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}
.reveal-right {
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
  transition-delay: 0.08s;
}

/* ── Obys.agency word-split stagger ── */
.sw {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition:
    opacity  0.75s var(--ease-expo) calc(var(--bd, 0s) + var(--wi, 0) * 0.08s),
    transform 0.75s var(--ease-expo) calc(var(--bd, 0s) + var(--wi, 0) * 0.08s);
}
.sw.sw-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero responsive ── */
@media (max-width: 1024px) {
  .hero-card {
    width: clamp(220px, 36vw, 380px);
    top: 88px;
  }
  .hero-l1, .hero-l2 { font-size: clamp(5rem, 12vw, 10rem); }
  .hero-l3 { font-size: clamp(4rem, 10vw, 8.5rem); }
}
@media (max-width: 768px) {
  .s-hero { padding: 88px 24px 40px; }
  .hero-card {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    aspect-ratio: 16/9;
    clip-path: none;
    margin-bottom: 24px;
    border-radius: 4px;
  }
  .hero-card.revealed { clip-path: none; }
  .s-hero { grid-template-rows: auto auto 1fr auto auto; }
  .hero-top { flex-direction: column; gap: 4px; }
  .hero-l1, .hero-l2 { font-size: clamp(4rem, 13vw, 7rem); }
  .hero-l3 { font-size: clamp(3.2rem, 11vw, 6rem); }
  .hero-floor { flex-direction: column; align-items: flex-start; gap: 20px; }
}


/* ══════════════════════════════════════════
   PREMIUM SCROLL ANIMATIONS
══════════════════════════════════════════ */

/* Hero: parallax + exit — controlled by JS */
.s-hero    { will-change: opacity; }
.hero-card { will-change: transform; }
.hero-body { will-change: transform; }
.hero-top  { will-change: transform; }

/* About image: reveal-left handles entrance — no clip-path conflict */
.about-image {
  clip-path: none;
  min-height: 540px;
}
.about-image img {
  object-position: center 0%;
  transform: scale(1.02);
  transition: none;
  will-change: transform;
}
.about-image.visible img { transform: scale(1.02); }

/* Service rows: clean vertical entrance, proper stagger */
.s-services .srv-row.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  1s var(--ease-expo) var(--delay, 0s),
    transform 1s var(--ease-expo) var(--delay, 0s);
}
.s-services .srv-row.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stats blocks: light blur-fade — 4px keeps it elegant */
.s-stats .stat-block {
  filter: blur(4px);
  transition:
    opacity  0.7s var(--ease-expo),
    transform 0.7s var(--ease-expo),
    filter   0.8s ease;
}
.s-stats .stat-block.revealed { filter: blur(0); }
.s-stats .stat-block:nth-child(1) { transition-delay: 0s; }
.s-stats .stat-block:nth-child(2) { transition-delay: 0.07s; }
.s-stats .stat-block:nth-child(3) { transition-delay: 0.14s; }
.s-stats .stat-block:nth-child(4) { transition-delay: 0.21s; }

/* Testimonial: gentle lift */
.testi-inner {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 1s var(--ease-expo), transform 1.1s var(--ease-expo);
}
.testi-inner.entered {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Process items: slide from left — follows the timeline's left origin */
.proc-item.reveal-up {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity  0.85s var(--ease-expo) var(--delay, 0s),
    transform 0.85s var(--ease-expo) var(--delay, 0s);
}
.proc-item.reveal-up.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .hero-card { transform: none !important; }
  .hero-body { transform: none !important; }
  .hero-top  { transform: none !important; }
  .about-content::before { display: none; }
}

/* ══════════════════════════════════════════
   FINANZPOWER FEATURE SECTION
══════════════════════════════════════════ */
.s-finanzpower {
  background: var(--navy-deep);
  padding: 100px clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 5;
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.28);
}
.fp-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}
.fp-book {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fp-book img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 780px;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  transform: rotate(-2.5deg) scale(1.08);
  transition: transform 0.7s var(--ease-expo);
}
.fp-book:hover img {
  transform: rotate(0deg) scale(1.12) translateY(-8px);
}
.fp-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.fp-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.fp-heading em {
  color: var(--pink);
  font-style: italic;
}
.fp-award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(218,140,173,0.1);
  border: 1px solid rgba(218,140,173,0.3);
  border-radius: 100px;
  padding: 10px 22px;
  margin-bottom: 32px;
}
.fp-award-icon {
  color: var(--pink);
  font-size: 1rem;
}
.fp-award-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}
.fp-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.fp-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.25s, border-color 0.25s;
}
.fp-cta:hover {
  color: var(--pink);
  border-color: var(--pink);
}

@media (max-width: 768px) {
  .fp-inner { grid-template-columns: 1fr; }
  .fp-book img { max-width: 400px; transform: none; }
  .s-finanzpower { border-radius: 20px 20px 0 0; }
}

/* Custom cursor removed — native cursor is preferred per taste-skill */

/* ══════════════════════════════════════════
   NAV HOVER — sliding underline
══════════════════════════════════════════ */
.hdr-nav a {
  position: relative;
}
.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink);
  transition: width 0.4s var(--ease-expo);
}
.hdr-nav a:hover::after { width: 100%; }

/* Hero headline: solid pink, no gradient (taste-skill: no text-fill gradients) */

/* ══════════════════════════════════════════
   WAS WIR TUN — aligned with site design system
   Uses .s-page-hero + floating-card transitions +
   existing typography tokens from landing page
══════════════════════════════════════════ */

/* ── Services section: cream floating card over dark hero ── */
.s-wwt-services {
  background: #F5F3F0;
  padding: 120px clamp(24px, 5vw, 80px) 140px;
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 5;
  position: relative;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.22);
}
.wwt-srv-intro {
  max-width: 1400px;
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: end;
}
.wwt-srv-intro .srv-eyebrow {
  align-self: start;
  color: var(--accent);
}
.wwt-srv-intro-title {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 900;
}
.wwt-srv-intro-title em {
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}

/* ── Services: editorial zig-zag list, 1px dividers, NO cards ── */
.wwt-srv-list {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(31,59,91,0.14);
}
.wwt-srv {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 64px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(31,59,91,0.14);
  transition: background 0.5s var(--ease-expo), padding 0.5s var(--ease-expo);
}
.wwt-srv:hover {
  background: linear-gradient(to right, rgba(218,140,173,0.05) 0%, transparent 100%);
  padding-left: 24px;
}
.wwt-srv:nth-child(even) {
  grid-template-columns: 1fr 1fr 220px;
}
.wwt-srv:nth-child(even) .wwt-srv-meta  { order: 3; text-align: right; align-items: flex-end; }
.wwt-srv:nth-child(even) .wwt-srv-body  { order: 1; }
.wwt-srv:nth-child(even) .wwt-srv-points { order: 2; }

.wwt-srv-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.wwt-srv-num {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.wwt-srv-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.wwt-srv-body { max-width: 460px; }
.wwt-srv-title {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.wwt-srv-desc {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(31,59,91,0.72);
  margin: 0;
}

.wwt-srv-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wwt-srv-points li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--navy);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.wwt-srv-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--pink);
}

/* ── Industries — dark floating card ── */
.s-wwt-industries {
  background: var(--navy-deep);
  padding: 140px clamp(24px, 5vw, 80px) 140px;
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 6;
  position: relative;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.32);
  color: var(--white);
}
.wwt-ind-header {
  max-width: 1400px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.srv-eyebrow-dark { color: rgba(255,255,255,0.55) !important; }
.wwt-ind-title {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  font-weight: 900;
}
.wwt-ind-title em {
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.wwt-ind-lede {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin: 0;
  max-width: 420px;
}
.wwt-ind-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.wwt-ind-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  transition: padding 0.4s var(--ease-expo);
}
.wwt-ind-list li:hover { padding-left: 16px; }
.wwt-ind-num {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(218,140,173,0.7);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.wwt-ind-name {
  font-family: var(--font-disp);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ── CTA — bone floating card, DESIGN.md aligned ── */
.s-wwt-cta {
  /* scoped tokens (DESIGN.md migration) */
  --bone:       #FAF7F2;
  --marine:     #1B2D44;
  --terracotta: #C4847A;
  --brass:      #A88963;
  --ink:        #2A2A2A;

  background: var(--bone);
  padding: clamp(96px, 14vw, 160px) clamp(24px, 5vw, 80px);
  border-radius: 28px 28px 0 0;
  margin-top: -40px;
  z-index: 7;
  position: relative;
  box-shadow: 0 -24px 80px rgba(15, 27, 44, 0.16);
  overflow: hidden;
}
/* 360° watermark anchor (per DESIGN.md §11) */
.s-wwt-cta::before {
  content: "360°";
  position: absolute;
  right: -3vw;
  bottom: -8vw;
  font-family: var(--font-disp);
  font-size: clamp(14rem, 28vw, 28rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(168, 137, 99, 0.055);
  letter-spacing: -0.04em;
  pointer-events: none;
}
.wwt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
/* eyebrow: brass uppercase tracked + leading hairline */
.s-wwt-cta .srv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.s-wwt-cta .srv-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.wwt-cta-heading {
  font-family: var(--font-disp);
  font-size: clamp(2.75rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 4px 0 0;
}
/* fixes white-on-bone invisibility */
.s-wwt-cta .ct-l1,
.s-wwt-cta .ct-l2,
.s-wwt-cta .ct-l3 { color: var(--marine); }

.wwt-cta-heading .ct-l2 {
  display: inline-block;
  padding-left: clamp(48px, 10vw, 160px);
  color: var(--terracotta);
}
.wwt-cta-heading .ct-l2 em { font-style: italic; font-weight: 600; }

.wwt-cta-lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink);
  margin: 12px 0 0;
  max-width: 520px;
}
.wwt-cta-actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
/* primary button — marine default, terracotta hover (DESIGN.md §10) */
.s-wwt-cta .btn-primary {
  background: var(--marine);
  color: var(--bone);
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 220ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}
.s-wwt-cta .btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(196, 132, 122, 0.30);
}
.wwt-cta-sec {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--marine);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 137, 99, 0.45);
  padding-bottom: 4px;
  transition: color 220ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 220ms cubic-bezier(0.16, 1, 0.3, 1);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.wwt-cta-sec:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wwt-srv-intro,
  .wwt-ind-header {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .wwt-srv,
  .wwt-srv:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
  .wwt-srv:nth-child(even) .wwt-srv-meta  { order: initial; text-align: left; align-items: flex-start; }
  .wwt-srv:nth-child(even) .wwt-srv-body  { order: initial; }
  .wwt-srv:nth-child(even) .wwt-srv-points { order: initial; }
  .wwt-srv:hover { padding-left: 0; }
  .wwt-ind-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .wwt-ind-list li:hover { padding-left: 0; }
}
@media (max-width: 768px) {
  .s-wwt-services,
  .s-wwt-industries,
  .s-wwt-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .s-wwt-cta {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 20px 20px 0 0;
    margin-top: -28px;
  }
  .s-wwt-cta::before { font-size: 11rem; right: -28px; bottom: -56px; }
  .wwt-cta-heading { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .wwt-cta-heading .ct-l2 { padding-left: 24px; }
  .wwt-cta-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .s-wwt-cta .btn-primary { width: 100%; justify-content: center; }
  .wwt-cta-sec { align-self: center; }
}

/* ══════════════════════════════════════════
   BLOG — editorial redesign
   Adapted from Claude Design "Warm & Human Premium"
   Mapped: bone→#F5F3F0, marine→navy-deep, terracotta→pink, brass→accent
══════════════════════════════════════════ */

/* ── Editorial hero ── */
.s-blog-hero-ed {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  min-height: 78vh;
  padding: 120px clamp(24px, 5vw, 80px) 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 32px;
}
.bhe-watermark {
  position: absolute;
  right: -3vw; top: -2vw;
  font-family: var(--font-disp);
  font-style: italic; font-weight: 700;
  font-size: clamp(16rem, 36vw, 36rem);
  line-height: 1;
  color: rgba(218,140,173,0.06);
  pointer-events: none; user-select: none;
  letter-spacing: -0.06em;
  transform: rotate(-12deg);
  animation: bhe-anchor-rotate 0.9s var(--ease-expo) 0.2s forwards;
  transform-origin: 50% 50%;
}
@keyframes bhe-anchor-rotate { to { transform: rotate(0deg); } }

.bhe-eyebrow-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 18px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bhe-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}
.bhe-issue {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}

.bhe-title {
  font-family: var(--font-disp);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  align-self: end;
  position: relative;
  z-index: 1;
}
.bhe-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--pink);
}
.bhe-title .line-wrap { display: block; overflow: clip; overflow-clip-margin: 0.35em; line-height: 0.92; }
.bhe-title .line-inner {
  display: block;
  transform: translateY(160%);
  animation: bhe-line-up 0.9s var(--ease-expo) 0.3s forwards;
}
.bhe-title .line-wrap:nth-of-type(2) .line-inner { animation-delay: 0.42s; }
@keyframes bhe-line-up { to { transform: translateY(0); } }

.bhe-floor {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bhe-desc {
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.bhe-search {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 16px 10px 18px;
  min-width: 340px;
  transition: border-color 0.3s var(--ease-expo), background 0.3s var(--ease-expo);
}
.bhe-search:focus-within {
  border-color: var(--pink);
  background: rgba(255,255,255,0.06);
}
.bhe-search-ic {
  width: 16px; height: 16px;
  color: rgba(255,255,255,0.5);
  flex: none;
}
.bhe-search input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.bhe-search input::placeholder { color: rgba(255,255,255,0.38); font-style: italic; }
.bhe-search kbd {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2px 6px;
  color: rgba(255,255,255,0.6);
}

/* ── Sticky toolbar ── */
.s-blog-toolbar-ed {
  background: rgba(245, 243, 240, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 40;
  border-top: 1px solid rgba(31,59,91,0.08);
  border-bottom: 1px solid rgba(31,59,91,0.12);
  padding: 0 clamp(24px, 5vw, 80px);
  margin-top: -40px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 80px rgba(22,42,64,0.18);
}
.bte-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
  flex-wrap: wrap;
}
.bte-count {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  color: rgba(31,59,91,0.55);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

/* ── Blog content section + sidebar ── */
.s-blog-section-ed {
  background: #F5F3F0;
  padding: 64px clamp(24px, 5vw, 80px) 120px;
}
.blog-layout-ed {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.blog-main-ed { min-width: 0; }
.blog-side-ed {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Featured cover (magazine cover) ── */
.featured-block-ed {
  margin-bottom: 64px;
}
.featured-cover-ed {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a3f5a 0%, var(--navy-deep) 60%, #0F1B2C 100%);
  aspect-ratio: 16 / 9;
  box-shadow: 0 2px 8px rgba(15,27,44,0.06), 0 12px 32px rgba(15,27,44,0.10);
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s var(--ease-expo);
  text-decoration: none;
  color: inherit;
  border: none;
  margin-bottom: 32px;
}
.featured-cover-ed:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15,27,44,0.14), 0 24px 60px rgba(15,27,44,0.16);
  border-bottom: none;
}
.fce-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,27,44,0.85), rgba(15,27,44,0.4) 50%, transparent);
  pointer-events: none;
}
.fce-360 {
  position: absolute;
  right: -6%; top: -10%;
  font-family: var(--font-disp);
  font-style: italic; font-weight: 700;
  font-size: clamp(14rem, 26vw, 26rem);
  line-height: 1;
  color: rgba(218,140,173,0.10);
  letter-spacing: -0.06em;
  pointer-events: none;
  animation: fce-float 12s ease-in-out infinite;
}
@keyframes fce-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
.fce-meta {
  position: absolute; top: 28px; left: 28px;
  display: flex; gap: 12px; align-items: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  z-index: 2;
}
.fce-pill {
  background: rgba(218,140,173,0.18);
  border: 1px solid rgba(218,140,173,0.3);
  color: var(--pink);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
}
.fce-date {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-transform: none;
}
.fce-foot {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
}
.fce-issue {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.fce-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 18px;
  max-width: 80%;
}
.fce-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}
.fce-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: gap 0.3s var(--ease-expo);
}
.featured-cover-ed:hover .fce-cta { gap: 14px; color: var(--pink); }
.fce-cta svg { width: 14px; height: 14px; }

/* ── Featured pair (2 small under cover) ── */
.blog-pair-ed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Article cards (refined editorial style) ── */
.blog-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 32px;
}
.art-card-ed {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-expo);
}
.art-card-ed:hover {
  transform: translateY(-3px);
  border-bottom: none;
}
.art-card-ed:hover .art-img-ed {
  box-shadow: 0 8px 24px rgba(15,27,44,0.14), 0 24px 60px rgba(15,27,44,0.16);
}
.art-card-ed:hover .art-img-ed img { transform: scale(1.04); }
.art-card-ed:hover .art-title { color: var(--pink); }
.art-card-ed:hover .art-arr {
  transform: translateX(8px);
  color: var(--pink);
}

.art-img-ed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #E8E2D8;
  box-shadow: 0 2px 8px rgba(15,27,44,0.06), 0 12px 32px rgba(15,27,44,0.08);
  transition: box-shadow 0.4s var(--ease-expo);
  margin-bottom: 20px;
}
.art-img-ed img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
  display: block;
}
.art-img-ed::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,42,64,0.5), rgba(22,42,64,0.08) 50%, transparent);
  pointer-events: none;
}
.art-img-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 11px;
  border-radius: 100px;
  z-index: 2;
}
.art-img-read {
  position: absolute; bottom: 14px; right: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  z-index: 2;
}

.art-meta {
  display: flex; align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.art-meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(31,59,91,0.2);
}

.art-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 10px;
  transition: color 0.3s var(--ease-expo);
}
.art-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}

.art-dek {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(31,59,91,0.65);
  margin: 0 0 16px;
}

.art-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: flex-end;
  border-top: 1px solid rgba(31,59,91,0.1);
  padding-top: 14px;
}
.art-arr {
  font-family: var(--font-disp);
  font-size: 1.4rem;
  color: var(--navy);
  transition: transform 0.3s var(--ease-expo), color 0.3s var(--ease-expo);
  line-height: 1;
}

/* Empty state */
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 96px 32px;
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--pink);
}

/* ── Sidebar blocks ── */
.side-block-ed {
  background: var(--white);
  border: 1px solid rgba(31,59,91,0.08);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(15,27,44,0.04), 0 12px 32px rgba(15,27,44,0.06);
}
.side-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.side-h {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 22px;
}
.side-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--pink);
}

.most-read {
  display: flex;
  flex-direction: column;
}
.mr-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  cursor: pointer;
  padding: 16px 0;
  border-bottom: 1px solid rgba(31,59,91,0.08);
  text-decoration: none;
  color: inherit;
  border-top: none;
  border-left: none;
  border-right: none;
}
.mr-row:first-child { padding-top: 0; }
.mr-row:last-child { border-bottom: none; padding-bottom: 0; }
.mr-row:hover .mr-title { color: var(--pink); }
.mr-row:hover { border-bottom-color: rgba(31,59,91,0.08); }
.mr-num {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}
.mr-title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 4px;
  transition: color 0.3s var(--ease-expo);
}
.mr-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.65rem;
  color: rgba(31,59,91,0.55);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

/* ── Newsletter block (pink-tinted island) ── */
.side-block-ed.newsletter {
  background: rgba(218,140,173,0.12);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "360°";
  position: absolute;
  right: -20px; top: -28px;
  font-family: var(--font-disp);
  font-style: italic; font-weight: 700;
  font-size: 11rem;
  line-height: 1;
  color: rgba(218,140,173,0.16);
  pointer-events: none;
  letter-spacing: -0.06em;
}
.newsletter-eyebrow { color: var(--pink) !important; position: relative; z-index: 1; }
.newsletter .side-h { color: var(--navy); position: relative; z-index: 1; }
.newsletter p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.nl-form {
  display: flex; flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.nl-form input {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(31,59,91,0.12);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy);
  outline: none;
  transition: all 0.3s var(--ease-expo);
}
.nl-form input:focus {
  background: var(--white);
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(218,140,173,0.18);
}
.nl-form input::placeholder { color: rgba(31,59,91,0.4); }
.nl-form button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-expo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.nl-form button:hover {
  background: var(--pink);
  transform: translateY(-1px);
}
.nl-form button .arr {
  transition: transform 0.3s var(--ease-expo);
  display: inline-block;
}
.nl-form button:hover .arr { transform: translateX(4px); }
.nl-fine {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(31,59,91,0.55);
  margin-top: 4px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .blog-layout-ed {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .blog-side-ed {
    position: static;
    flex-direction: column;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .featured-cover-ed { aspect-ratio: 16 / 11; }
  .blog-pair-ed { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .s-blog-hero-ed {
    padding: 100px 24px 40px;
    min-height: 60vh;
  }
  .bhe-floor {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bhe-search { min-width: 0; width: 100%; }
  .blog-grid-new { grid-template-columns: 1fr; gap: 40px; }
  .featured-cover-ed { aspect-ratio: 4 / 5; }
  .fce-foot { left: 24px; right: 24px; bottom: 24px; }
  .fce-title { max-width: 100%; }
  .fce-meta { left: 20px; top: 20px; }
  .bte-inner { padding: 14px 0; }
  /* Eyebrow-Leiste auf Mobile sauber stapeln statt doppelt umzubrechen */
  .bhe-eyebrow-bar {
    flex-wrap: wrap;
    gap: 4px 16px;
    padding-bottom: 14px;
  }
  .bhe-eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; line-height: 1.4; }
}
@media (max-width: 480px) {
  .bhe-issue { display: none; }
}

/* ═══════════════════════════════════════════
   PAGE TRANSITIONS — richtungsabhängige Crossfades
   Steuerung: data-vt am <html>, gesetzt in main.js
   via pageswap (out) + pagereveal (in).
   Nicht-unterstützende Browser laden ganz normal weiter.
═══════════════════════════════════════════ */
@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 260ms;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
  animation-fill-mode: both;
  mix-blend-mode: normal;
}

/* — Default: schlanker Crossfade (cross-category, fallback) — */
::view-transition-old(root) { animation-name: vt-fade-out; }
::view-transition-new(root) { animation-name: vt-fade-in; }

@keyframes vt-fade-out { to   { opacity: 0; } }
@keyframes vt-fade-in  { from { opacity: 0; } }

/* — slide-left: lateral vorwärts (z. B. Blog → Steuernews → Tax TV) — */
html[data-vt="slide-left"] ::view-transition-old(root) { animation-name: vt-out-left; }
html[data-vt="slide-left"] ::view-transition-new(root) { animation-name: vt-in-right; }
@keyframes vt-out-left { to   { transform: translateX(-3%); opacity: 0; } }
@keyframes vt-in-right { from { transform: translateX(3%);  opacity: 0; } }

/* — slide-right: lateral rückwärts (z. B. Tax TV → Steuernews → Blog) — */
html[data-vt="slide-right"] ::view-transition-old(root) { animation-name: vt-out-right; }
html[data-vt="slide-right"] ::view-transition-new(root) { animation-name: vt-in-left; }
@keyframes vt-out-right { to   { transform: translateX(3%);  opacity: 0; } }
@keyframes vt-in-left   { from { transform: translateX(-3%); opacity: 0; } }

/* — slide-up: tiefer in About-Stack (Wer-wir-sind → Was-wir-tun → Finanzpower) — */
html[data-vt="slide-up"] ::view-transition-old(root) { animation-name: vt-out-up; }
html[data-vt="slide-up"] ::view-transition-new(root) { animation-name: vt-in-bottom; }
@keyframes vt-out-up    { to   { transform: translateY(-2.5%); opacity: 0; } }
@keyframes vt-in-bottom { from { transform: translateY(2.5%);  opacity: 0; } }

/* — slide-down: zurück im About-Stack — */
html[data-vt="slide-down"] ::view-transition-old(root) { animation-name: vt-out-down; }
html[data-vt="slide-down"] ::view-transition-new(root) { animation-name: vt-in-top; }
@keyframes vt-out-down { to   { transform: translateY(2.5%);  opacity: 0; } }
@keyframes vt-in-top   { from { transform: translateY(-2.5%); opacity: 0; } }

/* — rise: Ziel = Kontakt (CTA kommt sanft hoch) — */
html[data-vt="rise"] ::view-transition-old(root) {
  animation-name: vt-fade-out;
  animation-duration: 200ms;
}
html[data-vt="rise"] ::view-transition-new(root) {
  animation-name: vt-rise-in;
  animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.16, .84, .3, 1);
}
@keyframes vt-rise-in { from { transform: translateY(2%); opacity: 0; } }

/* — sink: Quelle = Kontakt (zurück in den Content) — */
html[data-vt="sink"] ::view-transition-old(root) { animation-name: vt-sink-out; }
html[data-vt="sink"] ::view-transition-new(root) { animation-name: vt-fade-in; }
@keyframes vt-sink-out { to { transform: translateY(1.5%); opacity: 0; } }

/* — zoom-in: Home → Unterseite (Eintauchen ins Thema) — */
html[data-vt="zoom-in"] ::view-transition-old(root) {
  animation-name: vt-zoom-old-out;
  animation-duration: 240ms;
}
html[data-vt="zoom-in"] ::view-transition-new(root) {
  animation-name: vt-zoom-new-in;
  animation-duration: 340ms;
  animation-timing-function: cubic-bezier(.16, .84, .3, 1);
}
@keyframes vt-zoom-old-out { to   { transform: scale(.985); opacity: 0; } }
@keyframes vt-zoom-new-in  { from { transform: scale(1.015); opacity: 0; } }

/* — zoom-out: Unterseite → Home (zurückziehen) — */
html[data-vt="zoom-out"] ::view-transition-old(root) {
  animation-name: vt-zoom-back-old;
  animation-duration: 240ms;
}
html[data-vt="zoom-out"] ::view-transition-new(root) {
  animation-name: vt-zoom-back-new;
  animation-duration: 320ms;
}
@keyframes vt-zoom-back-old { to   { transform: scale(1.02); opacity: 0; } }
@keyframes vt-zoom-back-new { from { transform: scale(.99);  opacity: 0; } }

/* — Reduced motion: alle Varianten auf simplen Fade reduzieren — */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 140ms !important;
    animation-timing-function: ease !important;
  }
  html[data-vt] ::view-transition-old(root) { animation-name: vt-fade-out !important; }
  html[data-vt] ::view-transition-new(root) { animation-name: vt-fade-in  !important; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS  ·  Polished phone layout
   Scoped strictly under ≤768px (and ≤480px for tiny phones).
   Desktop layout above 768px stays exactly as-is.
══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* iOS: prevent auto-zoom on field focus */
  .cf-field input,
  .cf-field textarea,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    font-size: 16px;
  }

  /* ── HEADER ── */
  .site-header { height: 64px; padding: 0 20px; }
  .hdr-logo img { height: 30px; }
  .hdr-cta {
    font-size: 0.76rem;
    padding: 8px 16px;
    letter-spacing: 0;
  }
  .mobile-overlay nav { gap: 22px; padding: 24px; }
  .mob-link { font-size: clamp(1.7rem, 7vw, 2.4rem); padding: 4px 0; }
  .mob-cta { padding: 13px 30px; font-size: 0.95rem; margin-top: 10px; }

  /* ── HERO V4 — Full-bleed cinematic magazine cover ──
     Photo becomes the full hero stage. Text overlays with gradient. ── */
  .s-hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding: 90px 22px 32px !important;
    gap: 0 !important;
    grid-template-rows: none !important;
    position: relative !important;
    isolation: isolate;
    overflow: hidden !important;
  }
  .hero-grain {
    z-index: 2 !important;
    opacity: 0.05 !important;
  }

  /* Photo as full-bleed background */
  .hero-card {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    z-index: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    clip-path: none !important;
    box-shadow: none !important;
    transform: none !important;
    align-self: stretch !important;
    order: 0 !important;
  }
  .hero-card.revealed { clip-path: none !important; }
  .hero-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    opacity: 0.9 !important;
    transform: none !important;
    filter: contrast(1.04) saturate(0.92);
  }

  /* Heavy navy gradient overlay — light at top (face shows), dark at bottom (CTAs readable) */
  .s-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(22,42,64,0.32) 0%,
        rgba(22,42,64,0.42) 28%,
        rgba(22,42,64,0.78) 60%,
        rgba(22,42,64,0.97) 100%);
    z-index: 1;
    pointer-events: none;
  }

  /* Hide the corner name/role overlay on mobile — photo speaks for itself */
  .hero-card-meta { display: none !important; }

  /* All text floats above gradient */
  .hero-top, .hero-body, .hero-floor {
    position: relative;
    z-index: 3;
  }

  /* Top: tiny eyebrow stack with pink accent */
  .hero-top {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
  }
  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }
  .hero-top::after {
    content: '';
    display: block;
    width: 34px;
    height: 1.5px;
    background: var(--pink);
    margin-top: 14px;
  }

  /* Headline: dominant centerpiece with text shadow for legibility on photo */
  .hero-body {
    order: 2 !important;
    display: block !important;
    padding-bottom: 0;
    margin: 0 !important;
  }
  .hero-headline { margin: 0; }
  .hero-l1, .hero-l2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.045em !important;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  }
  .hero-l3 {
    font-size: clamp(2.2rem, 10.5vw, 3.4rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.03em !important;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  }

  /* Floor: description + stacked CTAs at bottom */
  .hero-floor {
    order: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 22px;
    margin: 0 !important;
    width: 100%;
  }
  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    max-width: 100%;
    margin: 0;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  }
  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
  }
  .hero-btn-prim {
    justify-content: center;
    width: 100%;
    padding: 15px 22px;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 28px rgba(218,140,173,0.35);
  }
  .hero-btn-sec {
    justify-content: center;
    width: 100%;
    padding: 14px 22px;
    font-size: 0.86rem;
    border: 1px solid rgba(255,255,255,0.32) !important;
    border-radius: 100px !important;
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.06);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .hero-btn-sec:hover {
    border-color: rgba(255,255,255,0.6) !important;
    background: rgba(255,255,255,0.14);
  }
  .hero-scroll-hint { display: none !important; }

  /* ── STATS ── */
  .s-stats {
    padding: 40px 22px;
    border-radius: 22px 22px 0 0;
    margin-top: -28px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-block {
    padding: 28px 16px;
    border-right: 1px solid rgba(31,59,91,0.08);
    border-bottom: 1px solid rgba(31,59,91,0.08);
  }
  .stat-block:nth-child(2n) { border-right: none; }
  .stat-block:nth-child(3),
  .stat-block:nth-child(4) { border-bottom: none; }
  .stat-block:first-child { padding-left: 16px; }
  .stat-num-inner { font-size: clamp(2.5rem, 11vw, 3.6rem); letter-spacing: -0.05em; }
  .stat-unit { font-size: clamp(1.05rem, 4.4vw, 1.6rem); }
  .stat-label-top { font-size: 0.58rem; letter-spacing: 0.18em; margin-bottom: 8px; }
  .stat-desc { font-size: 0.74rem; line-height: 1.5; margin-top: 8px; color: rgba(31,59,91,0.55); }

  /* ── ABOUT ── */
  .s-about { overflow: hidden; }
  .about-image {
    height: clamp(300px, 62vw, 420px);
    min-height: 300px;
    border-bottom: 3px solid var(--pink);
  }
  .about-image img {
    object-position: center 25%;
    transform: scale(1) !important;
  }
  .about-img-overlay {
    padding: 64px 22px 20px;
    background: linear-gradient(to top, rgba(22,42,64,0.85) 0%, rgba(22,42,64,0.2) 65%, transparent 100%);
    border-bottom: none;
  }
  .about-img-overlay span { font-size: 0.66rem; }
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 22px;
  }
  .about-eyebrow { font-size: 0.62rem; margin-bottom: 14px; }
  .about-quote-wrap { margin-bottom: 24px; }
  .about-q1, .about-q2, .about-q3 {
    font-size: clamp(1.6rem, 7.5vw, 2.4rem);
    line-height: 1.18;
  }
  .about-body p { font-size: 0.94rem; line-height: 1.7; margin-bottom: 14px; }
  .btn-inline { font-size: 0.86rem; }

  /* ── SERVICES (number stacked above title — more breathing room) ── */
  .s-services { padding: 64px 22px; }
  .srv-hd { margin-bottom: 40px; }
  .srv-eyebrow { font-size: 0.62rem; margin-bottom: 12px; }
  .srv-heading { font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 0.95; }
  .srv-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 28px 0;
    align-items: start;
  }
  .srv-row-num {
    display: block;
    font-size: 1.5rem;
    padding-top: 0;
    margin-bottom: 6px;
    opacity: 0.85;
    line-height: 1;
  }
  .srv-row-body { padding: 0; }
  .srv-row-title { font-size: 1.18rem; line-height: 1.22; margin-bottom: 8px; }
  .srv-row-desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 14px; }
  .srv-row-tags { gap: 6px; }
  .srv-row-tags li { font-size: 0.66rem; padding: 3px 9px; }

  /* ── MARQUEE ── */
  .s-marquee { padding: 44px 0; }
  .marquee-label { font-size: 0.62rem; margin-bottom: 22px; }
  .marquee-name { font-size: 1.05rem; padding: 0 18px; }
  .marquee-sep { font-size: 1.1rem; }
  .marquee-track-wrap {
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  }
  .marquee-track { animation-duration: 22s; }

  /* ── PROCESS ── */
  .s-process {
    padding: 64px 22px;
    border-radius: 22px 22px 0 0;
    margin-top: -28px;
  }
  .proc-header { margin-bottom: 36px; }
  .proc-heading { font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 0.95; }
  .proc-list { gap: 0; }
  .proc-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 26px 0;
  }
  .proc-num {
    font-size: 0.6rem;
    padding: 4px 11px;
    align-self: flex-start;
    letter-spacing: 0.14em;
  }
  .proc-content { padding-top: 0; }
  .proc-hr { margin-bottom: 14px; height: 2px; }
  .proc-item.visible .proc-hr { width: 48px; }
  .proc-content h3 { font-size: 1.18rem; margin-bottom: 6px; line-height: 1.25; }
  .proc-content p { font-size: 0.88rem; line-height: 1.65; }

  /* ── TESTIMONIAL ── */
  .s-testimonial { padding: 60px 22px; }
  .testi-eyebrow { font-size: 0.62rem; margin-bottom: 24px; }
  .testi-quote { margin-bottom: 30px; }
  .tq-l1, .tq-l2, .tq-l3, .tq-l4 {
    font-size: clamp(1.35rem, 6.4vw, 2.1rem);
    line-height: 1.22;
  }
  .testi-attr { gap: 14px; }
  .testi-attr-line { width: 22px; }
  .testi-attr-name { font-size: 0.92rem; }
  .testi-attr-role { font-size: 0.7rem; }

  /* ── FINANZPOWER ── */
  .s-finanzpower {
    padding: 64px 22px;
    border-radius: 22px 22px 0 0;
    margin-top: -28px;
  }
  .fp-inner { gap: 36px; }
  .fp-book {
    padding: 0 8px;
  }
  .fp-book img {
    max-width: 320px;
    width: 100%;
    transform: rotate(-1.5deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(218,140,173,0.12);
    border-radius: 2px;
  }
  .fp-eyebrow { font-size: 0.62rem; margin-bottom: 14px; }
  .fp-heading { font-size: clamp(2.2rem, 10vw, 3.2rem); margin-bottom: 18px; }
  .fp-award { padding: 8px 16px; margin-bottom: 22px; }
  .fp-award-text { font-size: 0.65rem; letter-spacing: 0.08em; }
  .fp-desc { font-size: 0.92rem; line-height: 1.7; margin-bottom: 24px; }

  /* ── NEWS / FAQ ── */
  .s-news {
    padding: 64px 22px;
    border-radius: 22px 22px 0 0;
    margin-top: -28px;
  }
  .news-heading { margin-bottom: 36px; }
  .news-heading .line-inner { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .news-grid { grid-template-columns: 1fr; gap: 12px; }
  .news-item {
    padding: 24px 20px;
    border-radius: 16px;
    border: 1px solid rgba(218,140,173,0.15);
    box-shadow: 0 1px 3px rgba(31,59,91,0.04);
  }
  .news-item:hover { transform: none; box-shadow: 0 4px 16px rgba(218,140,173,0.18); }
  .news-hr { height: 2px; }
  .news-item.visible .news-hr { width: 36px; }
  .news-tag { font-size: 0.62rem; letter-spacing: 0.16em; margin-bottom: 8px; }
  .news-item h3 { font-size: 1.05rem; line-height: 1.3; margin-bottom: 10px; }
  .news-item p { font-size: 0.86rem; line-height: 1.62; color: rgba(31,59,91,0.6); }

  /* ── CONTACT ── */
  .s-contact {
    padding: 64px 22px;
    min-height: auto;
    border-radius: 22px 22px 0 0;
    margin-top: -28px;
    align-items: flex-start;
  }
  .contact-canvas { height: 36%; opacity: 0.4; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 80px;
  }
  .contact-heading { padding-right: 0; }
  .ct-l1, .ct-l2, .ct-l3 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: 0.95;
  }
  .contact-plus { font-size: clamp(2.8rem, 13vw, 4.2rem); margin-top: 4px; }

  .contact-form { padding: 22px 20px; border-radius: 16px; margin-bottom: 22px; }
  .cf-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .cf-field label { font-size: 0.7rem; }
  .cf-field input,
  .cf-field textarea {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .cf-field textarea { min-height: 100px; }
  .cf-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 6px;
  }
  .cf-check { font-size: 0.74rem; line-height: 1.5; }
  .cf-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.92rem;
  }

  .contact-info { gap: 8px; padding-top: 4px; }
  .contact-info a,
  .contact-info span { font-size: 0.84rem; }

  /* ── FOOTER ── */
  .site-footer { padding: 28px 22px; }
  .ftr-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .ftr-brand img { height: 30px; }
  .ftr-links { gap: 12px 18px; }
  .ftr-links a { font-size: 0.74rem; }
  .ftr-social { gap: 14px; }
  .ftr-copy {
    width: 100%;
    font-size: 0.7rem;
    padding-top: 14px;
    margin-top: 2px;
  }

  /* ── SUBPAGE PAGE-HERO ── */
  .s-page-hero {
    padding: 100px 22px 56px;
    min-height: 50vh;
  }
  .ph-eyebrow { font-size: 0.62rem; margin-bottom: 16px; }
  .ph-l1 { font-size: clamp(2.6rem, 13vw, 4.4rem); line-height: 0.95; }
  .ph-l2 { font-size: clamp(2.1rem, 10.5vw, 3.6rem); line-height: 1; }
  .ph-hr { margin-top: 36px; }
}

/* ── Tiny phones (≤480px): extra tight ── */
@media (max-width: 480px) {
  .site-header { padding: 0 16px; }
  .hdr-cta { font-size: 0.72rem; padding: 7px 14px; }

  /* Hero V4 — keep full-bleed cinematic, just tighter */
  .s-hero { padding: 86px 18px 28px !important; }
  .hero-l1, .hero-l2 { font-size: clamp(2.5rem, 12.5vw, 3.6rem) !important; }
  .hero-l3 { font-size: clamp(2rem, 10.5vw, 2.9rem) !important; }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.18em; }
  .hero-top::after { width: 28px; margin-top: 12px; }
  .hero-floor { padding-top: 20px; gap: 16px !important; }
  .hero-desc { font-size: 0.9rem; line-height: 1.55; }
  .hero-btn-prim { padding: 14px 18px; font-size: 0.9rem; }
  .hero-btn-sec { padding: 13px 18px; font-size: 0.84rem; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat-block {
    padding: 22px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(31,59,91,0.08);
  }
  .stat-block:last-child { border-bottom: none; }
  .stat-block:first-child { padding-left: 0; }
  .stat-num-inner { font-size: clamp(2.6rem, 12vw, 3.6rem); }

  .about-content,
  .s-services,
  .s-process,
  .s-testimonial,
  .s-finanzpower,
  .s-news,
  .s-contact,
  .site-footer,
  .s-page-hero { padding-left: 18px; padding-right: 18px; }

  /* keep services in single column at tiny phones too */
  .srv-row { grid-template-columns: 1fr; gap: 4px; padding: 24px 0; }
  .srv-row-num { font-size: 1.4rem; margin-bottom: 4px; }
  .srv-row-title { font-size: 1.1rem; }
  .srv-heading,
  .proc-heading,
  .news-heading .line-inner { font-size: clamp(2.1rem, 11vw, 3rem); }

  .news-item { padding: 22px 18px; }
  .contact-form { padding: 20px 16px; }
  .contact-canvas { display: none; }
  .contact-inner { padding-top: 0; }

  .ftr-links { gap: 10px 14px; }
  .ftr-links a { font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER MENU — REBUILT FROM SCRATCH (2026-05-08)
   Two separate buttons: open in header, close inside overlay.
   Overlay z-index 9000 — above absolutely everything.
   No hover/toggle conflicts. Same on every device.
═══════════════════════════════════════════════════════════════ */

/* OPEN button (in header) — large tap target, white X when open */
.hdr-menu {
  position: relative;
  z-index: 5;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 14px 8px !important;
  width: 48px !important;
  height: 44px !important;
  display: none;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
@media (max-width: 900px) {
  .hdr-menu { display: flex !important; }
}
.hdr-menu > span {
  display: block;
  width: 100% !important;
  height: 1.5px !important;
  background: var(--navy);
  transition: background 0.2s, transform 0.3s var(--ease-77, cubic-bezier(0.77, 0, 0.175, 1));
  pointer-events: none;
}
/* Header transparent over hero -> white hamburger */
.site-header:not(.scrolled) .hdr-menu > span { background: var(--white); }
/* When menu is open, hide the hamburger entirely (close button takes over inside overlay) */
body.menu-open .hdr-menu { opacity: 0; pointer-events: none; }

/* OVERLAY — z 9000, above all */
.mobile-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: var(--navy) !important;
  z-index: 9000 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-77, cubic-bezier(0.77, 0, 0.175, 1)), visibility 0s linear 0.3s;
  -webkit-overflow-scrolling: touch;
}
.mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s var(--ease-77, cubic-bezier(0.77, 0, 0.175, 1)), visibility 0s linear 0s;
}

/* CLOSE button inside overlay — top right, always visible above everything */
.mobile-close {
  position: absolute !important;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.mobile-close:hover,
.mobile-close:focus-visible {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  outline: none;
}
.mobile-close:active { transform: scale(0.94); }
.mobile-close svg { display: block; pointer-events: none; }

/* Nav inside overlay (wins over older .mobile-overlay nav rule) */
.mobile-overlay > nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
  align-items: center;
  padding: 24px;
}
.mobile-overlay .mob-link {
  font-family: var(--font-disp, 'Playfair Display', serif);
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  padding: 4px 0;
  -webkit-tap-highlight-color: transparent;
}
.mobile-overlay .mob-link:hover,
.mobile-overlay .mob-link:active { color: var(--white); }
.mobile-overlay .mob-cta {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1rem;
  color: var(--white);
  background: var(--pink);
  border-radius: 100px;
  padding: 14px 32px;
  margin-top: 8px;
}

/* Body / html scroll lock when menu open — simplest reliable pattern */
body.menu-open,
html.menu-open {
  overflow: hidden !important;
  height: 100% !important;
}

/* Old conflicting rules off — defensive in case of cache */
.mobile-overlay.open { /* legacy class - aliased to .is-open */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════
   NAV PANEL v2 — completely fresh implementation
   New class names (.nav-trigger, .nav-panel, .nav-close, .nav-link)
   so absolutely zero conflict with any old/cached CSS.
═══════════════════════════════════════════════════════════════ */

/* Trigger (open) — sits in header, large tap target */
.nav-trigger {
  display: none;
  position: relative;
  z-index: 5;
  background: none;
  border: none;
  padding: 14px 8px;
  width: 48px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
@media (max-width: 1080px) {
  .nav-trigger { display: flex; }
}
.nav-trigger > span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--navy);
  pointer-events: none;
  transition: background 0.2s;
}
.site-header:not(.scrolled) .nav-trigger > span {
  background: var(--white);
}
/* Hide the trigger entirely once the panel is open (close button takes over) */
html.nav-open .nav-trigger,
body.nav-open .nav-trigger { opacity: 0; pointer-events: none; }

/* Panel (overlay) — z-index 9000, above everything.
   Always in flow as display:flex; toggles via opacity + visibility
   so transitions are smooth and there's no race condition. */
.nav-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--navy, #1F3B5B);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.77, 0, 0.175, 1),
              visibility 0s linear 0.32s;
  -webkit-overflow-scrolling: touch;
  will-change: opacity;
}
.nav-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.32s cubic-bezier(0.77, 0, 0.175, 1),
              visibility 0s linear 0s;
}

/* Close button inside panel */
.nav-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top, 16px));
  right: max(16px, env(safe-area-inset-right, 16px));
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-close:hover,
.nav-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}
.nav-close:active { transform: scale(0.94); }
.nav-close svg { display: block; pointer-events: none; }

/* Nav inside panel */
.nav-panel > nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  padding: 24px;
  align-items: center;
}
.nav-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 4px 0;
  /* polished entrance: each link fades & lifts in on stagger */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-panel.is-open .nav-link {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger: each link fades in 60ms after the previous one */
.nav-panel.is-open .nav-link:nth-child(1) { transition-delay: 0.10s, 0.10s, 0s; }
.nav-panel.is-open .nav-link:nth-child(2) { transition-delay: 0.16s, 0.16s, 0s; }
.nav-panel.is-open .nav-link:nth-child(3) { transition-delay: 0.22s, 0.22s, 0s; }
.nav-panel.is-open .nav-link:nth-child(4) { transition-delay: 0.28s, 0.28s, 0s; }
.nav-panel.is-open .nav-link:nth-child(5) { transition-delay: 0.34s, 0.34s, 0s; }
.nav-panel.is-open .nav-link:nth-child(6) { transition-delay: 0.40s, 0.40s, 0s; }
.nav-panel.is-open .nav-link:nth-child(7) { transition-delay: 0.46s, 0.46s, 0s; }

.nav-link:hover,
.nav-link:active { color: #fff; }
.nav-link-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #fff;
  background: var(--pink, #DA8CAD);
  border-radius: 100px;
  padding: 14px 32px;
  margin-top: 8px;
}

/* Body / html scroll lock */
html.nav-open,
body.nav-open {
  overflow: hidden !important;
  height: 100% !important;
}

/* ═══════════════════════════════════════════════════════════════
   HORIZONTAL OVERFLOW LOCKDOWN
   Stops the page from scrolling sideways or showing the white
   "void" outside the layout when the user swipes left/right on
   mobile. Multiple layers because iOS Safari is sneaky.
═══════════════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
  -webkit-overscroll-behavior-x: none;
}
main {
  overflow-x: clip;
  max-width: 100%;
}

/* Each top-level section clips its decorative elements (giant watermarks,
   tilted text, off-screen ::before/::after decorations) on mobile */
@media (max-width: 768px) {
  .s-hero,
  .s-stats,
  .s-about,
  .s-services,
  .s-marquee,
  .s-process,
  .s-testimonial,
  .s-finanzpower,
  .s-news,
  .s-contact,
  .site-footer,
  .s-page-hero,
  .s-blog-hero-ed,
  .s-philosophy,
  .s-wwt-services,
  .s-wwt-industries,
  .s-wwt-cta,
  .s-news-ticker,
  .s-blog-section { overflow-x: clip; max-width: 100%; }

  /* min-width values that exceed tiny viewports — neutralise on mobile */
  .blog-search-wrap,
  .bhe-search,
  .blog-section-title,
  #blog-search,
  .tv-lightbox-meta h3,
  .dl-btn { min-width: 0 !important; }

  /* Decorative watermarks that lean over the right edge */
  .s-page-hero::before,
  .bhe-watermark { right: 0 !important; max-width: 100%; }
}

/* ══════════════════════════════════════════
   FEEDBACK-ÜBERARBEITUNG (360-Webseite)
   Einheitliche CTAs · klare Ausrichtung · Struktur
══════════════════════════════════════════ */

/* ── Glyph-Clipping in animierten Überschriften verhindern
   (z. B. „J" bei „Jetzt", kursives „p", Ober-/Unterlängen).
   overflow:clip + clip-margin gibt Raum OHNE Layout-Verschiebung. ── */
.ph-headline .line-wrap,
.hero-headline .line-wrap,
.contact-heading .line-wrap,
.proc-header .line-wrap,
.news-heading .line-wrap,
.about-quote-wrap .line-wrap,
.testi-quote .line-wrap,
.bhe-title .line-wrap,
.wwt-cta-heading .line-wrap,
.s-page-hero .line-wrap {
  overflow: clip;
  overflow-clip-margin: 0.42em;
}

/* ── Einheitlicher, auffälliger Pink-Pill-CTA (überall gleich) ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  border-radius: 100px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(218,140,173,0.32);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-cta:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(218,140,173,0.42);
}
.art-source-cta { margin: 8px 0 32px; }
.art-content a[target="_blank"] { text-decoration-color: var(--pink); }

/* ── WAS WIR TUN: alle Nummern links – keine wechselnde Ausrichtung.
   NUR Desktop! Sonst überschreibt diese Regel das mobile 1-Spalten-Layout
   und zwingt 220px+1fr+1fr in den Handy-Viewport → Text wird abgeschnitten. ── */
@media (min-width: 1025px) {
  .wwt-srv:nth-child(even) {
    grid-template-columns: 220px 1fr 1fr;
  }
  .wwt-srv:nth-child(even) .wwt-srv-meta {
    order: 0;
    text-align: left;
    align-items: flex-start;
  }
  .wwt-srv:nth-child(even) .wwt-srv-body { order: 0; }
  .wwt-srv:nth-child(even) .wwt-srv-points { order: 0; }
}

/* ── WER WIR SIND – Testimonial: Zitat neben dem Bild, größer als Statement ── */
.s-testimonial--split {
  text-align: left;
  /* Feine Naht/Linie an der Abschnittsgrenze (grauer Team-Abschnitt → rosa
     Testimonial) verhindern: bei HiDPI/Zoom kann die Kante zweier Vollflächen
     auf ein Sub-Pixel fallen und als Hairline erscheinen. Der rosa Abschnitt
     überlappt den darüber um 1px und deckt die Kante damit ab. */
  margin-top: -1px;
  position: relative;
  z-index: 1;
}
/* White card floating on the soft-pink section */
.s-testimonial--split .testi-card {
  display: grid;
  grid-template-columns: clamp(200px, 24vw, 260px) 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4.5vw, 64px);
  box-shadow: 0 30px 80px -30px rgba(31, 59, 91, 0.28);
  border: 1px solid rgba(218, 140, 173, 0.18);
}
/* Portrait column */
.s-testimonial--split .testi-photo {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.s-testimonial--split .testi-portrait-wrap {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 48px -16px rgba(31, 59, 91, 0.32);
}
.s-testimonial--split .testi-name strong {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.s-testimonial--split .testi-name span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.4;
}
/* Quote column */
.s-testimonial--split .testi-quote {
  position: relative;
  margin: 0;
}
.s-testimonial--split .testi-mark {
  display: block;
  font-family: var(--font-disp);
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  line-height: 0.5;
  color: var(--pink);
  opacity: 0.55;
  margin-bottom: clamp(12px, 1.6vw, 20px);
  user-select: none;
}
.s-testimonial--split .testi-quote blockquote {
  margin: 0;
}
.s-testimonial--split .testi-quote blockquote p {
  font-family: var(--font-disp);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.32;
  margin: 0;
  letter-spacing: -0.01em;
}
.s-testimonial--split .testi-quote blockquote footer {
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 22px;
  border-top: 1px solid rgba(218, 140, 173, 0.28);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.s-testimonial--split .testi-quote blockquote cite {
  font-family: var(--font-disp);
  font-style: normal;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
}
.s-testimonial--split .testi-quote blockquote footer span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .s-testimonial--split .testi-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(28px, 7vw, 44px);
    text-align: left;
  }
  .s-testimonial--split .testi-photo {
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  .s-testimonial--split .testi-portrait-wrap {
    width: 96px;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════════════════════
   LEGAL / PROSE PAGES  (Impressum · Datenschutz · Disclaimer)
   ══════════════════════════════════════════════════════════ */
.s-legal {
  background: var(--white);
  padding: clamp(56px, 8vw, 120px) var(--side);
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal-wrap .legal-intro {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(31,59,91,0.1);
}
.legal-block {
  margin-bottom: 44px;
}
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-family: var(--font-disp);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.legal-block h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
  margin: 32px 0 12px;
}
.legal-block p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(78,125,166,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.legal-block a:hover { color: var(--navy); border-color: var(--navy); }
.legal-block strong { color: var(--navy); font-weight: 700; }
/* Definition-style key/value rows (Impressum) */
.legal-dl {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 6px 28px;
  margin: 4px 0 8px;
}
.legal-dl dt {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.legal-dl dd {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.legal-card {
  background: var(--gray);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  margin-top: 8px;
}
.legal-card p { margin-bottom: 6px; }
/* AAB — download button + embedded PDF */
.legal-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: 100px;
  border-bottom: none !important;
  transition: background 0.25s, transform 0.25s;
}
.legal-download:hover {
  background: var(--accent);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.legal-pdf {
  margin-top: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(31,59,91,0.12);
  background: var(--gray);
}
.legal-pdf object,
.legal-pdf iframe {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: 0;
}
@media (max-width: 600px) {
  .legal-dl { grid-template-columns: 1fr; gap: 2px 0; }
  .legal-dl dd { margin-bottom: 12px; }
  .legal-card { padding: 22px 22px; }
  .legal-pdf object, .legal-pdf iframe { height: 70vh; min-height: 460px; }
}

/* ── Subpage-Hero „Beratung," : Unterlänge des „g" + Komma nie abschneiden.
   ph-l1 hat line-height 0.9; der nötige Freiraum wächst mit der Schriftgröße.
   Ein fixer clip-margin (em vom 16px-Default) reicht bei breitem Viewport (bis
   11rem) nicht. Lösung: der .line-wrap bekommt dieselbe font-size wie die
   Headline – dann skaliert „em" mit. (Beeinflusst NICHT die Textgröße, die
   setzt .line-inner selbst.) 0.3em deckt die Unterlänge sicher ab, bleibt aber
   klar unter dem 160%-Versatz des noch nicht eingeblendeten Textes. ── */
.s-page-hero .ph-headline .line-wrap {
  font-size: clamp(3.5rem, 9vw, 11rem);
  overflow-clip-margin: 0.3em;
}
@media (max-width: 768px) {
  .s-page-hero .ph-headline .line-wrap { font-size: clamp(2.6rem, 13vw, 4.4rem); }
}
