/* ============================================================
   thinking hands GmbH — Design System
   ============================================================ */
:root {
  /* Brand */
  --olive: #3F5526;
  --moss: #76855A;
  --sage: #A9B091;
  --sage-light: #CDD1BC;
  --cream: #E9E7DC;
  --offwhite: #F7F6F2;
  --white: #FFFFFF;
  --ink: #20241A;
  --muted: #5C5F55;

  --olive-hover: #4d6630;

  /* Type */
  --font: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Bricolage Grotesque", "Nunito Sans", system-ui, sans-serif;
  --font-accent: "Fraunces", Georgia, serif;

  /* Geometry */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 26px;
  --pad-x: clamp(20px, 5vw, 44px);
  --section-y: clamp(72px, 12vw, 136px);

  /* Borders / shadow — layered, soft */
  --border: 1px solid rgba(140,148,115,.32);
  --shadow-sm:
    0 1px 1px rgba(31,33,24,.03),
    0 2px 6px rgba(31,33,24,.04),
    0 10px 26px rgba(31,33,24,.05);
  --shadow-md:
    0 1px 2px rgba(31,33,24,.04),
    0 6px 16px rgba(31,33,24,.06),
    0 20px 44px rgba(31,33,24,.09),
    0 42px 90px rgba(31,33,24,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.4,.5,1);
}


html[data-display="fraunces"] { --font-display: "Fraunces", Georgia, serif; }
html[data-display="fraunces"] h1,
html[data-display="fraunces"] h2 { font-weight: 560; letter-spacing: -.015em; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3 { margin: 0; color: var(--ink); }
h1, h2 { font-family: var(--font-display); font-weight: 640; line-height: 1.04; letter-spacing: -.022em; }
h1 { font-size: clamp(42px, 6.6vw, 78px); letter-spacing: -.028em; line-height: 1.01; }
h2 { font-size: clamp(30px, 4.4vw, 46px); text-wrap: balance; }
h3 { font-size: clamp(20px, 2.4vw, 23px); font-weight: 700; line-height: 1.25; letter-spacing: -.012em; }
p { margin: 0; text-wrap: pretty; }

/* one accented word per headline — italic serif counterpoint */
.accent { font-family: var(--font-accent); font-style: italic; font-weight: 480; letter-spacing: -.005em; }
html[data-accent="farbe"] .accent { font-family: inherit; font-style: normal; font-weight: inherit; letter-spacing: inherit; color: var(--moss); }
html[data-accent="aus"] .accent { font-family: inherit; font-style: normal; font-weight: inherit; letter-spacing: inherit; color: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--moss);
  margin: 0 0 20px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 1px; background: currentColor; opacity: .5; flex: 0 0 auto; }
.lead { font-size: clamp(18px, 2.1vw, 21px); line-height: 1.62; color: var(--muted); }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); position: relative; overflow: hidden; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--off { background: var(--offwhite); }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 20px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .cols-3 { grid-template-columns: 1fr; } }
@media (max-width: 580px) { .cols-2, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font: inherit; font-weight: 700; font-size: 16px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: all .25s var(--ease);
  white-space: nowrap; text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--moss); outline-offset: 3px; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(180deg, #4a6330 0%, var(--olive) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 1px 2px rgba(31,33,24,.18), 0 6px 18px rgba(63,85,38,.20);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #557139 0%, #47602c 100%);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 2px 4px rgba(31,33,24,.14), 0 14px 30px rgba(63,85,38,.30);
}

.btn--secondary { background: transparent; color: var(--olive); border-color: rgba(63,85,38,.55); border-width: 1.5px; padding: 14.5px 28px; }
.btn--secondary:hover { background: rgba(205,209,188,.35); border-color: var(--olive); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--ghost { background: transparent; color: var(--olive); padding: 12px 0; font-weight: 700; }
.btn--ghost:hover { color: var(--moss); }

.btn--onolive { background: #fff; color: var(--olive); }
.btn--onolive:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.22); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* link with arrow */
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--olive); transition: gap .2s var(--ease), color .2s; }
.arrow-link:hover { color: var(--moss); gap: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,246,242,.74);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
  backdrop-filter: saturate(170%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s;
}
.site-header.scrolled { background: rgba(247,246,242,.86); box-shadow: 0 1px 0 rgba(205,209,188,.7), 0 8px 30px rgba(31,33,24,.07); border-color: rgba(205,209,188,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 80px; }
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 14px; font-weight: 650; font-size: 16px; color: var(--ink);
  transition: color .25s; position: relative;
}
.main-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 1.6px;
  background: var(--olive); border-radius: 2px;
  transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform .4s var(--ease-out);
}
.main-nav a:hover { color: var(--olive); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.main-nav a.active { color: var(--olive); }
.main-nav a.active::after { transform: scaleX(1); transform-origin: 0 50%; height: 2px; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 22px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 10px; }
.nav-toggle:hover { background: rgba(169,176,145,.2); }
.nav-toggle svg { display: block; }

@media (max-width: 920px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--offwhite);
  display: flex; flex-direction: column; padding: 24px var(--pad-x) 40px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease), opacity .3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.mobile-menu-top img { height: 44px; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; margin-top: 32px; }
.mobile-links a { font-family: var(--font-display); font-size: 32px; font-weight: 640; letter-spacing: -.025em; padding: 14px 0; border-bottom: 1px solid var(--sage-light); color: var(--ink); }
.mobile-links a:hover, .mobile-links a.active { color: var(--olive); }
.mobile-menu .btn { margin-top: 32px; align-self: flex-start; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 17px; }
.card .card-icon { margin-bottom: 20px; }
.card-foot { margin-top: auto; padding-top: 18px; }

/* icon chip */
.icon-chip {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream) 100%);
  color: var(--olive); border: 1px solid rgba(140,148,115,.38);
  box-shadow: inset 0 1px 0 #fff, 0 1px 3px rgba(31,33,24,.06);
}
.icon-chip svg { width: 28px; height: 28px; }

/* number badge */
.num-badge {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--olive); color: #fff; font-weight: 800; font-size: 20px; flex: 0 0 auto;
}

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  background: var(--white); border: var(--border); font-size: 15px; font-weight: 600; color: var(--muted);
}
.chip strong { color: var(--ink); }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Image placeholder ---------- */
.th-img { border-radius: var(--radius); overflow: hidden; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: var(--border);
  box-shadow: var(--shadow-sm); background: var(--cream);
}

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--olive) 0%, #36481f 100%); color: #fff; padding-block: clamp(56px, 8vw, 88px) 36px; position: relative; overflow: hidden; }
.site-footer .container { position: relative; z-index: 1; }
.site-footer a { color: rgba(255,255,255,.82); transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-logo img { height: 54px; margin-bottom: 18px; }
.footer-pillars { color: var(--sage-light); font-weight: 700; letter-spacing: .01em; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .12em; color: var(--sage-light); margin: 0 0 16px; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 16px; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; align-items: flex-start;
}
.footer-bottom, .footer-legal { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-legal { max-width: 720px; margin-top: 18px; }
.footer-links-inline { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Decorative bricks ---------- */
.brick-layer { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.brick-cluster { position: absolute; }
.section > .container, .section > .section-inner { position: relative; z-index: 1; }
.brick { display: block; filter: drop-shadow(0 8px 14px rgba(31,33,24,.06)); }

/* stud dot-grid texture */
.dot-grid {
  position: absolute; pointer-events: none; opacity: .5;
  background-image: radial-gradient(var(--sage) 1.6px, transparent 1.7px);
  background-size: 22px 22px;
}

/* Below desktop the centred text reaches into the gutters where the edge
   bricks sit — retire the decorative bricks so nothing overlaps the copy.
   The CTA-band bricks live in their own corners and stay. */
/* Below desktop the centred hero text reaches into the gutters where the edge
   bricks sit. Rather than dropping the bricks, we tuck them into the hero's
   top & bottom corners — the text-free padding strips — and scale them down,
   so they still frame the hero without ever sitting behind the copy.
   The quieter section / footer accents simply step aside at these widths. */
@media (max-width: 1180px) {
  .section > .brick-layer,
  .site-footer .brick-layer { display: none; }

  .hero { padding-block: clamp(96px, 16vw, 132px); }
  .hero .brick-cluster { transform: scale(.66); }
  .hero .brick-cluster:nth-child(odd)  { top: 18px !important; bottom: auto !important; transform-origin: top center; }
  .hero .brick-cluster:nth-child(even) { bottom: 18px !important; top: auto !important; transform-origin: bottom center; }
}
@media (max-width: 640px) {
  .cta-band .brick-layer { display: none; }
  .hero { padding-block: clamp(88px, 22vw, 120px); }
  .hero .brick-cluster { transform: scale(.5); }
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(28px) scale(.99);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(120% 130% at 8% 0%, #4a6330 0%, var(--olive) 55%, #38491f 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 16px; max-width: 52ch; font-size: 19px; }
.cta-band .btn-row { margin-top: 32px; }
.cta-inner { position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 9vw, 104px); }

/* photo-background hero with refined multi-stop overlay */
.hero--photo {
  background: #232b15 url('hero.jpg') center / cover no-repeat;
}
.hero-photo-ov {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(102deg, rgba(13,18,7,.90) 0%, rgba(15,20,8,.74) 34%, rgba(20,26,12,.42) 68%, rgba(17,22,10,.55) 100%),
    linear-gradient(0deg, rgba(47,60,28,.32), rgba(47,60,28,.32)),
    radial-gradient(120% 90% at 82% 8%, rgba(169,176,145,.13) 0%, transparent 55%),
    linear-gradient(180deg, rgba(14,19,8,.36) 0%, transparent 24%, transparent 70%, rgba(12,16,7,.58) 100%);
}
/* fine photographic grain on top of the overlay */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: .22; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.hero--photo .brick-layer { z-index: 1; }
.hero--photo .hero-inner { color: #fff; }
.hero--photo h1 { color: #fff; text-shadow: 0 2px 24px rgba(10,14,5,.35); }
.hero--photo .accent { color: var(--sage-light); }
.hero--photo .eyebrow { color: var(--sage-light); }
.hero--photo .lead { color: rgba(240,242,233,.92); }
.hero--photo .btn--secondary { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.hero--photo .btn--secondary:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.hero.center .hero-inner { margin-inline: auto; text-align: center; }
.hero h1 { margin-bottom: 24px; }
.hero .lead { max-width: 60ch; }
.hero.center .lead { margin-inline: auto; }
.hero .btn-row { margin-top: 36px; }
.hero.center .btn-row { justify-content: center; }

/* editorial (left-aligned) hero variant */
.hero--editorial { padding-block: clamp(88px, 13vw, 168px) clamp(80px, 11vw, 140px); }
.hero--editorial .hero-inner { max-width: 900px; }
.hero--editorial h1 { max-width: 14ch; font-size: clamp(46px, 7.4vw, 96px); }
.hero--editorial .lead { max-width: 54ch; font-size: clamp(18px, 2.1vw, 22px); }
.hero--editorial .btn-row { margin-top: 40px; }
.hero--photo .hero-grain { z-index: 1; }

/* animated accent rule — assembles on load like a row of studs */
.hero-rule {
  display: flex; gap: 7px; margin: 0 0 26px; height: 8px; align-items: center;
}
.hero-rule i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--sage-light); opacity: .9;
  box-shadow: inset 0 -1.5px 2px rgba(0,0,0,.25), inset 0 1px 1px rgba(255,255,255,.35);
}
.hero-rule i:nth-child(2) { background: var(--sage); }
.hero-rule i:nth-child(3) { background: var(--moss); }
.hero-rule i:nth-child(4) { background: #5f7340; }
@media (prefers-reduced-motion: no-preference) {
  .hero-rule i { opacity: 0; transform: translateY(-14px) scale(.6); animation: thStud .55s var(--ease-spring) both; }
  .hero-rule i:nth-child(1) { animation-delay: .15s; }
  .hero-rule i:nth-child(2) { animation-delay: .27s; }
  .hero-rule i:nth-child(3) { animation-delay: .39s; }
  .hero-rule i:nth-child(4) { animation-delay: .51s; }
}
@keyframes thStud { to { opacity: .9; transform: none; } }

/* ---------- Timeline / numbered steps ---------- */
.steps { display: grid; gap: clamp(20px, 2.5vw, 30px); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step .num-badge { margin-bottom: 18px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 16.5px; }
/* connector line on wide screens */
.steps.connected .step::after {
  content: ""; position: absolute; top: 26px; left: calc(52px + 16px); right: -14px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 7px, transparent 7px 14px);
  z-index: 0;
}
@media (max-width: 900px) { .steps.connected .step::after { display: none; } }
.steps.connected .step:nth-child(4n)::after { display: none; }
.steps.connected .step:last-child::after { display: none; }
.steps.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .steps.three { grid-template-columns: 1fr; } }

/* About / split ---------- spacer */

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split.media-right { grid-template-columns: 1.1fr 1fr; }
@media (max-width: 820px) { .split, .split.media-right { grid-template-columns: 1fr; gap: 32px; } }
.split .th-img, .split .media-frame { width: 100%; aspect-ratio: 4 / 3.4; }
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.stat-badge { display: flex; flex-direction: column; padding: 14px 20px; border-radius: var(--radius-sm); background: var(--cream); border: var(--border); }
.stat-badge b { font-size: 22px; color: var(--olive); line-height: 1.1; }
.stat-badge span { font-size: 14px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--white); border: var(--border); border-radius: var(--radius); padding: clamp(28px, 3.5vw, 40px); box-shadow: var(--shadow-sm); position: relative; }
.quote-card .mark { font-size: 72px; line-height: .9; height: 40px; color: var(--sage); font-weight: 500; font-family: var(--font-accent); font-style: italic; }
.quote-card blockquote { margin: 14px 0 24px; font-size: clamp(19px, 2.2vw, 23px); line-height: 1.5; font-weight: 600; color: var(--ink); }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .th-img { width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto; }
.quote-author .avatar-ph { width: 52px; height: 52px; border-radius: 50%; background: var(--sage-light); display: grid; place-items: center; color: var(--olive); font-weight: 800; flex: 0 0 auto; }
.quote-author .who b { display: block; color: var(--ink); font-size: 16px; }
.quote-author .who span { font-size: 14px; color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.faq-item.open { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; font: inherit; font-weight: 700; font-size: clamp(17px, 2vw, 19px);
  color: var(--ink); background: none; border: none; cursor: pointer;
  padding: 22px clamp(20px, 3vw, 28px); display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.faq-q:hover { color: var(--olive); }
.faq-q .ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--sage); position: relative; transition: transform .3s var(--ease), border-color .25s, background .25s; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--olive); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity .25s; }
.faq-q .ico::before { width: 11px; height: 2px; }
.faq-q .ico::after { width: 2px; height: 11px; }
.faq-item.open .faq-q .ico { transform: rotate(135deg); background: var(--cream); border-color: var(--olive); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 clamp(20px, 3vw, 28px) 24px; color: var(--muted); font-size: 17px; }

/* ---------- Contact ---------- */
.contact-card { background: var(--white); border: var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm); color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 15px; }
.field input, .field textarea {
  font: inherit; font-size: 16px; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--sage-light); background: var(--offwhite); color: var(--ink); transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--moss); background: #fff; box-shadow: 0 0 0 4px rgba(118,133,90,.16); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { display: none; margin-top: 14px; padding: 14px 18px; border-radius: var(--radius-sm); background: var(--cream); color: var(--olive); font-weight: 600; font-size: 15px; }

/* feature tiles (6-up) */
.tile { background: var(--white); border: var(--border); border-radius: var(--radius); padding: clamp(22px,2.6vw,30px); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; height: 100%; }
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.tile .icon-chip { margin-bottom: 18px; }
.tile h3 { margin-bottom: 8px; }
.tile p { color: var(--muted); font-size: 16.5px; }

/* big format cards */
.format-card { background: var(--white); border: var(--border); border-radius: var(--radius); padding: clamp(26px,3.2vw,38px); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; height: 100%; }
.format-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.format-card .fc-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.format-card h3 { font-size: clamp(21px, 2.4vw, 26px); }
.format-card .fc-intro { color: var(--muted); margin: 8px 0 22px; }
.format-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.format-card li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; font-size: 16.5px; }
.format-card li::before { content: ""; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 2px; border-radius: 5px; background: var(--sage-light); box-shadow: inset 0 0 0 4px var(--white), 0 0 0 1px var(--sage); }

/* topic chips (einzelcoaching) */
.topic { display: flex; gap: 16px; align-items: center; background: var(--white); border: var(--border); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; font-weight: 700; font-size: 17.5px; }
.topic:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.topic .topic-num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--cream); color: var(--olive); display: grid; place-items: center; font-weight: 800; border: 1px solid var(--sage-light); }

/* mini benefit pills */
.mini-benes { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.mini-bene { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--olive); background: var(--white); border: var(--border); padding: 12px 18px; border-radius: 999px; }
.mini-bene svg { width: 20px; height: 20px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; }
.legal h1 { font-size: clamp(32px, 5vw, 46px); margin-bottom: 12px; }
.legal .eyebrow { margin-bottom: 16px; }
.legal h2 { font-size: clamp(21px, 2.6vw, 26px); margin-top: 40px; margin-bottom: 10px; }
.legal p, .legal li { color: var(--muted); font-size: 17px; }
.legal .placeholder-note { background: var(--cream); border: var(--border); border-radius: var(--radius); padding: 18px 22px; color: var(--olive); font-weight: 600; margin: 8px 0 24px; }
.legal address { font-style: normal; color: var(--muted); line-height: 1.8; }

/* ---------- Image cards (full-bleed photo + overlay + hover reveal) ---------- */
.media-cards { display: grid; gap: clamp(18px, 2.4vw, 26px); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .media-cards { grid-template-columns: 1fr; } }

.img-card {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  overflow: hidden; border: var(--border); box-shadow: var(--shadow-sm); isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.img-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage); }
@media (max-width: 900px) { .img-card { aspect-ratio: 16 / 11; } }

.img-card .th-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

/* permanent bottom gradient so the title stays legible over any photo */
.img-card-grad {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(31,33,24,.82) 0%, rgba(31,33,24,.30) 38%, rgba(31,33,24,0) 64%);
}
/* full scrim that fades in on hover */
.img-card-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(160deg, rgba(63,85,38,.86), rgba(31,33,24,.86));
  opacity: 0; transition: opacity .4s var(--ease);
}
.img-card:hover .img-card-scrim { opacity: 1; }

.img-card-desc {
  position: absolute; z-index: 3; left: 0; right: 0; top: 44%; transform: translateY(-50%);
  margin: 0; padding: 0 clamp(22px, 3vw, 30px); text-align: center; pointer-events: none;
  color: #fff; font-size: clamp(17px, 1.9vw, 19px); font-weight: 600; line-height: 1.5;
  opacity: 0; transition: opacity .4s var(--ease), transform .45s var(--ease);
}
.img-card:hover .img-card-desc { opacity: 1; transform: translateY(-50%) translateY(-4px); }

.img-card-foot {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; pointer-events: none;
  padding: clamp(20px, 2.6vw, 26px); display: flex; align-items: center; gap: 14px;
  transition: transform .4s var(--ease);
}
.img-card-foot h3 { color: #fff; font-size: clamp(19px, 2.1vw, 22px); }
.img-card-ico {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.30);
  color: #fff; backdrop-filter: blur(4px);
}
.img-card-ico svg { width: 24px; height: 24px; }

/* touch / no-hover devices: reveal description, soften scrim, lift the title clear */
@media (hover: none) {
  .img-card-scrim { opacity: .42; }
  .img-card-desc { opacity: 1; top: 38%; }
  .img-card-foot { transform: none; }
}

/* ---------- Brick-step towers (process steps) ---------- */
.brick-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 30px); position: relative; }
@media (max-width: 860px) { .brick-steps { grid-template-columns: repeat(2, 1fr); gap: clamp(28px,5vw,40px); } }
@media (max-width: 520px) { .brick-steps { grid-template-columns: 1fr; } }

/* dashed "ground" line the towers build on */
.brick-steps::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 128px; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 16px);
}
@media (max-width: 860px) { .brick-steps::before { display: none; } }

.brick-step { text-align: center; position: relative; }
.brick-tower { position: relative; height: 130px; margin-bottom: 18px; }
.brick-tower .brick {
  position: absolute; left: 50%; bottom: 0; filter: drop-shadow(0 6px 10px rgba(31,33,24,.10));
}
.brick-step .step-label {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 6px;
}
.brick-step h3 { margin-bottom: 8px; }
.brick-step p { color: var(--muted); font-size: 16.5px; max-width: 30ch; margin-inline: auto; }

/* ---------- Olive audience band (Für wen) ---------- */
.section--olive { background: radial-gradient(130% 110% at 50% -10%, #4a6330 0%, var(--olive) 58%, #38491f 100%); color: #fff; }
.section--olive .eyebrow { color: var(--sage-light); }
.section--olive h2 { color: #fff; }
.section--olive .lead { color: rgba(255,255,255,.82); }

.audience-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 860px) { .audience-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; column-gap: 24px; } }
@media (max-width: 520px) { .audience-row { grid-template-columns: 1fr; row-gap: 32px; } }

.audience { position: relative; padding: 6px clamp(18px, 2.6vw, 34px); }
.audience + .audience::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(255,255,255,.16);
}
@media (max-width: 860px) {
  .audience { padding-inline: 0; }
  .audience + .audience::before { display: none; }
}
.audience .audience-ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); color: #fff;
  transition: background .25s var(--ease), transform .3s var(--ease), border-color .25s;
}
.audience .audience-ico svg { width: 27px; height: 27px; }
.audience:hover .audience-ico { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); transform: translateY(-4px); }
.audience h3 { color: #fff; margin-bottom: 9px; font-size: clamp(19px, 2.1vw, 21px); }
.audience p { color: rgba(233,231,220,.82); font-size: 16px; }

/* ---------- Einzelcoaching: olive promise statement ---------- */
.lsp-statement { font-family: var(--font-display); font-size: clamp(27px, 3.8vw, 43px); font-weight: 620; line-height: 1.12; letter-spacing: -.02em; color: #fff; max-width: 17ch; margin: 0 auto; text-wrap: balance; }
.statement-sub { color: rgba(255,255,255,.84); font-size: clamp(17px, 2vw, 20px); line-height: 1.6; max-width: 58ch; margin: 26px auto 0; text-wrap: pretty; }

/* ---------- Einzelcoaching: Bauen · Sehen · Verändern triad ---------- */
.build-triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.2vw, 48px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 800px) { .build-triad { grid-template-columns: 1fr; gap: 0; } }
.build-step { border-top: 2px solid var(--moss); padding-top: 22px; }
@media (max-width: 800px) { .build-step { padding-block: 26px 4px; border-top: 1px solid var(--sage-light); } .build-step:first-child { border-top: 2px solid var(--moss); } }
.build-step .bi { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--moss); }
.build-step h3 { margin: 10px 0 12px; font-size: clamp(22px, 2.6vw, 28px); }
.build-step p { color: var(--muted); font-size: 17px; }

/* ---------- Einzelcoaching: vertical timeline ---------- */
.vtimeline { max-width: 720px; margin: clamp(40px, 5vw, 56px) auto 0; position: relative; }
.vtimeline::before { content: ""; position: absolute; left: 25px; top: 14px; bottom: 14px; width: 2px; background: repeating-linear-gradient(var(--sage) 0 7px, transparent 7px 14px); }
.vstep { position: relative; padding-left: 78px; padding-block: 16px; }
.vstep .num-badge { position: absolute; left: 0; top: 12px; }
.vstep h3 { margin-bottom: 6px; }
.vstep p { color: var(--muted); }

/* ---------- Einzelcoaching v3: editorial split hero ---------- */
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 880px) { .hero-split { grid-template-columns: 1fr; gap: 36px; } }
.hero-copy .btn-row { margin-top: 32px; }
.hero-media { position: relative; }
.hero-media .th-img { width: 100%; aspect-ratio: 4 / 4.5; border-radius: var(--radius-lg); border: 1px solid var(--sage-light); box-shadow: var(--shadow-md); background: var(--cream); }
@media (max-width: 880px) { .hero-media .th-img { aspect-ratio: 4 / 3.6; } }
.hero-cap { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; background: rgba(63,85,38,.94); color: #fff; padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 700; box-shadow: 0 8px 20px rgba(0,0,0,.18); pointer-events: none; }
.hero-cap .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage-light); }

/* ---------- Einzelcoaching v3: Bauen → Sehen → Verändern flow (olive) ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); margin-top: clamp(36px, 4.5vw, 56px); }
@media (max-width: 760px) { .flow { grid-template-columns: 1fr; gap: 26px; } }
.flow-step { position: relative; }
.flow-step:not(:first-child)::before { content: "→"; position: absolute; left: -22px; top: 3px; color: rgba(255,255,255,.42); font-size: 22px; font-weight: 700; }
@media (max-width: 760px) { .flow-step:not(:first-child)::before { content: "↓"; left: 0; top: -22px; } }
.flow-step .fl { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .16em; color: var(--sage-light); margin-bottom: 10px; }
.flow-step h3 { color: #fff; font-size: clamp(20px, 2.3vw, 23px); margin-bottom: 8px; }
.flow-step p { color: rgba(233,231,220,.84); font-size: 16.5px; }
.flow-note { margin-top: clamp(32px, 4vw, 44px); color: rgba(255,255,255,.78); font-size: 16px; text-align: center; border-top: 1px solid rgba(255,255,255,.16); padding-top: 22px; max-width: 60ch; margin-inline: auto; }

/* ---------- Einzelcoaching v3: compact checklist (Themen) ---------- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 40px; margin-top: clamp(32px, 4vw, 46px); max-width: 900px; margin-inline: auto; }
@media (max-width: 620px) { .checklist { grid-template-columns: 1fr; } }
.check { display: flex; gap: 14px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--sage-light); font-weight: 600; font-size: 17px; }
.check .ci { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 8px; background: var(--cream); border: 1px solid var(--sage-light); color: var(--olive); display: grid; place-items: center; }
.check .ci svg { width: 16px; height: 16px; }

/* utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.tm { font-size: .62em; vertical-align: .35em; font-weight: 700; }

/* ---------- Homepage: "Aus dem Journal" teaser ---------- */
.jt-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 32px; flex-wrap: wrap; }
.jt-head-row .arrow-link { padding-bottom: 6px; white-space: nowrap; }
.journal-teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 40px); margin-top: clamp(34px, 4vw, 50px); }
@media (max-width: 820px) { .journal-teasers { grid-template-columns: 1fr; gap: 0; } }
.jt {
  display: flex; flex-direction: column; padding-top: 24px; border-top: 2px solid var(--ink);
  text-decoration: none; color: inherit;
}
@media (max-width: 820px) {
  .jt { border-top: 1px solid var(--sage-light); padding-block: 26px; }
  .jt:first-child { border-top: 2px solid var(--ink); }
}
.jt-cat { font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--moss); margin-bottom: 14px; }
.jt h3 { font-family: var(--font-display); font-weight: 620; font-size: clamp(21px, 2.2vw, 25px); line-height: 1.14; letter-spacing: -.018em; transition: color .2s; }
.jt:hover h3 { color: var(--olive); }
.jt p { color: var(--muted); font-size: 16px; line-height: 1.55; margin-top: 12px; flex: 1; }
.jt-more { margin-top: 20px; font-weight: 800; font-size: 14.5px; color: var(--olive); display: inline-flex; align-items: center; gap: 8px; }
.jt-more svg { transition: transform .25s var(--ease); }
.jt:hover .jt-more svg { transform: translateX(4px); }

/* ============================================================
   WORKSHOPS — distinct editorial system
   ============================================================ */
/* Wirkung: sticky heading + hairline benefit rows (no cards) */
.wirkung { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .wirkung { grid-template-columns: 1fr; gap: 28px; } }
.wirkung-aside { position: sticky; top: 104px; }
@media (max-width: 900px) { .wirkung-aside { position: static; } }
.wirkung-aside .lead { margin-top: 18px; }
.bene-list { display: flex; flex-direction: column; }
.bene { display: grid; grid-template-columns: 30px 1fr; gap: 22px; padding: clamp(22px,2.6vw,30px) 0; border-top: 1px solid var(--sage-light); align-items: start; }
.bene:first-child { border-top: 2px solid var(--ink); }
.bene .bene-ico { width: 30px; height: 30px; color: var(--olive); }
.bene .bene-ico svg { width: 30px; height: 30px; }
.bene h3 { font-size: clamp(19px, 2.1vw, 22px); margin-bottom: 7px; }
.bene p { color: var(--muted); font-size: 16.5px; line-height: 1.55; }

/* Zielgruppen: alternating image / text editorial rows */
.aud-rows { display: flex; flex-direction: column; gap: clamp(44px, 6vw, 84px); margin-top: clamp(40px, 5vw, 64px); }
.aud-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.aud-row .aud-media { position: relative; }
.aud-row:nth-child(even) .aud-media { order: 2; }
@media (max-width: 820px) { .aud-row { grid-template-columns: 1fr; gap: 22px; } .aud-row:nth-child(even) .aud-media { order: 0; } }
.aud-media .th-img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); border: 1px solid var(--sage-light); background: var(--cream); box-shadow: var(--shadow-sm); }
.aud-tag {
  position: absolute; left: 14px; top: 14px; z-index: 2; pointer-events: none;
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.94);
  border: 1px solid var(--sage-light); border-radius: 999px; padding: 8px 14px;
  font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--olive); box-shadow: var(--shadow-sm);
}
.aud-tag svg { width: 17px; height: 17px; }
.aud-content .aud-label { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); display: block; margin-bottom: 12px; }
.aud-content h3 { font-size: clamp(24px, 3vw, 33px); line-height: 1.1; }
.aud-content .aud-intro { color: var(--muted); font-size: clamp(16.5px,1.8vw,18px); margin: 14px 0 22px; max-width: 46ch; }
.aud-content ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 12px; }
.aud-content li { display: inline-flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--sage-light); border-radius: 999px; padding: 9px 16px; font-weight: 700; font-size: 15px; color: var(--ink); }
.aud-content li::before { content: ""; width: 14px; height: 14px; border-radius: 4px; background: var(--sage-light); box-shadow: inset 0 0 0 3px var(--white), 0 0 0 1px var(--sage); flex: 0 0 auto; }

/* Ablauf: horizontal phase rail with LEGO-stud markers (no big numbers) */
.phase-rail { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); margin-top: clamp(48px, 5vw, 64px); }
@media (max-width: 860px) { .phase-rail { grid-template-columns: 1fr 1fr; gap: 30px 22px; } }
@media (max-width: 520px) { .phase-rail { grid-template-columns: 1fr; } }
.phase-rail::before {
  content: ""; position: absolute; top: 11px; left: 6%; right: 6%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--sage) 0 7px, transparent 7px 14px);
}
@media (max-width: 860px) { .phase-rail::before { display: none; } }
.phase { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; }
.phase .stud {
  width: 24px; height: 24px; border-radius: 50%; background: var(--olive);
  box-shadow: 0 0 0 6px var(--offwhite), inset 0 -3px 5px rgba(0,0,0,.18), inset 0 2px 3px rgba(255,255,255,.25);
  margin-bottom: 22px; position: relative;
}
.phase:nth-child(2) .stud { background: #5f7340; }
.phase:nth-child(3) .stud { background: var(--moss); }
.phase:nth-child(4) .stud { background: var(--sage); }
.section--cream .phase .stud { box-shadow: 0 0 0 6px var(--cream), inset 0 -3px 5px rgba(0,0,0,.18), inset 0 2px 3px rgba(255,255,255,.25); }
.phase .ph-name { font-size: 11.5px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--moss); display: block; margin-bottom: 6px; }
.phase h3 { font-size: clamp(18px, 2vw, 21px); line-height: 1.18; margin-bottom: 8px; }
.phase p { color: var(--muted); font-size: 15.5px; line-height: 1.5; }

/* Eckdaten strip */
.eckdaten { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(40px,5vw,56px); border: 1px solid var(--sage-light); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.eckdaten .eck { padding: 20px 24px; border-right: 1px solid var(--sage-light); border-bottom: 1px solid var(--sage-light); }
/* remove the seam on the last column of each row and the final row */
.eckdaten .eck:nth-child(4n) { border-right: none; }
.eckdaten .eck:nth-last-child(-n+4) { border-bottom: none; }
@media (max-width: 760px) {
  .eckdaten { grid-template-columns: repeat(2, 1fr); }
  .eckdaten .eck { border-right: 1px solid var(--sage-light); border-bottom: 1px solid var(--sage-light); }
  .eckdaten .eck:nth-child(4n) { border-right: 1px solid var(--sage-light); }
  .eckdaten .eck:nth-last-child(-n+4) { border-bottom: 1px solid var(--sage-light); }
  .eckdaten .eck:nth-child(2n) { border-right: none; }
  .eckdaten .eck:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 440px) {
  .eckdaten { grid-template-columns: 1fr; }
  .eckdaten .eck { border-right: none; border-bottom: 1px solid var(--sage-light); }
  .eckdaten .eck:last-child { border-bottom: none; }
}
.eckdaten .eck b { display: block; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); margin-bottom: 5px; }
.eckdaten .eck span { font-size: 16px; font-weight: 700; color: var(--ink); }

/* ============================================================
   First-visit loader — LEGO bricks stacking up
   ============================================================ */
/* Returning visitors (no .th-loading on <html>) never see it. */
html:not(.th-loading) #th-loader { display: none !important; }
html.th-loading, html.th-loading body { overflow: hidden; height: 100%; }

#th-loader {
  position: fixed; inset: 0; z-index: 4000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  background: var(--offwhite);
  opacity: 1; transition: opacity .55s var(--ease);
}
#th-loader.done { opacity: 0; pointer-events: none; }

.thl-stack { position: relative; width: 120px; height: 150px; }
.thl-stack .brick {
  position: absolute; left: 50%; bottom: 0;
  opacity: 0; transform: translateX(-50%) translateY(-46px) scale(.82);
  filter: drop-shadow(0 8px 12px rgba(31,33,24,.12));
}
.thl-stack .brick.drop {
  opacity: 1; transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity .42s var(--ease), transform .5s cubic-bezier(.34,1.42,.5,1);
}
/* dashed ground the stack builds on */
.thl-stack::after {
  content: ""; position: absolute; left: -14px; right: -14px; bottom: -2px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 7px, transparent 7px 14px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.thl-stack.grounded::after { opacity: 1; }

.thl-word {
  font-size: 15px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--moss); opacity: 0; transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.thl-word.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .thl-stack .brick { transition: none; }
}
