/* ============================================================
   Bram Lahousse — production styles
   Visual spec: warm off-white + deep forest accent, editorial.
   ============================================================ */

:root {
  --bg:        #F4F1EC;
  --bg-alt:    #EAE5DC;
  --bg-deep:   #E3DCCD;
  --ink:       #15201A;
  --ink-2:     #3C4A42;
  --muted:     #6B7A71;
  --accent:    #1F4D3A;
  --accent-h:  #153527;
  --accent-soft:#D9E3DC;
  --line:      #D8D1C4;
  --warn:      #C8553D;
  --dark-line: #2A3830;
  --on-dark:   #C8D4CD;
  --on-dark-2: #8FB09E;
  --mint:      #8FE3B5;

  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  --max:       1280px;
  --pad-x:     32px;
  --r-sm:      12px;
  --r-md:      16px;
  --r-lg:      20px;
  --r-pill:    100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
em { font-style: italic; }

/* ----- Animations ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
@keyframes blink {
  0%, 50%  { opacity: 1; }
  51%, 100%{ opacity: 0; }
}

/* ----- Layout primitives ----- */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section   { padding: 120px var(--pad-x); }
.section--sm{ padding: 80px var(--pad-x); }
.bg-alt    { background: var(--bg-alt); }
.bg-ink    { background: var(--ink); color: var(--bg); }

/* ----- Scroll progress ----- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 60; pointer-events: none;
}
.scroll-progress__bar {
  width: 0%; height: 100%; background: var(--accent);
  transition: width .1s linear;
}

/* ============ Navigation ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, backdrop-filter .2s;
}
.nav.is-scrolled {
  background: rgba(244, 241, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .dot { color: var(--accent); }

.nav__links { display: flex; gap: 4px; align-items: center; font-size: 14px; }
.nav__link {
  position: relative;
  padding: 8px 14px;
  color: var(--ink-2);
}
.nav__link.is-active { color: var(--ink); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.nav__phone {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  padding: 8px 14px;
}
.nav__cta {
  margin-left: 8px;
  background: var(--accent); color: var(--bg);
  padding: 11px 20px; border-radius: var(--r-pill);
  font-weight: 500; display: inline-flex; align-items: center; gap: 8px;
}
.nav__menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: transform .2s, opacity .2s; }
.nav__menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__menu-btn.is-open span:nth-child(2) { opacity: 0; }
.nav__menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500; cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.btn--primary {
  background: var(--accent); color: var(--bg);
  box-shadow: 0 1px 3px rgba(31,77,58,.2), 0 8px 24px rgba(31,77,58,.15);
}
.btn--primary:hover { background: var(--accent-h); transform: translateY(-1px); }
.btn--secondary {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover { background: var(--ink); color: var(--bg); }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--ghost-light {
  background: var(--bg); color: var(--ink);
}
.btn--ghost-dark {
  background: transparent; color: var(--bg);
  border-color: var(--dark-line);
}
.btn .arrow { font-size: 18px; line-height: 1; }

/* ============ Trust bar ============ */
.trust {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--pad-x);
}
.trust__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-radius: var(--r-sm); overflow: hidden;
}
.trust__cell {
  background: var(--bg-alt); padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.trust__big { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.trust__small { font-size: 12px; color: var(--muted); padding-left: 22px; }
.check {
  width: 14px; height: 14px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
}

/* ============ Logo strip ============ */
.logos {
  padding: 40px var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.logos__row {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.logos__label {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.logos__name {
  font-family: var(--serif); font-style: italic; font-size: 24px;
  color: var(--ink-2); letter-spacing: -0.01em;
}
.logos__name--muted { color: var(--muted); }

/* ============ Sticky CTA ============ */
.sticky-cta {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 40;
  background: var(--ink); color: var(--bg);
  padding: 12px 12px 12px 20px; border-radius: var(--r-pill);
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  max-width: 92vw;
  opacity: 0; pointer-events: none;
  transition: transform .35s ease, opacity .25s ease;
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.sticky-cta__dot {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--mint); box-shadow: 0 0 8px var(--mint);
  flex-shrink: 0;
}
.sticky-cta__text { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta__text strong { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 16px; }
.sticky-cta__btn {
  background: var(--accent); color: var(--bg);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.sticky-cta__close {
  background: transparent; border: 0; color: var(--bg);
  opacity: .5; cursor: pointer; font-size: 18px;
  width: 28px; height: 28px; border-radius: var(--r-pill);
}
.sticky-cta__close:hover { opacity: 1; }

/* ============ Floating contact ============ */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 39;
  display: flex; flex-direction: column; gap: 10px;
}
.fab__btn {
  width: 52px; height: 52px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: transform .15s;
}
.fab__btn:hover { transform: translateY(-2px); }
.fab__btn--wa { background: #25D366; color: #fff; }

/* ============ Section heading ============ */
.kicker {
  font-size: 13px; color: var(--accent);
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
}
.kicker--dark { color: var(--on-dark-2); }
.h-display {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}
.h-display em { color: var(--accent); }
.bg-ink .h-display { color: var(--bg); }
.bg-ink .h-display em { color: var(--on-dark-2); }
.h-mega {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--ink);
}
.h-mega--xl { font-size: clamp(56px, 8.5vw, 128px); }
.h-mega em { color: var(--accent); }
.lead {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  margin-top: 24px; max-width: 640px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ Hero ============ */
.hero {
  padding: 60px var(--pad-x) 100px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.scarcity-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13px; color: var(--ink-2);
  margin-bottom: 40px;
}
.scarcity-pill__dot {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: #4CA97A;
  animation: pulse 2s infinite;
}
.hero__title { max-width: 1200px; }
.hero__grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: end;
}
.hero__copy { font-size: 22px; line-height: 1.5; color: var(--ink-2); margin: 0 0 32px; max-width: 560px; }
.hero__copy strong { color: var(--ink); }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__proof { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--muted); }
.avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: var(--r-pill);
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 600;
}
.avatar + .avatar { margin-left: -8px; }

.price-card {
  background: var(--ink); color: var(--bg);
  padding: 32px; border-radius: var(--r-lg);
  transform: rotate(0.5deg);
  box-shadow: 0 20px 60px rgba(31,77,58,.2);
}
.price-card__caption { font-family: var(--mono); font-size: 12px; color: var(--on-dark-2); margin-bottom: 16px; }
.price-card__row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price-card__old {
  font-family: var(--serif); font-size: 32px; color: var(--on-dark-2);
  text-decoration: line-through; text-decoration-thickness: 2px;
}
.price-card__new {
  font-family: var(--serif); font-size: 60px; font-style: italic; color: var(--bg);
  letter-spacing: -0.02em; line-height: 1;
}
.price-card p { font-size: 15px; line-height: 1.55; color: var(--on-dark); margin: 0 0 20px; }
.price-card a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mint); font-size: 14px; font-weight: 500;
}

/* ============ Why-choose ============ */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.why-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 28px;
  display: flex; flex-direction: column; min-height: 280px;
}
.why-card__glyph {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 24px; font-style: italic;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--serif); font-size: 26px; margin: 0 0 10px;
  color: var(--ink); letter-spacing: -0.01em; font-weight: 400;
}
.why-card p { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0 0 auto; }
.why-card__vs {
  margin-top: 20px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted); font-family: var(--mono);
}

.section__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.section__head--col { display: block; margin-bottom: 64px; max-width: 900px; }
.link-arrow { color: var(--accent); font-size: 15px; font-weight: 600; }

/* ============ Services preview (bento) ============ */
.services-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.svc-card {
  background: var(--bg); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  min-height: 200px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.svc-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(21, 32, 26, .08); }
.svc-card--featured {
  background: var(--accent); color: var(--bg);
  border: none;
  grid-column: span 2; grid-row: span 2;
  min-height: 420px; padding: 40px;
}
.svc-card__head {
  display: flex; justify-content: space-between; align-items: start;
  margin-bottom: 16px;
}
.svc-card--featured .svc-card__head { margin-bottom: 40px; }
.svc-card__num { font-family: var(--mono); font-size: 12px; opacity: .6; }
.svc-card__arrow {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.svc-card--featured .svc-card__arrow { border-color: rgba(255,255,255,.3); }
.svc-card h3 {
  font-family: var(--serif); font-size: 24px; margin: 0 0 12px;
  letter-spacing: -0.02em; font-weight: 400; line-height: 1;
}
.svc-card--featured h3 { font-size: 64px; font-style: italic; }
.svc-card p { font-size: 14px; line-height: 1.5; opacity: .9; margin: 0 0 auto; }
.svc-card--featured p { font-size: 18px; max-width: 500px; }
.svc-card__foot {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.svc-card--featured .svc-card__foot { margin-top: 32px; border-top-color: rgba(255,255,255,.2); }
.svc-card__price { font-family: var(--mono); font-size: 13px; opacity: .8; }
.svc-card__star { font-size: 13px; font-weight: 600; }

/* ============ Process ============ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-cell { background: var(--bg); padding: 32px; }
.process-cell__num {
  font-family: var(--serif); font-size: 64px; color: var(--accent);
  font-style: italic; line-height: 1; margin-bottom: 20px;
}
.process-cell h3 {
  font-family: var(--serif); font-size: 26px; margin: 0 0 8px;
  color: var(--ink); letter-spacing: -0.01em; font-weight: 400;
}
.process-cell__time {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); margin-bottom: 16px;
}
.process-cell p { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0; }

/* ============ Testimonials ============ */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column;
}
.tcard__quote-mark {
  font-family: var(--serif); font-size: 72px; color: var(--accent);
  line-height: 0.4; margin-bottom: 20px; font-style: italic;
}
.tcard__q {
  font-family: var(--serif); font-size: 24px; line-height: 1.4;
  color: var(--ink); margin: 0 0 auto; letter-spacing: -0.01em;
}
.tcard__by {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.tcard__avatar {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.tcard__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.tcard__role { font-size: 12px; color: var(--muted); }

/* ============ Portfolio cards ============ */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s;
}
.pcard:hover { transform: translateY(-3px); }
.pcard__cover {
  aspect-ratio: 4/3; position: relative;
}
.pcard__cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.08) 24px 48px);
}
.pcover__top {
  position: absolute; top: 20px; left: 20px; right: 20px;
  display: flex; justify-content: space-between;
  color: #fff; font-family: var(--mono); font-size: 12px; opacity: .9;
  z-index: 1;
}
.pcover__bot {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: #fff; z-index: 1;
}
.pcover__title { font-family: var(--serif); font-size: 32px; font-style: italic; letter-spacing: -0.01em; line-height: 1; }
.pcover__sub { font-size: 13px; opacity: .85; margin-top: 4px; }

.pcard__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pcard__result {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px; font-size: 13px; color: var(--accent); font-weight: 600;
}
.pcard__desc { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0 0 auto; }
.pcard__foot {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  padding: 3px 8px; background: var(--bg-alt);
  border-radius: var(--r-pill);
  font-size: 11px; color: var(--ink-2);
}

/* ============ Pricing ============ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 64px;
}
.tier {
  background: transparent;
  border: 1px solid var(--dark-line);
  border-radius: var(--r-lg);
  padding: 32px; position: relative;
}
.tier--best {
  background: #2A3830;
  border-color: #4A5D4F;
}
.tier__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--mint); color: var(--ink);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
}
.tier__name { font-family: var(--mono); font-size: 12px; color: var(--on-dark-2); margin-bottom: 12px; }
.tier__price {
  font-family: var(--serif); font-size: 48px; font-style: italic;
  color: var(--bg); letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 12px;
}
.tier__desc { font-size: 15px; color: var(--on-dark); margin-bottom: 24px; }
.tier__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tier__list-item { display: flex; gap: 10px; font-size: 14px; color: var(--on-dark); }
.tier__list-item .ck { color: var(--mint); }
.tier__cta {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  background: transparent; color: var(--bg);
  border: 1px solid #4A5D4F;
}
.tier--best .tier__cta { background: var(--mint); color: var(--ink); border: none; }
.pricing-fineprint {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--on-dark-2); font-family: var(--mono);
}

/* ============ Guarantees ============ */
.gg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gg-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px; display: flex; gap: 20px;
}
.gg-card__ck {
  width: 48px; height: 48px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
}
.gg-card h3 {
  font-family: var(--serif); font-size: 26px; margin: 0 0 8px;
  color: var(--ink); letter-spacing: -0.01em; font-weight: 400; font-style: italic;
}
.gg-card p { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0; }

/* ============ FAQ ============ */
.faq { max-width: 1000px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__btn {
  width: 100%; text-align: left; padding: 24px 0;
  background: transparent; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; color: var(--ink);
}
.faq__q { font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; line-height: 1.2; }
.faq__toggle {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: transparent; color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
  transition: background .15s, color .15s;
}
.faq__item.is-open .faq__toggle { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.faq__a {
  font-size: 17px; line-height: 1.6; color: var(--ink-2);
  margin: 0; padding: 0 0 24px; max-width: 780px;
  display: none;
  animation: fadeUp .25s ease-out;
}
.faq__item.is-open .faq__a { display: block; }

.faq-cta {
  margin-top: 48px; padding: 24px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.faq-cta__title { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.faq-cta__sub { font-size: 14px; color: var(--muted); }
.faq-cta__btns { display: flex; gap: 10px; }
.faq-cta__btn {
  padding: 12px 20px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
}
.faq-cta__btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.faq-cta__btn--solid { background: var(--accent); color: var(--bg); }

/* ============ Final CTA ============ */
.final-cta {
  padding: 120px var(--pad-x);
  background: var(--ink); color: var(--bg);
}
.final-cta__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  margin: 0 0 32px; letter-spacing: -0.02em; font-weight: 400; line-height: 1;
}
.final-cta h2 em { color: var(--on-dark-2); }
.final-cta__lead { font-size: 20px; line-height: 1.6; color: var(--on-dark); margin: 0 auto 40px; max-width: 580; }
.final-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta__avg {
  margin-top: 32px; font-size: 13px; color: var(--on-dark-2);
  font-family: var(--mono);
}

/* ============ Inline lead form ============ */
.lead-form {
  display: flex; align-items: center; gap: 0;
  max-width: 500px;
  background: var(--bg); border: 1px solid var(--line);
  padding: 8px; border-radius: var(--r-pill);
}
.lead-form--dark {
  background: transparent; border: none; padding: 0;
}
.lead-form input {
  flex: 1; border: 0; background: transparent;
  padding: 14px 20px; outline: none; font-size: 15px;
  min-width: 0;
}
.lead-form--dark input { color: var(--bg); }
.lead-form button {
  background: var(--accent); color: var(--bg); border: 0;
  padding: 14px 22px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; cursor: pointer;
  white-space: nowrap;
}
.lead-form__done { padding: 10px 20px; font-size: 14px; }
.lead-form--dark .lead-form__done { color: var(--bg); }

/* ============ Footer ============ */
.footer {
  background: var(--ink); color: var(--on-dark-2);
  padding: 80px var(--pad-x) 40px;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer__brand {
  font-family: var(--serif); font-size: 36px; font-style: italic;
  color: var(--bg); margin-bottom: 16px;
}
.footer__brand .dot { color: var(--on-dark-2); }
.footer__intro {
  font-size: 15px; line-height: 1.6;
  color: #A7BFB1; margin-bottom: 24px; max-width: 360px;
}
.footer__heading {
  font-size: 13px; color: var(--on-dark-2);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list a { color: var(--bg); font-size: 15px; }
.footer__list span { color: var(--on-dark-2); font-size: 15px; }
.footer__btw { font-family: var(--mono); font-size: 13px; }
.footer__bottom {
  border-top: 1px solid var(--dark-line); padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--on-dark-2);
}

/* ============ Page heros (subpages) ============ */
.subpage-hero {
  padding: 60px var(--pad-x) 80px;
  max-width: var(--max);
  margin: 0 auto;
}
.subpage-hero .lead { font-size: 22px; max-width: 640px; margin-top: 40px; }

/* ============ Diensten — detail rows ============ */
.dienst-row {
  border-top: 1px solid var(--line);
  padding: 80px 0;
}
.dienst-row__grid {
  display: grid; grid-template-columns: 0.4fr 1fr; gap: 48px;
}
.dienst-row__num { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.dienst-row__sticky { position: sticky; top: 100px; }
.dienst-row__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 20px; color: var(--ink);
  letter-spacing: -0.02em; font-weight: 400; line-height: 1;
  font-style: italic;
}
.pill-soft {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; background: var(--accent-soft);
  border-radius: var(--r-pill);
  font-size: 13px; color: var(--accent); font-weight: 600;
}
.pill-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; background: var(--ink); color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 600;
  margin-left: 8px; margin-top: 12px;
}
.dienst-row__long { font-size: 22px; line-height: 1.5; color: var(--ink); margin: 0 0 32px; }
.deliver-label {
  font-size: 13px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px;
}
.deliver-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; }
.deliver-item {
  display: flex; gap: 12px; padding: 14px 16px;
  background: var(--bg-alt); border-radius: var(--r-sm);
  font-size: 15px; color: var(--ink);
}
.deliver-item .ck { color: var(--accent); font-weight: 700; }

/* ============ Werk — case studies ============ */
.case {
  border-top: 1px solid var(--line);
  padding: 80px 0;
}
.case__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.case--reverse .case__grid > .case__media { order: 2; }
.case__media {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.case__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,.06) 28px 56px);
}
.case__media-num { position: absolute; top: 24px; left: 24px; font-family: var(--mono); font-size: 12px; color: #fff; opacity: .9; z-index: 1; }
.case__media-cap { position: absolute; bottom: 24px; left: 24px; right: 24px; color: #fff; z-index: 1; }
.case__media-title { font-family: var(--serif); font-size: 48px; font-style: italic; letter-spacing: -0.02em; line-height: 1; }
.case__media-sub { font-size: 14px; opacity: .9; margin-top: 8px; }
.case__num { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.case__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 0 0 20px; color: var(--ink);
  letter-spacing: -0.02em; font-weight: 400; line-height: 1.05;
}
.case__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.case__tag { padding: 4px 12px; background: var(--bg-alt); border-radius: var(--r-pill); font-size: 12px; color: var(--ink-2); border: 1px solid var(--line); }
.case__desc { font-size: 19px; line-height: 1.6; color: var(--ink-2); margin: 0 0 24px; }
.case__result {
  background: var(--accent-soft);
  border: 1px solid rgba(31, 77, 58, .19);
  border-radius: var(--r-md); padding: 20px;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.case__result-ck {
  width: 36px; height: 36px; border-radius: var(--r-pill); background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px;
}
.case__result-label { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.case__result-text { font-size: 17px; color: var(--ink); font-weight: 500; }
.case__quote {
  margin: 0; padding: 0 0 0 20px;
  border-left: 2px solid var(--accent);
}
.case__quote p { font-family: var(--serif); font-size: 22px; line-height: 1.4; font-style: italic; color: var(--ink); margin: 0 0 10px; }
.case__quote footer { font-size: 13px; color: var(--muted); }

.next-case {
  padding: 120px var(--pad-x);
  background: var(--bg-alt);
}
.next-case__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.next-case__caption { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-bottom: 20px; }
.next-case h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  margin: 0 0 24px; color: var(--ink);
  letter-spacing: -0.02em; font-weight: 400; line-height: 1;
}
.next-case h2 em { color: var(--accent); }
.next-case__lead { font-size: 20px; line-height: 1.6; color: var(--ink-2); margin: 0 auto 40px; max-width: 600px; }
.next-case__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ Over (about) ============ */
.over-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.over-hero h1 { font-size: clamp(56px, 7vw, 96px); }
.over-portrait {
  aspect-ratio: 3/4;
  background: var(--accent);
  border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.over-portrait::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,.08) 28px 56px);
}
.over-portrait__file { position: absolute; top: 20px; left: 20px; font-family: var(--mono); font-size: 12px; color: #fff; opacity: .85; z-index: 1; }
.over-portrait__cap { position: absolute; bottom: 24px; left: 24px; color: #fff; z-index: 1; }
.over-portrait__cap .name { font-family: var(--serif); font-size: 40px; font-style: italic; letter-spacing: -0.02em; line-height: 1; }
.over-portrait__cap .loc { font-size: 14px; opacity: .9; margin-top: 6px; }

.over-story { padding: 80px var(--pad-x); background: var(--bg-alt); }
.over-story__inner { max-width: 780px; margin: 0 auto; }
.over-story__body {
  font-size: 20px; line-height: 1.7; color: var(--ink);
  font-family: var(--serif); font-style: italic;
}
.over-story__body strong { font-style: normal; color: var(--ink); }
.over-story__body p { margin: 0 0 1.2em; }

.facts-grid { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fact {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 20px;
}
.fact__label { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.fact__val { font-size: 17px; color: var(--ink); font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value {
  background: var(--bg-alt); border-radius: var(--r-lg); padding: 32px;
  border: 1px solid var(--line);
}
.value__num { font-family: var(--serif); font-size: 56px; color: var(--accent); font-style: italic; line-height: 1; margin-bottom: 16px; }
.value h3 { font-family: var(--serif); font-size: 30px; margin: 0 0 12px; color: var(--ink); letter-spacing: -0.01em; font-weight: 400; font-style: italic; }
.value p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ============ Contact ============ */
.contact-options {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 0 var(--pad-x);
}
.contact-options__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.contact-opt {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px;
  display: flex; align-items: center; gap: 18px; color: var(--ink);
  transition: transform .15s, border-color .15s;
}
.contact-opt:hover { transform: translateY(-2px); border-color: var(--accent); }
.contact-opt__icon {
  width: 48px; height: 48px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-opt__label { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 2px; }
.contact-opt__val { font-size: 16px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contact-opt__sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.cform-wrap { padding: 60px var(--pad-x) 120px; }
.cform { max-width: 720px; margin: 0 auto; }
.cform__progress { margin-bottom: 32px; }
.cform__progress-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 10px; font-family: var(--mono); }
.cform__progress-track { height: 4px; background: var(--line); border-radius: var(--r-pill); overflow: hidden; }
.cform__progress-bar { width: 25%; height: 100%; background: var(--accent); transition: width .3s; }

.cform__card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 24px; padding: 40px;
}
.cform__step { animation: fadeUp .3s ease-out; }
.cform__step[hidden] { display: none; }
.cform__step h2 { font-family: var(--serif); font-size: 40px; margin: 0 0 10px; color: var(--ink); letter-spacing: -0.02em; font-weight: 400; }
.cform__step .hint { font-size: 15px; color: var(--muted); margin: 0 0 28px; }

.option-grid { display: grid; gap: 10px; }
.option-grid--2 { grid-template-columns: 1fr 1fr; }
.option {
  padding: 18px 20px; text-align: left;
  border-radius: var(--r-sm); cursor: pointer;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink); font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .15s, background .15s;
}
.option:hover { border-color: var(--accent); }
.option.is-selected {
  border-color: var(--accent); background: var(--accent-soft);
  font-weight: 600;
}
.option .ck { color: var(--accent); display: none; }
.option.is-selected .ck { display: inline; }

.field { display: block; }
.field__label { font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.field input, .field textarea, .text-field input, .text-field textarea {
  width: 100%; padding: 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-alt); outline: none;
  font-size: 15px; color: var(--ink); font-family: inherit;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-stack { display: flex; flex-direction: column; gap: 14px; }

.cform__nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }
.cform__btn-back {
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--line);
  padding: 14px 22px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500; cursor: pointer;
}
.cform__btn-next, .cform__btn-submit {
  background: var(--accent); color: var(--bg); border: 0;
  padding: 14px 26px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
}
.cform__btn-next:disabled {
  background: var(--line); color: var(--muted); cursor: not-allowed;
}

.cform__assurances {
  margin-top: 24px; display: flex; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); font-family: var(--mono);
}

.cform__success {
  background: var(--ink); color: var(--bg);
  border-radius: 24px; padding: 60px; text-align: center;
}
.cform__success-ck {
  width: 72px; height: 72px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 32px; font-weight: 700;
}
.cform__success h2 {
  font-family: var(--serif); font-size: 48px; margin: 0 0 16px;
  font-style: italic; letter-spacing: -0.02em;
}
.cform__success p {
  font-size: 18px; line-height: 1.6; color: var(--on-dark);
  margin: 0 auto 24px; max-width: 480px;
}
.cform__success-fineprint {
  font-size: 14px; color: var(--on-dark-2); font-family: var(--mono);
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero__grid,
  .over-hero,
  .case__grid { grid-template-columns: 1fr; gap: 40px; }
  .case--reverse .case__grid > .case__media { order: 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bento { grid-template-columns: 1fr 1fr; }
  .svc-card--featured { grid-column: span 2; grid-row: auto; min-height: 320px; }
  .svc-card--featured h3 { font-size: 44px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .tg, .pgrid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gg-grid, .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-options__grid { grid-template-columns: 1fr; }
  .dienst-row__grid { grid-template-columns: 1fr; gap: 24px; }
  .dienst-row__sticky { position: static; }
  .deliver-grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; }
  .section { padding: 80px var(--pad-x); }
  .hero { padding: 40px var(--pad-x) 60px; }
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px var(--pad-x); flex-direction: column; align-items: stretch; gap: 0; }
  .nav.is-open .nav__links { display: flex; }
  .nav__link, .nav__phone { padding: 14px; }
  .nav__cta { margin: 8px 0 0 0; justify-content: center; }
  .nav__menu-btn { display: block; }
  .why-grid, .services-bento, .process-grid, .footer__grid, .field-row { grid-template-columns: 1fr; }
  .svc-card--featured { grid-column: auto; }
  .svc-card--featured h3 { font-size: 40px; }
  .price-card { transform: none; }
  .hero__grid { gap: 40px; }
  .trust__grid { grid-template-columns: 1fr; }
  .cform__card { padding: 24px; }
  .option-grid--2 { grid-template-columns: 1fr; }
  .footer { padding: 60px var(--pad-x) 32px; }
  .pcover__title, .case__media-title, .over-portrait__cap .name { font-size: 28px; }
}
