/* =========================================================
   Taxhouse — site styles
   Built on top of colors_and_type.css
   ========================================================= */

html { scroll-behavior: smooth; }
body { background: var(--th-paper); color: var(--fg); }

a { text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ----------- NAV ----------- */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: var(--th-navy-800);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background var(--dur-3) var(--ease-out);
}
nav.top.scrolled { background: var(--th-navy-800); }
.nav-row { display: flex; align-items: center; gap: 32px; padding: 18px 0; color: white; }
.logo { display: inline-flex; align-items: center; text-decoration: none; transition: transform var(--dur-3) var(--ease-out); }
.logo img { display: block; height: 44px; width: auto; }
.logo:hover { transform: translateY(-1px); }
footer.site .logo img { height: 52px; margin-bottom: 12px; }

.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 500;
  padding: 6px 0;
  transition: color var(--dur-2) var(--ease-out);
}
.nav-links a:hover { color: white; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: white; }
.nav-links a.active::after { transform: scaleX(1); }

.lang { color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: color var(--dur-2); }
.lang:hover { color: white; }

.cta {
  background: var(--accent);
  color: var(--th-navy-900);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  padding: 11px 18px;
  border-radius: 8px; border: 0;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  transition: background var(--dur-2) var(--ease-out);
  display: inline-flex; align-items: center; gap: 6px;
}
.cta:hover { background: var(--th-gold-600); }
.cta:active { background: var(--th-gold-700); }
.cta .arrow { display: inline-block; transition: transform var(--dur-2) var(--ease-out); }
.cta:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  padding: 11px 18px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-2), border-color var(--dur-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.7); }
.btn-secondary .arrow { transition: transform var(--dur-2); }
.btn-secondary:hover .arrow { transform: translateX(3px); }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--th-navy-900);
  position: relative;
}
.btn-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  height: 1px; width: 100%;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-3) var(--ease-out), height var(--dur-2);
}
.btn-link:hover::after { transform: scaleX(1); height: 2px; }
.btn-link .arrow { transition: transform var(--dur-2); }
.btn-link:hover .arrow { transform: translateX(4px); }

.cta-sub {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--fg-subtle);
  opacity: 0.75;
}
.cta-banner .cta-sub { color: rgba(255,255,255,0.55); }

.step-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-subtle);
  margin-left: 6px;
  vertical-align: middle;
}

/* ----------- EYEBROWS ----------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

/* ----------- HERO ----------- */
.hero {
  background: var(--th-navy-800);
  color: var(--th-paper);
  padding: 120px 0 130px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -80px; top: -60px;
  width: 520px; height: 290px;
  display: none;
  background: var(--accent);
  opacity: 0.08;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  animation: roof-drift 18s var(--ease-in-out) infinite alternate;
}
.hero::after {
  content: ''; position: absolute; left: -200px; bottom: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(229,164,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes roof-drift {
  0% { transform: translate(0,0) rotate(0deg); }
  100% { transform: translate(-30px, 14px) rotate(-2deg); }
}

.hero .grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 28px;
  color: var(--th-paper);
  text-wrap: balance;
}
.hero h1 .gold { color: var(--accent); font-style: italic; font-weight: 500; }
.hero h1 .underline {
  position: relative; display: inline-block; white-space: nowrap;
}
.hero h1 .underline::after {
  content: ''; position: absolute; left: 0; bottom: 8px;
  width: 100%; height: 6px;
  background: var(--accent); opacity: 0.6;
  transform: scaleX(0); transform-origin: left;
  animation: underline-grow 1s 0.8s var(--ease-out) forwards;
}
@keyframes underline-grow {
  to { transform: scaleX(1); }
}

.hero .lede {
  font-family: var(--font-sans);
  font-size: 19px; line-height: 1.55;
  color: rgba(251,250,246,0.78);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero .stats {
  display: flex; gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero .stat { font-size: 13px; color: rgba(251,250,246,0.55); line-height: 1.4; }
.hero .stat b {
  color: white; font-weight: 600; display: block;
  font-size: 38px;
  font-family: var(--font-display);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.hero-logo {
  width: 100%; height: auto;
  display: block;
  opacity: 0; transform: translateY(-12px);
  animation: hero-logo-in 900ms 200ms var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes hero-logo-in {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .hero-logo { display: none; }
}

/* ----------- TICKER UNDER HERO ----------- */
.ticker {
  background: var(--th-navy-900);
  color: rgba(251,250,246,0.55);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden; position: relative;
}
.ticker-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 24px; }
.ticker-track .dot { color: var(--accent); }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----------- SECTION HEAD ----------- */
section { padding: 120px 0; }
section.compact { padding: 96px 0; }

.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 64px; gap: 48px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  max-width: 720px;
  color: var(--th-navy-900);
  text-wrap: balance;
}
.section-head .h-aside {
  font-size: 16px; color: var(--fg-muted);
  max-width: 360px; margin: 0;
  line-height: 1.55;
}

/* ----------- APPROACH (process) ----------- */
.approach {
  background: var(--th-paper-2);
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.approach-list { display: flex; flex-direction: column; }
.approach-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: padding var(--dur-3) var(--ease-out);
}
.approach-step:last-child { border-bottom: 1px solid var(--line); }
.approach-step .num {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.approach-step h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  margin: 0 0 8px;
  color: var(--th-navy-900);
  letter-spacing: -0.015em;
  transition: color var(--dur-2);
}
.approach-step .body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-4) var(--ease-out), margin-top var(--dur-3);
  font-size: 15px; line-height: 1.6;
  color: var(--fg-muted);
}
.approach-step.open .body { max-height: 220px; margin-top: 12px; }
.approach-step.open h3 { color: var(--accent-press); }
.approach-step .toggle {
  font-size: 14px; color: var(--fg-subtle);
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-weight: 600;
}
.approach-step.open .toggle { color: var(--accent-press); }
.approach-step .toggle .icn { width: 14px; height: 14px; transition: transform var(--dur-3) var(--ease-out); }
.approach-step.open .toggle .icn { transform: rotate(45deg); }

.approach-aside {
  position: sticky; top: 110px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px;
}
.approach-aside .doc-stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-subtle);
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 14px;
  margin-bottom: 24px;
}
.approach-aside h4 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  margin: 0 0 18px;
  color: var(--th-navy-900);
  letter-spacing: -0.015em;
}
.approach-aside p {
  font-size: 15px; line-height: 1.65; color: var(--fg-muted);
  margin: 0 0 24px;
}
.approach-aside .signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--th-navy-800);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.approach-aside .signature small {
  font-family: var(--font-sans); font-style: normal;
  font-size: 12px; font-weight: 600;
  color: var(--fg-subtle);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ----------- SERVICE / PILLAR CARDS ----------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  cursor: pointer;
  transition: box-shadow var(--dur-3) var(--ease-out), border-color var(--dur-3), transform var(--dur-3);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 100px; height: 60px;
  background: var(--accent);
  opacity: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transition: opacity var(--dur-3) var(--ease-out);
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.svc-card:hover::after { opacity: 0.08; }
.svc-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--th-navy-900);
  margin: 0;
}
.svc-card p {
  font-size: 14px; color: var(--fg-muted);
  line-height: 1.6; margin: 0; flex: 1;
}
.svc-card .arrow-row {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--th-navy-900);
  font-size: 13px; font-weight: 600;
  margin-top: 8px;
}
.svc-card .arrow-row .arrow { transition: transform var(--dur-2); }
.svc-card:hover .arrow-row .arrow { transform: translateX(4px); }

/* Featured first card */
.svc-card.featured {
  grid-column: span 1;
  background: var(--th-navy-800);
  color: var(--th-paper);
  border-color: var(--th-navy-700);
}
.svc-card.featured h3 { color: var(--th-paper); }
.svc-card.featured p { color: rgba(251,250,246,0.7); }
.svc-card.featured .arrow-row { color: var(--accent); }
.svc-card.featured .num { color: var(--accent); }
.svc-card.featured::after { background: var(--accent); }

/* ----------- TESTIMONIAL ----------- */
.testimonial-section {
  background: var(--th-paper-2);
}
.testi-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: center; }
blockquote.testi {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--th-navy-900);
  font-style: italic;
  font-weight: 500;
  text-wrap: balance;
}
blockquote.testi::before {
  content: '"';
  color: var(--accent);
  font-size: 84px;
  line-height: 0;
  vertical-align: -28px;
  margin-right: 6px;
  font-style: normal;
}
blockquote.testi cite {
  display: block;
  font-style: normal;
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
  font-family: var(--font-sans);
}
blockquote.testi cite strong {
  color: var(--fg);
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.testi-stats { display: flex; flex-direction: column; }
.testi-stats .stat {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.testi-stats .stat:first-child { padding-top: 0; }
.testi-stats .stat:last-child { border-bottom: 0; padding-bottom: 0; }
.testi-stats .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--th-navy-900);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.testi-stats .stat-label { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

.testi-dots {
  display: flex; gap: 8px;
  margin-top: 48px;
}
.testi-dots button {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--th-ink-300);
  border: 0;
  cursor: pointer;
  transition: background var(--dur-2), width var(--dur-3);
}
.testi-dots button.active {
  background: var(--accent);
  width: 24px;
}

/* ----------- INTRO STRIP (lighter section) ----------- */
.intro-strip { padding: 80px 0; background: var(--th-paper); }
.intro-strip .row {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: start;
}
.intro-strip h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  margin: 0;
  color: var(--th-navy-900);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.intro-strip .body p {
  font-size: 17px; line-height: 1.65; color: var(--fg-muted);
  max-width: 600px;
}
.intro-strip .body p:first-child { color: var(--fg); font-size: 19px; }

/* ----------- CTA BANNER ----------- */
.cta-banner {
  padding: 96px 0;
  background: var(--th-navy-800);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -40px; top: -30px;
  width: 240px; height: 130px;
  background: var(--accent);
  opacity: 0.06;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.cta-banner-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 2;
}
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: white;
  margin: 0; max-width: 720px;
  text-wrap: balance;
}
.cta-banner .meta {
  font-size: 14px; color: rgba(251,250,246,0.55);
  margin-top: 8px;
}

/* ----------- FOOTER ----------- */
footer.site {
  background: var(--th-navy-900);
  color: rgba(251,250,246,0.7);
  padding: 80px 0 28px;
  position: relative; overflow: hidden;
}
footer.site::before {
  content: ''; position: absolute; left: 50%; top: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(229,164,55,0.18), transparent);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-grid h5 {
  font-family: var(--font-sans);
  font-size: 12px; color: white; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 18px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-grid a {
  color: rgba(251,250,246,0.7);
  font-size: 14px;
  transition: color var(--dur-2);
}
.foot-grid a:hover { color: var(--accent); }
.foot-grid .desc {
  font-size: 14px; line-height: 1.6;
  max-width: 320px; margin-top: 16px;
  color: rgba(251,250,246,0.6);
}
.foot-bottom {
  display: flex; justify-content: space-between;
  padding-top: 28px; font-size: 12px;
  color: rgba(251,250,246,0.45);
  letter-spacing: 0.02em;
}
.foot-bottom a { color: rgba(251,250,246,0.45); }
.foot-bottom a:hover { color: var(--accent); }

/* ----------- BIG WORDMARK FOOTER ----------- */
.foot-mega {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(251,250,246,0.04);
  text-align: center;
  margin: 56px 0 -20px;
  user-select: none;
  pointer-events: none;
}
.foot-mega .gold { color: rgba(229,164,55,0.16); font-style: italic; }

/* ----------- REVEAL ANIMATIONS ----------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal].in {
  opacity: 1; transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }
[data-reveal-delay="5"] { transition-delay: 400ms; }
[data-reveal-delay="6"] { transition-delay: 480ms; }

/* word-by-word reveal for hero h1 */
.split-words .word-anim {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  animation: word-in 700ms var(--ease-out) forwards;
}
@keyframes word-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ----------- PAGE HEADER (subpages) ----------- */
.page-header {
  background: var(--th-navy-800);
  color: var(--th-paper);
  padding: 80px 0 96px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; right: -60px; top: -40px;
  width: 360px; height: 200px;
  background: var(--accent);
  opacity: 0.06;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.page-header .breadcrumb {
  font-size: 12px; color: rgba(251,250,246,0.5);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; gap: 10px;
}
.page-header .breadcrumb a { color: var(--accent); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--th-paper);
  max-width: 880px;
  text-wrap: balance;
}
.page-header .lede {
  font-size: 19px; line-height: 1.55;
  color: rgba(251,250,246,0.78);
  max-width: 640px;
  margin: 0;
}

/* ----------- DIENSTEN PAGE ----------- */
.dienst-feature {
  scroll-margin-top: 90px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.dienst-feature:first-child { padding-top: 0; }
.dienst-feature .meta-col .num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.dienst-feature .meta-col h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 16px 0 16px;
  color: var(--th-navy-900);
}
.dienst-feature .meta-col p {
  font-size: 16px; line-height: 1.65; color: var(--fg-muted);
  max-width: 360px;
  margin: 0 0 24px;
}
.dienst-feature .body-col h4 {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-press);
  margin: 0 0 16px;
}
.dienst-feature ul.checks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.dienst-feature ul.checks li {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 14px; align-items: start;
  font-size: 16px; line-height: 1.55; color: var(--fg);
  padding: 14px 0; border-top: 1px solid var(--line);
}
.dienst-feature ul.checks li:first-child { border-top: 0; padding-top: 0; }
.dienst-feature ul.checks .check {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--accent);
  border-radius: 999px; flex-shrink: 0;
  margin-top: 1px;
}
.dienst-feature ul.checks .check svg { width: 12px; height: 12px; color: var(--accent); }

.wat-levert {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.wat-levert h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-press);
  margin-bottom: 10px;
}
.wat-levert p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

/* ----------- OVER ONS ----------- */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.value {
  background: var(--bg-elevated);
  padding: 40px 36px;
}
.value .icn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 999px;
  margin-bottom: 24px; color: var(--accent);
}
.value h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  margin: 0 0 12px;
  color: var(--th-navy-900);
  letter-spacing: -0.01em;
}
.value p { font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin: 0; }

.timeline {
  position: relative;
  border-left: 1px solid var(--line);
  margin-left: 12px;
}
.timeline-item {
  position: relative;
  padding: 0 0 48px 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -6px; top: 4px;
  width: 11px; height: 11px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--th-paper);
}
.timeline-item .year {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin: 0 0 8px;
  color: var(--th-navy-900);
  letter-spacing: -0.01em;
}
.timeline-item p { font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin: 0; max-width: 520px; }

/* ----------- CONTACT PAGE ----------- */
.contact-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  margin: 0 0 16px;
  color: var(--th-navy-900);
  letter-spacing: -0.015em;
}
.contact-info p { font-size: 16px; line-height: 1.65; color: var(--fg-muted); margin: 0 0 32px; max-width: 420px; }
.contact-detail {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 16px; align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail .icn {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.contact-detail .label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}
.contact-detail .val { font-size: 16px; color: var(--fg); font-weight: 500; }
.contact-detail a.val { color: var(--th-navy-900); text-decoration: none; transition: color var(--dur-2); }
.contact-detail a.val:hover { color: var(--accent-press); }

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 600;
  margin: 0 0 8px;
  color: var(--th-navy-900);
  letter-spacing: -0.015em;
}
.contact-form .form-lede {
  font-size: 15px; color: var(--fg-muted);
  margin: 0 0 32px;
}
.field { display: flex; flex-direction: column; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg);
  color: var(--fg);
  outline: none;
  transition: border-color var(--dur-2), box-shadow var(--dur-2);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229,164,55,0.18);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: all var(--dur-2);
}
.chip:hover { border-color: var(--accent); color: var(--accent-press); }
.chip.active {
  background: var(--th-navy-800);
  color: white;
  border-color: var(--th-navy-800);
}
.contact-form .cta { width: 100%; justify-content: center; padding: 14px; font-size: 14px; }
.contact-form .privacy { font-size: 12px; color: var(--fg-subtle); text-align: center; margin-top: 14px; }
.contact-form .privacy a { color: var(--accent-press); text-decoration: underline; }

/* form success state */
.contact-form.sent .form-body { display: none; }
.form-success {
  display: none;
  padding: 32px 8px;
  text-align: center;
}
.contact-form.sent .form-success { display: block; }
.form-success .check-anim {
  width: 64px; height: 64px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.form-success h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--th-navy-900); margin: 0 0 12px; letter-spacing: -0.015em; }
.form-success p { font-size: 15px; color: var(--fg-muted); margin: 0; }

/* ----------- DIVIDER ----------- */
hr.gold-rule {
  border: 0; height: 2px; width: 56px;
  background: var(--accent);
  margin: 0 0 24px;
}

/* ----------- TWEAKS PANEL ----------- */
.tweaks-panel {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 100;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  width: 280px;
  font-family: var(--font-sans);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--fg-subtle);
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks-panel h5 button {
  background: none; border: 0; color: var(--fg-subtle);
  cursor: pointer; font-size: 18px; padding: 0; line-height: 1;
}
.tweak-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tweak-row label { font-size: 12px; color: var(--fg-muted); font-weight: 500; }
.tweak-swatches { display: flex; gap: 6px; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--dur-2);
}
.tweak-swatch.active { border-color: var(--th-navy-900); }
.tweak-seg {
  display: inline-flex; background: var(--bg-muted);
  border-radius: 8px; padding: 3px;
}
.tweak-seg button {
  border: 0; background: none; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
  color: var(--fg-muted);
  transition: all var(--dur-2);
}
.tweak-seg button.active { background: white; color: var(--th-navy-900); box-shadow: var(--shadow-xs); }

/* ----------- HAMBURGER ----------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--dur-3) var(--ease-out), opacity var(--dur-2);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------- RESPONSIVE ----------- */
@media (max-width: 900px) {
  /* Nav */
  .hamburger { display: flex; }
  .lang { display: none; }
  nav.top .cta { display: none; }
  .nav-row { padding: 12px 0; gap: 16px; }
  .logo img { height: 34px; }
  .container, .container-narrow { padding: 0 20px; }

  /* Mobile nav overlay */
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-height: 100svh;
    background: var(--th-navy-800);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-3) var(--ease-out);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 26px;
    font-family: var(--font-display);
    font-weight: 600;
    color: rgba(255,255,255,0.78);
    letter-spacing: -0.01em;
    padding: 0;
  }
  .nav-links a.active,
  .nav-links a:hover { color: white; }
  .nav-links a::after { display: none; }

  /* Layout */
  .hero .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 24px; }
  .hero .stat b { font-size: 24px; }
  .hero .ctas { flex-direction: column; }
  .hero h1 .underline { white-space: normal; }
  .hero .grid, .approach-grid, .testi-grid, .dienst-feature, .contact-grid, .intro-strip .row { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .page-header { padding: 48px 0 56px; }
  .page-header h1 { font-size: clamp(26px, 8vw, 44px); word-break: break-word; overflow-wrap: break-word; }
  section.compact { padding: 56px 0; }
  .contact-form { padding: 28px 20px; max-width: 100%; box-sizing: border-box; }
  .contact-form .field { max-width: 100%; }
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form input, .contact-form textarea, .contact-form select { width: 100%; max-width: 100%; box-sizing: border-box; }
  .chips { flex-wrap: wrap; }
  .contact-info { min-width: 0; }
  .section-head { flex-direction: column; align-items: start; gap: 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 80px 0; }
  .hero { padding: 64px 0 80px; }
  .cta-banner-row { flex-direction: column; align-items: start; }
  .approach-aside { position: static; }
}
