/* ─── Molitor Mediation · Editorial Site ──────────────────────────── */

/* Palette tokens — set on :root, overridden per palette tweak */
:root {
  --bg:        #f6f2eb;
  --bg-alt:    #ece5d8;
  --bg-2:      #ece5d8;   /* alias for vorslag 1 compat */
  --paper:     #ffffff;
  --surface:   #ffffff;   /* alias for vorslag 1 compat */
  --ink:       #1c1a17;
  --ink-soft:  #5a544c;
  --ink-2:     #5a544c;   /* alias for vorslag 1 compat */
  --ink-3:     #8a8278;   /* alias for vorslag 1 compat */
  --mute:      #8a8278;
  --hair:      #ddd4c2;
  --line:      #ddd4c2;   /* alias for vorslag 1 compat */
  --line-2:    #b9ad94;   /* alias for vorslag 1 compat */
  --primary:   #1c6e83;
  --primary-deep: #134e5e;
  --primary-soft: #c9dde2;
  --accent:    #b8835a;

  --serif:     "Cormorant Garamond", "Cormorant", "Iowan Old Style", Georgia, serif;
  --sans:      "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:      "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  /* Vorslag 1 shadow tokens */
  --shadow-sm: 0 1px 2px rgba(28,26,23,.05), 0 1px 1px rgba(28,26,23,.03);
  --shadow-md: 0 10px 30px -12px rgba(19,78,94,.18), 0 2px 6px rgba(28,26,23,.04);
  --shadow-lg: 0 30px 60px -20px rgba(19,78,94,.25), 0 8px 20px -8px rgba(28,26,23,.08);

  /* Vorslag 1 radius tokens */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --gutter:    clamp(20px, 4vw, 64px);
  --maxw:      1280px;
  --measure:   68ch;
}

/* Palettes ----------------------------------------------------------- */
[data-palette="sea"] {
  --bg: #f6f2eb;  --bg-alt: #ece5d8;  --paper: #ffffff;
  --ink: #1c1a17; --ink-soft: #5a544c; --mute: #8a8278;
  --hair: #ddd4c2;
  --primary: #1c6e83; --primary-deep: #134e5e; --primary-soft: #c9dde2;
  --accent: #b8835a;
}
[data-palette="sage"] {
  --bg: #f3f1ea;  --bg-alt: #e6e3d6;  --paper: #ffffff;
  --ink: #1c1a17; --ink-soft: #5a544c; --mute: #8a8278;
  --hair: #d4d0bd;
  --primary: #4a6b58; --primary-deep: #2f4a3c; --primary-soft: #d2dfd5;
  --accent: #c89a6a;
}
[data-palette="slate"] {
  --bg: #f1f1ee;  --bg-alt: #e2e2dd;  --paper: #ffffff;
  --ink: #1c1a17; --ink-soft: #5a544c; --mute: #8a8278;
  --hair: #d2d2cb;
  --primary: #2f4858; --primary-deep: #1c2f3b; --primary-soft: #d4dde3;
  --accent: #a87f5b;
}

/* Typography sets ---------------------------------------------------- */
[data-typeset="editorial"] {
  --serif: "Newsreader", Georgia, serif;
  --sans:  "Geist", -apple-system, sans-serif;
  --h-weight: 400;
  --h-tracking: -0.02em;
  --h-leading: 1.04;
}
[data-typeset="classic"] {
  --serif: "Cormorant Garamond", "Source Serif 4", Georgia, serif;
  --sans:  "IBM Plex Sans", -apple-system, sans-serif;
  --h-weight: 500;
  --h-tracking: -0.005em;
  --h-leading: 1.08;
}
[data-typeset="modern"] {
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans:  "Geist", -apple-system, sans-serif;
  --h-weight: 400;
  --h-tracking: -0.03em;
  --h-leading: 1.0;
}

/* Base --------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Typography utilities ---------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.serif { font-family: var(--serif); }
.italic { font-style: italic; }

.h-display {
  font-family: var(--serif);
  font-weight: var(--h-weight, 400);
  font-size: clamp(48px, 8.4vw, 124px);
  line-height: var(--h-leading, 1.02);
  letter-spacing: var(--h-tracking, -0.02em);
  color: var(--ink);
}
.h1 {
  font-family: var(--serif);
  font-weight: var(--h-weight, 400);
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: var(--h-leading, 1.05);
  letter-spacing: var(--h-tracking, -0.02em);
}
.h2 {
  font-family: var(--serif);
  font-weight: var(--h-weight, 400);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
  letter-spacing: var(--h-tracking, -0.015em);
}
.h3 {
  font-family: var(--serif);
  font-weight: var(--h-weight, 400);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}
.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 32ch;
}
.body-lg {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.body { color: var(--ink-soft); }
.meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}

/* Layout ------------------------------------------------------------ */
.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.shell-wide { max-width: 1480px; margin: 0 auto; padding: 0 var(--gutter); }

/* Hairlines */
.hr { border: 0; border-top: 1px solid var(--hair); margin: 0; }
.hr-bold { border: 0; border-top: 1px solid var(--ink); margin: 0; }

/* Button ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  background: var(--primary);
  color: var(--paper);
  text-decoration: none;
}
.btn:hover { background: var(--primary-deep); transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-quiet {
  background: transparent; color: var(--ink);
  border-color: var(--hair); padding: 12px 18px;
}
.btn-quiet:hover { background: var(--bg-alt); border-color: var(--ink); transform: none; }

/* Pill / tag */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--primary-soft); color: var(--primary-deep);
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 500;
}
.tag .dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; }

/* Header / Nav ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 32px;
}
.nav-brand {
  display: inline-flex; align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.brand-logo {
  height: 38px; width: auto; max-width: 180px;
  display: block;
}
.brand-logo-dark {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.nav-center {
  flex: 1;
  display: flex; justify-content: center;
  min-width: 0;
}
.nav-list {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-list li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 999px;
  font-size: 14px; color: var(--ink-soft);
  cursor: pointer; user-select: none;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--bg-alt); color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ""; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--ink);
}
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { font-family: var(--mono); font-size: 12px; color: var(--mute); white-space: nowrap; }
@media (max-width: 1100px) { .nav-phone { display: none; } }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: -8px;
  padding: 18px 10px 10px; /* top padding acts as the visual gap */
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 14px;
  width: 360px;
  box-shadow: 0 24px 60px -20px rgba(15,32,31,0.18);
  display: grid; gap: 2px;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
/* invisible bridge fills the gap so hover isn't interrupted */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 8px;
}
.nav-list li:hover .dropdown,
.nav-list li:focus-within .dropdown {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.dropdown-item {
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 12px;
  padding: 12px 12px; border-radius: 10px;
  cursor: pointer;
  color: var(--ink);
}
.dropdown-item:hover { background: var(--bg-alt); }
.dropdown-item .num {
  font-family: var(--mono); font-size: 11px;
  color: var(--mute);
}
.dropdown-item .label { font-size: 14px; font-weight: 500; }
.dropdown-item .label small {
  display: block; font-weight: 400; color: var(--mute);
  font-size: 12px; margin-top: 2px;
}
.dropdown-item .arrow { color: var(--mute); opacity: 0; transition: opacity .15s, transform .15s; }
.dropdown-item:hover .arrow { opacity: 1; transform: translateX(2px); color: var(--primary); }

/* Footer ------------------------------------------------------------ */
.site-footer {
  background: #14181a;
  color: #c4b9a4;
  margin-top: 120px;
  padding: 80px 0 32px;
}
.site-footer .shell { display: grid; gap: 60px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.footer-top h4 {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #d8b58a; margin: 0 0 20px;
  font-weight: 500;
}
.footer-top ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-top li { font-size: 14px; }
.footer-top a:hover { color: #fff; }
.footer-quote {
  font-family: var(--serif); font-size: 22px; line-height: 1.35;
  font-style: italic; color: #c4b9a4;
}
.footer-social {
  display: flex; gap: 14px; margin-top: 20px;
}
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid #3a3e3f; color: #c4b9a4;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  color: #fff; border-color: #d8b58a;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid #2a2e30;
  font-size: 12px; color: #8b8275;
}

/* Card / Service teaser --------------------------------------------- */
.svc-card {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding: 28px 4px; border-top: 1px solid var(--hair);
  cursor: pointer; transition: padding .25s ease;
}
.svc-card:last-child { border-bottom: 1px solid var(--hair); }
.svc-card:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-alt); }
.svc-card .num { font-family: var(--mono); font-size: 12px; color: var(--mute); }
.svc-card .title {
  font-family: var(--serif); font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12; letter-spacing: -0.01em;
}
.svc-card .desc { color: var(--mute); font-size: 14px; margin-top: 4px; max-width: 56ch; }
.svc-card .go {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all .2s ease;
}
.svc-card:hover .go { background: var(--primary); border-color: var(--primary); color: var(--paper); }

/* Photo treatments -------------------------------------------------- */
.photo {
  position: relative; overflow: hidden;
  background: var(--bg-alt);
}
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo .frame-meta {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.05em; color: var(--ink-soft);
}
/* photo-duo kept as a hook but now neutral — photos render natural */
.photo-duo img { filter: none; mix-blend-mode: normal; }
.photo-duo::after { content: none; }

/* Subtle elegant frame instead of blue tint */
.photo {
  border-radius: 4px;
  box-shadow:
    0 1px 0 var(--hair) inset,
    0 30px 60px -30px rgba(15,32,31,0.18);
}

/* Hero --------------------------------------------------------------- */
.hero {
  padding: clamp(20px, 5vw, 60px) 0 clamp(40px, 6vw, 80px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: clamp(16px, 3vw, 32px);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  gap: 16px;
}
.hero-headline em {
  font-style: italic;
  color: var(--primary);
}
.hero-headline .stack { display: block; }
.hero-headline .stack:nth-child(2) { padding-left: clamp(40px, 8vw, 120px); }
.hero-headline .stack:nth-child(3) { padding-left: clamp(80px, 16vw, 240px); }
.hero-aside {
  padding-bottom: 12px;
  display: grid; gap: 24px;
}
.hero-photo {
  aspect-ratio: 4/5;
  border-radius: 4px;
}

/* Section spacing --------------------------------------------------- */
section { padding: clamp(60px, 10vw, 140px) 0; }
section.tight { padding: clamp(40px, 6vw, 80px) 0; }
.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 80px);
  padding-bottom: 24px; border-bottom: 1px solid var(--hair);
}
.section-head .label { display: flex; flex-direction: column; gap: 8px; }
.section-head .label .num { font-family: var(--mono); font-size: 12px; color: var(--mute); }
.section-head .label .name { font-family: var(--sans); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.section-head .title { max-width: none; text-align: left; }

/* Problem statement panels ----------------------------------------- */
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.problem-cell {
  background: var(--bg);
  padding: 36px 32px;
  display: grid; gap: 16px; align-content: start;
  min-height: 280px;
}
.problem-cell .icon-frame {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px;
}
.problem-cell h3 {
  font-family: var(--serif);
  font-size: 24px; line-height: 1.18;
  margin: 0; font-weight: var(--h-weight, 400);
  letter-spacing: -0.01em;
}
.problem-cell p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0; }

/* Vision / before-after band --------------------------------------- */
.vision-band {
  background: var(--primary-deep);
  color: #f4ece0;
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.vision-band .shell { position: relative; z-index: 1; }
.vision-band .eyebrow { color: #d8b58a; }
.vision-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.1; letter-spacing: -0.015em;
  max-width: 18ch;
  margin: 24px 0 0;
  color: #fff;
}
.vision-headline em { font-style: normal; color: #d8b58a; }
.vision-foot {
  margin-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: rgba(216,181,138,0.18);
  border: 1px solid rgba(216,181,138,0.18);
}
.vision-foot div {
  background: var(--primary-deep);
  padding: 28px 32px;
}
.vision-foot .num {
  font-family: var(--mono); font-size: 11px; color: #d8b58a;
  display: block; margin-bottom: 16px;
}
.vision-foot h4 {
  font-family: var(--serif); font-size: 22px; margin: 0 0 8px;
  font-weight: var(--h-weight, 400); letter-spacing: -0.005em;
  color: #fff;
}
.vision-foot p { font-size: 14px; color: #d8cfbe; margin: 0; line-height: 1.5; }

/* Process timeline -------------------------------------------------- */
.process-list { display: grid; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 32px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--hair); }
.process-step .num {
  font-family: var(--mono); font-size: 12px; color: var(--primary);
  font-variant-numeric: tabular-nums;
}
.process-step h3 {
  font-family: var(--serif); font-size: 28px;
  margin: 0; line-height: 1.2; font-weight: var(--h-weight, 400);
  letter-spacing: -0.01em;
}
.process-step .meta { font-family: var(--mono); font-size: 11px; color: var(--mute); margin-top: 8px; }
.process-step p { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* Quote / pull -------------------------------------------------------- */
.pull {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2; letter-spacing: -0.01em;
  font-weight: var(--h-weight, 400);
  font-style: italic;
}
.pull .mark {
  font-family: var(--serif); font-style: normal; font-size: 1.6em;
  color: var(--primary); line-height: 1; vertical-align: -0.05em;
  margin-right: 6px; display: inline-block;
}

/* About cluster ------------------------------------------------------ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-portrait { aspect-ratio: 3/4; border-radius: 4px; }
.cred-list { display: grid; gap: 0; margin-top: 32px; }
.cred-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding: 18px 0; border-top: 1px solid var(--hair);
}
.cred-item:last-child { border-bottom: 1px solid var(--hair); }
.cred-item dt {
  font-family: var(--mono); font-size: 11px; color: var(--mute);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.cred-item dd { margin: 0; font-size: 15px; color: var(--ink); }

/* Stats row */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 40px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.stat-row .stat .n {
  font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1; color: var(--primary); font-weight: var(--h-weight, 400);
  letter-spacing: -0.02em;
}
.stat-row .stat .l { font-size: 13px; color: var(--mute); margin-top: 8px; }

/* Service page sub-pattern ------------------------------------------ */
.svc-hero {
  padding: clamp(40px, 7vw, 100px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--hair);
}
.svc-hero-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: end;
}
.svc-hero .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--mute);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 32px;
}
.svc-hero .breadcrumb a { color: var(--mute); }
.svc-hero .breadcrumb a:hover { color: var(--ink); }
.svc-hero .breadcrumb .sep { opacity: 0.4; }
.svc-hero h1 {
  font-family: var(--sans);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin: 0; font-weight: 600;
}
.svc-hero h1 em { font-style: normal; color: inherit; }
.svc-hero .svc-photo {
  aspect-ratio: 5/4; border-radius: 4px;
}
.svc-hero .svc-photo img {
  object-position: center 15%;
}

/* Situations grid */
.situations {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  margin: 48px 0;
}
.situation {
  background: var(--bg);
  padding: 36px 32px;
  display: grid; gap: 16px;
}
.situation .num { font-family: var(--mono); font-size: 11px; color: var(--primary); }
.situation h4 {
  font-family: var(--serif); font-size: 22px;
  margin: 0; line-height: 1.2; font-weight: var(--h-weight, 400);
  letter-spacing: -0.01em;
}
.situation p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* FAQ --------------------------------------------------------------- */
.faq-item {
  border-top: 1px solid var(--hair);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 24px; align-items: baseline;
}
.faq-q .n { font-family: var(--mono); font-size: 12px; color: var(--mute); }
.faq-q .q {
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25; letter-spacing: -0.005em;
  font-weight: var(--h-weight, 400);
}
.faq-q .toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-soft);
  transition: all .2s;
}
.faq-item.open .faq-q .toggle { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq-a {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 24px;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 20px; }
.faq-a .a-body { color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 56ch; }

/* Principles ribbon ------------------------------------------------- */
.principles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.principle {
  background: var(--bg);
  padding: 40px 28px;
  display: grid; gap: 12px;
  align-content: start;
  min-height: 220px;
}
.principle .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  margin-bottom: 8px;
}
.principle h4 {
  font-family: var(--serif); font-size: 22px; margin: 0;
  font-weight: var(--h-weight, 400);
}
.principle p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* CTA panel --------------------------------------------------------- */
.cta-panel {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}
.cta-panel h2 {
  font-family: var(--sans);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1; letter-spacing: -0.015em;
  margin: 0;
  font-weight: 600;
}
.cta-panel h2 em { color: inherit; font-style: normal; }
.cta-panel .info { display: grid; gap: 16px; }
.cta-panel .info-row {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 16px; padding: 12px 0;
  border-top: 1px solid var(--hair);
}
.cta-panel .info-row dt {
  font-family: var(--mono); font-size: 11px; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cta-panel .info-row dd { margin: 0; font-size: 14px; color: var(--ink); }
.cta-panel .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid, .svc-hero-grid, .about-grid, .cta-panel, .footer-top { grid-template-columns: 1fr; }
  .problem-grid, .situations, .principles, .vision-foot, .stat-row { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-step p { grid-column: 2; }
  .hero-headline .stack:nth-child(2),
  .hero-headline .stack:nth-child(3) { padding-left: 0; }
}
@media (max-width: 600px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-list { display: none; }
  .problem-grid, .situations, .principles, .vision-foot, .stat-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* Form ------------------------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hair);
  border-radius: 4px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
  transition: border-color .15s ease, background .15s ease;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--bg);
}
input::placeholder, textarea::placeholder { color: var(--mute); }

.chip {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--paper);
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s ease;
  text-transform: capitalize;
}
.chip:hover { border-color: var(--ink-soft); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip input { display: none; }

/* Smooth route fade ------------------------------------------------- */
.route-frame { animation: fadeUp .4s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Contact Form Redesign ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: clamp(32px, 5vw, 56px);
}
.contact-card.dark {
  background: var(--ink);
  color: #f4ece0;
  border-color: var(--ink);
}
.contact-card h3 { color: inherit; margin-bottom: 24px; font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: var(--h-weight, 400); letter-spacing: -0.01em; }
.contact-list { display: grid; gap: 0; margin-top: 8px; }
.contact-row {
  display: flex; gap: 16px; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-row:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-row .ic {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(216,181,138,.35); color: #d8b58a;
  display: grid; place-items: center; flex: none;
}
.contact-row .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #8a8278; }
.contact-card.dark .contact-row .lbl { color: #a89a84; }
.contact-row .val { font-size: 1rem; margin-top: 2px; font-weight: 500; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--mute); text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--hair); border-radius: 4px;
  font: inherit; background: var(--bg); color: var(--ink);
  transition: border .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--primary); background: var(--paper);
}
.field.invalid input, .field.invalid textarea { border-color: #c0623d; background: #fbeee8; }
.field .err { font-size: 0.8rem; color: #c0623d; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); margin: 6px 0 22px; cursor: pointer; }
.consent input { margin-top: 3px; accent-color: var(--primary); }

/* ================================================================
   HOME PAGE — VORSLAG 1 EXACT CSS (no prefix, direct copy)
   Scoped to avoid breaking existing Vorslag 2 pages where possible
   ================================================================ */

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Eyebrow — Vorslag 1 style (overrides for home context) */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Container — Vorslag 1 fixed padding */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 700px) { .container { padding: 0 20px; } }

/* Vorslag 1 Typography — h1/h2/h3 used in home sections */
.v1-h1 { font-family: var(--sans); font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.05; color: var(--ink); margin: 0; }
.v1-h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem);   font-weight: 400; letter-spacing: -0.01em; line-height: 1.1;  color: var(--ink); margin: 0; }
.v1-h3 { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1;  color: var(--ink); margin: 0; }
.term-circle {
  display: inline-block;
  padding: 6px 22px;
  border: 3px solid var(--primary);
  border-radius: 999px;
}
.v1-h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; line-height: 1.2; color: var(--ink); margin: 0; }

/* ---------- hero ---------- */
.v1-hero {
  position: relative;
  padding: 64px 0 112px;
  overflow: hidden;
}
.v1-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .v1-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .v1-hero { padding: 40px 0 72px; }
}
.v1-hero-copy h1 { margin-top: 24px; line-height: 1.05; }
.v1-hero-copy h1 .v1-em { font-style: normal; color: inherit; }
.v1-hero-copy h1 .v1-sep { display: inline-block; width: 0.45ch; }
.v1-hero-lede {
  margin-top: 24px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 52ch;
}
.v1-hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.v1-hero-meta {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v1-hero-meta .stat .n {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
}
.v1-hero-meta .stat .l {
  font-size: 0.82rem;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.v1-hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
}
.v1-hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
}
.v1-hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,.18), transparent 40%);
  pointer-events: none;
}
.v1-hero-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.v1-hero-badge .ic {
  width: 42px; height: 42px;
  background: var(--primary-soft); color: var(--primary-deep);
  border-radius: 50%; display: grid; place-items: center; flex: none;
}
.v1-hero-badge .t { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.v1-hero-badge .s { font-size: 0.8rem; color: var(--ink-2); margin-top: 2px; }
.v1-hero-deco {
  position: absolute; top: 76px; right: 4%;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--ink-3); letter-spacing: 0.02em;
}
@media (max-width: 980px) { .v1-hero-deco { display: none; } }

/* ---------- buttons for home (Vorslag 1 style) ---------- */
.v1-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent;
  transition: all .2s ease; cursor: pointer;
  background: transparent; color: inherit;
  font-family: var(--sans);
}
.v1-btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.v1-btn-primary:hover { background: var(--primary-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.v1-btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.v1-btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.v1-btn .arrow { transition: transform .25s ease; }
.v1-btn:hover .arrow { transform: translateX(4px); }

/* ---------- generic sections ---------- */
.v1-section { padding: 100px 0; position: relative; }
.v1-section.alt { background: var(--bg-2); }
.v1-section.dark { background: var(--primary-deep); color: #f4ece0; }
.v1-section.dark h2, .v1-section.dark h3 { color: #fff; }
.v1-section.dark .eyebrow { color: #d8b58a; }
.v1-section.dark .eyebrow .dot { background: #d8b58a; }

.v1-section-head { max-width: 720px; margin-bottom: 56px; }
.v1-section-head h2 { margin-top: 14px; }
.v1-section-head p { margin-top: 18px; color: var(--ink-2); font-size: 1.05rem; }
.v1-section.dark .v1-section-head p { color: #d8cfbe; }

/* ---------- about ---------- */
.v1-about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 72px; align-items: center;
}
@media (max-width: 980px) { .v1-about-grid { grid-template-columns: 1fr; gap: 48px; } }
.v1-about-portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-2);
}
.v1-about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.v1-about-portrait .frame {
  position: absolute; inset: -18px;
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  pointer-events: none; transform: translate(20px, 20px);
}
.v1-about-quote {
  margin-top: 32px; padding-left: 24px;
  border-left: 2px solid var(--primary);
  font-family: var(--serif); font-size: 1.5rem;
  font-style: italic; line-height: 1.35; color: var(--ink);
}
.v1-about-quote cite {
  display: block; margin-top: 14px;
  font-family: var(--sans); font-style: normal;
  font-size: 0.85rem; color: var(--ink-3); letter-spacing: 0.04em;
}
.v1-cred-list {
  margin-top: 32px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 18px 32px;
}
.v1-cred { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--ink-2); }
.v1-cred .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-deep);
  display: grid; place-items: center; flex: none; margin-top: 1px;
}
@media (max-width: 600px) { .v1-cred-list { grid-template-columns: 1fr; } }

/* ---------- understand ---------- */
.v1-understand {
  background:
    radial-gradient(circle at 12% 10%, rgba(28,110,131,.05), transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(184,131,90,.07), transparent 55%),
    var(--bg);
}
.v1-understand-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 80px; align-items: start;
}
@media (max-width: 980px) { .v1-understand-grid { grid-template-columns: 1fr; gap: 48px; } }
.v1-understand-copy { position: sticky; top: 110px; }
@media (max-width: 980px) { .v1-understand-copy { position: static; } }
.v1-understand-lede {
  margin-top: 22px; font-family: var(--serif);
  font-size: 1.45rem; font-style: italic; line-height: 1.4;
  color: var(--ink); max-width: 30ch;
}
.v1-understand-body { display: grid; gap: 28px; }
.v1-understand-block {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 36px; box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.v1-understand-block:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.v1-understand-num {
  position: absolute; left: 32px; top: 30px;
  font-family: var(--serif); font-size: 2.2rem; font-weight: 400;
  color: var(--primary); line-height: 1; font-feature-settings: "tnum";
}
.v1-understand-block p { font-size: 1.02rem; line-height: 1.65; color: var(--ink-2); margin: 0; }
.v1-understand-block p em { font-style: italic; color: var(--primary-deep); font-weight: 500; }
.v1-understand-closing {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 28px 32px; border-radius: var(--radius-lg);
  background: var(--primary-deep); color: #f4ece0; box-shadow: var(--shadow-md);
}
.v1-understand-closing svg { color: #d8b58a; flex: none; margin-top: 3px; }
.v1-understand-closing p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.45; color: #f4ece0; margin: 0; }
@media (max-width: 600px) {
  .v1-understand-block { padding: 80px 24px 24px; }
  .v1-understand-num { top: 24px; left: 24px; }
}

/* ---------- services ---------- */
.v1-svc-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 48px;
  box-shadow: none;
  width: 100%;
}
@media (max-width: 768px) {
  .v1-svc-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .v1-svc-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.v1-svc-tab {
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  border: 2px solid var(--hair);
  background: var(--paper);
  color: var(--ink-soft);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.v1-svc-tab:nth-child(1) { --tab-color: #1c6e83; }
.v1-svc-tab:nth-child(2) { --tab-color: #c2593f; }
.v1-svc-tab:nth-child(3) { --tab-color: #4a6b58; }
.v1-svc-tab:nth-child(4) { --tab-color: #8b7355; }

.v1-svc-tab:hover {
  border-color: var(--tab-color);
  color: var(--tab-color);
  background: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.v1-svc-tab.active {
  background: var(--tab-color);
  border-color: var(--tab-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.v1-svc-tab .n { font-size: 0.72rem; opacity: 0.7; font-feature-settings: "tnum"; }
.v1-svc-tab.active .n { opacity: 0.9; }
.v1-svc-panel {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-md); min-height: 520px;
}
@media (max-width: 900px) { .v1-svc-panel { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }
.v1-svc-panel-img {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius-md);
  overflow: hidden; background: var(--bg-2);
}
.v1-svc-panel-img img { width: 100%; height: 100%; object-fit: cover; }
.v1-svc-panel-img .v1-svc-tag {
  position: absolute; top: 16px; left: 16px; padding: 6px 12px;
  background: rgba(255,255,255,.92); border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--primary-deep);
}
.v1-svc-panel-body h3 { margin: 0 0 16px; }
.v1-svc-panel-body p { color: var(--ink-2); font-size: 1.02rem; margin: 0; }
.v1-svc-bullets { margin: 22px 0 28px; display: grid; gap: 10px; padding: 0; }
.v1-svc-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  list-style: none; font-size: 0.95rem; color: var(--ink-2);
}
.v1-svc-bullets li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary); margin-top: 9px; flex: none;
}
.v1-svc-cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 8px; }
.v1-svc-price { font-size: 0.88rem; color: var(--ink-3); }

/* ---------- values ---------- */
.v1-values {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.v1-values .v { background: var(--surface); padding: 32px 28px; transition: background .25s ease; }
.v1-values .v:hover { background: var(--bg); }
.v1-values .v .num { font-family: var(--serif); font-size: 0.95rem; color: var(--ink-3); letter-spacing: 0.1em; }
.v1-values .v h3 { font-size: 1.3rem; margin: 14px 0 12px; }
.v1-values .v p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.55; margin: 0; }
@media (max-width: 1100px) { .v1-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v1-values { grid-template-columns: 1fr; } }

/* ---------- process ---------- */
.v1-process { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .v1-process { grid-template-columns: 1fr; } }
.v1-chip {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 8px 16px; border-radius: 999px;
  background: rgba(216,181,138,.15); color: #d8b58a;
  font-size: 0.85rem; font-family: var(--sans);
}
.v1-process-steps { position: relative; padding-left: 36px; }
.v1-process-steps::before {
  content: ""; position: absolute; left: 13px; top: 8px; bottom: 8px;
  width: 1px; background: rgba(216,181,138,.35);
}
.v1-process-step { position: relative; padding: 16px 0 28px; }
.v1-process-step::before {
  content: ""; position: absolute; left: -36px; top: 22px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--primary-deep); border: 1px solid #d8b58a;
}
.v1-process-step .num {
  position: absolute; left: -32px; top: 24px;
  width: 19px; height: 19px; text-align: center;
  font-family: var(--serif); font-size: 0.85rem; color: #d8b58a; font-weight: 500;
}
.v1-process-step h4 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin: 0 0 8px; color: #fff; }
.v1-process-step p { color: #d8cfbe; font-size: 0.95rem; max-width: 50ch; margin: 0; }

/* ---------- FAQ ---------- */
.v1-faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.v1-faq-item { border-bottom: 1px solid var(--line); transition: background .2s ease; }
.v1-faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 28px 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--ink); cursor: pointer; transition: color .2s ease;
}
.v1-faq-q:hover { color: var(--primary); }
.v1-faq-q .ic {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-2); display: grid; place-items: center;
  transition: all .25s ease; margin-top: 2px;
}
.v1-faq-item.open .v1-faq-q .ic {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: rotate(45deg);
}
.v1-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-2); font-size: 1rem; line-height: 1.65;
}
.v1-faq-item.open .v1-faq-a { max-height: 400px; padding-bottom: 28px; }
.v1-faq-a p + p { margin-top: 12px; }


/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Eyebrow (shared util) */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex; align-items: center; gap: 10px;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); flex: none;
}

/* Container */
.container {
  width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Sections ──────────────────────────────────────── */
.v1-section { padding: 100px 0; position: relative; }
.v1-section-alt { background: var(--bg-alt); }
.v1-section-dark { background: #14181a; color: #f4ece0; }

.v1-section-head { max-width: 720px; margin-bottom: 56px; }
.v1-section-head h2 { margin-top: 14px; }
.v1-section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 1.05rem; }

/* ── Hero ──────────────────────────────────────────── */
.v1-hero { position: relative; padding: 64px 0 112px; overflow: hidden; }
.v1-hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
@media (max-width: 980px) {
  .v1-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .v1-hero { padding: 40px 0 72px; }
}
.v1-hero-copy h1 { margin-top: 24px; line-height: 1.05; }
.v1-em { font-style: normal; color: inherit; }
.v1-sep { display: inline-block; width: 0.45ch; }
.v1-hero-lede {
  margin-top: 24px; font-size: 1.1rem; line-height: 1.65;
  color: var(--ink-soft); max-width: 52ch;
}
.v1-hero-cta {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.v1-hero-meta {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hair);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.v1-stat .n {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 400;
  color: var(--primary); line-height: 1;
}
.v1-stat .l { font-size: 0.82rem; color: var(--mute); margin-top: 6px; letter-spacing: 0.04em; }

.v1-hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 24px 80px -24px rgba(15,32,31,0.22);
}
.v1-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.v1-hero-visual::after {
  content: "";  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,.18), transparent 40%);
  pointer-events: none;
}
.v1-hero-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.v1-hero-badge .ic {
  width: 42px; height: 42px; background: var(--primary-soft);
  color: var(--primary-deep); border-radius: 50%;
  display: grid; place-items: center; flex: none;
}
.v1-hero-badge .t { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.v1-hero-badge .s { font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.v1-hero-deco {
  position: absolute; top: 76px; right: 4%;
  font-family: var(--serif); font-style: italic; font-size: 0.95rem;
  color: var(--mute); letter-spacing: 0.02em;
}
@media (max-width: 980px) { .v1-hero-deco { display: none; } }

/* ── About ─────────────────────────────────────────── */
.v1-about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 72px; align-items: center;
}
@media (max-width: 980px) { .v1-about-grid { grid-template-columns: 1fr; gap: 48px; } }
.v1-about-portrait {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--bg-alt);
}
.v1-about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.v1-frame {
  position: absolute; inset: -18px;
  border: 1px solid var(--hair); border-radius: 16px;
  pointer-events: none; transform: translate(20px, 20px);
}
.v1-about-quote {
  margin-top: 32px; padding-left: 24px;
  border-left: 2px solid var(--primary);
  font-family: var(--serif); font-size: 1.5rem;
  font-style: italic; line-height: 1.35; color: var(--ink);
}
.v1-about-quote cite {
  display: block; margin-top: 14px;
  font-family: var(--sans); font-style: normal;
  font-size: 0.85rem; color: var(--mute); letter-spacing: 0.04em;
}
.v1-cred-list {
  margin-top: 32px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 18px 32px;
}
.v1-cred {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--ink-soft);
}
.v1-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-deep);
  display: grid; place-items: center; flex: none; margin-top: 1px;
}
@media (max-width: 600px) { .v1-cred-list { grid-template-columns: 1fr; } }

/* ── Understand ────────────────────────────────────── */
.v1-understand {
  background:
    radial-gradient(circle at 12% 10%, rgba(28,110,131,.05), transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(184,131,90,.07), transparent 55%),
    var(--bg);
}
.v1-understand-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 80px; align-items: start;
}
@media (max-width: 980px) { .v1-understand-grid { grid-template-columns: 1fr; gap: 48px; } }
.v1-understand-copy { position: sticky; top: 110px; }
@media (max-width: 980px) { .v1-understand-copy { position: static; } }
.v1-understand-lede {
  margin-top: 22px; font-family: var(--serif);
  font-size: 1.45rem; font-style: italic; line-height: 1.4;
  color: var(--ink); max-width: 30ch;
}
.v1-understand-body { display: grid; gap: 28px; }
.v1-understand-block {
  position: relative; background: var(--paper);
  border: 1px solid var(--hair); border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  transition: box-shadow .25s ease, transform .25s ease;
}
.v1-understand-block:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.v1-understand-num {
  position: absolute; left: 32px; top: 30px;
  font-family: var(--serif); font-size: 2.2rem; font-weight: 400;
  color: var(--primary); line-height: 1;
}
.v1-understand-block p { font-size: 1.02rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.v1-understand-block p em { font-style: italic; color: var(--primary-deep); font-weight: 500; }
.v1-understand-closing {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 28px 32px; border-radius: var(--radius-lg);
  background: var(--primary-deep); color: #f4ece0;
  box-shadow: var(--shadow-md);
}
.v1-understand-closing svg { color: #d8b58a; flex: none; margin-top: 3px; }
.v1-understand-closing p {
  font-family: var(--serif); font-size: 1.2rem;
  font-style: italic; line-height: 1.45; color: #f4ece0; margin: 0;
}
@media (max-width: 600px) {
  .v1-understand-block { padding: 80px 24px 24px; }
  .v1-understand-num { top: 24px; left: 24px; }
}

/* ── Services ──────────────────────────────────────── */
/* Duplicate tabs rule cleaned - inherited from centralized declaration */
.v1-svc-panel {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
  background: var(--paper); border: 1px solid var(--hair);
  border-radius: 20px; padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06); min-height: 520px;
}
@media (max-width: 900px) { .v1-svc-panel { grid-template-columns: 1fr; padding: 32px; gap: 32px; } }
.v1-svc-panel-img {
  position: relative; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; background: var(--bg-alt);
}
.v1-svc-panel-img img { width: 100%; height: 100%; object-fit: cover; }
.v1-tag {
  position: absolute; top: 16px; left: 16px; padding: 6px 12px;
  background: rgba(255,255,255,.92); border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--primary-deep);
}
.v1-svc-panel-body h3 { margin: 0 0 16px; }
.v1-svc-panel-body p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.v1-svc-bullets { margin: 22px 0 28px; display: grid; gap: 10px; padding: 0; }
.v1-svc-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  list-style: none; font-size: 0.95rem; color: var(--ink-soft);
}
.v1-svc-bullets li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary); margin-top: 9px; flex: none;
}
.v1-svc-cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 8px; }
.v1-price { font-size: 0.88rem; color: var(--mute); }

/* ── Values ────────────────────────────────────────── */
.v1-values {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--hair);
  border: 1px solid var(--hair); border-radius: 16px; overflow: hidden;
}
.v1-v { background: var(--paper); padding: 32px 28px; transition: background .25s ease; }
.v1-v:hover { background: var(--bg-alt); }
.v1-num { font-family: var(--serif); font-size: 0.95rem; color: var(--mute); letter-spacing: 0.1em; }
.v1-v h3 { font-size: 1.3rem; margin: 14px 0 12px; }
.v1-v p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 1100px) { .v1-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v1-values { grid-template-columns: 1fr; } }

/* ── Process ───────────────────────────────────────── */
.v1-process {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 900px) { .v1-process { grid-template-columns: 1fr; } }
.v1-chip {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px; padding: 10px 18px; border-radius: 999px;
  background: rgba(216,181,138,.15); color: #d8b58a;
  font-size: 0.85rem; font-family: var(--sans);
}
.v1-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.v1-process-steps {
  position: relative; padding-left: 36px;
}
.v1-process-steps::before {
  content: ""; position: absolute; left: 13px; top: 8px; bottom: 8px;
  width: 1px; background: rgba(216,181,138,.35);
}
.v1-process-step { position: relative; padding: 16px 0 28px; }
.v1-process-step::before {
  content: ""; position: absolute; left: -36px; top: 22px;
  width: 27px; height: 27px; border-radius: 50%;
  background: var(--primary-deep); border: 1px solid #d8b58a;
}
.v1-process-step .num {
  position: absolute; left: -32px; top: 24px;
  width: 19px; height: 19px; text-align: center;
  font-family: var(--serif); font-size: 0.85rem;
  color: #d8b58a; font-weight: 500;
}
.v1-process-step h4 {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  margin: 0 0 8px; color: #fff;
}
.v1-process-step p { color: #d8cfbe; font-size: 0.95rem; max-width: 50ch; margin: 0; }

/* ── FAQ ───────────────────────────────────────────── */
.v1-faq-list { display: grid; gap: 0; border-top: 1px solid var(--hair); }
.v1-faq-item { border-bottom: 1px solid var(--hair); }
.v1-faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 28px 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 24px;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--ink); cursor: pointer; transition: color .2s ease; font: inherit;
  font-family: var(--serif); font-size: 1.35rem;
}
.v1-faq-q:hover { color: var(--primary); }
.v1-faq-q .ic {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--hair); display: grid; place-items: center;
  transition: all .25s ease; margin-top: 2px;
}
.v1-faq-item.open .v1-faq-q .ic {
  background: var(--primary); border-color: var(--primary);
  color: #fff; transform: rotate(45deg);
}
.v1-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-soft); font-size: 1rem; line-height: 1.65;
}
.v1-faq-item.open .v1-faq-a { max-height: 400px; padding-bottom: 28px; }

/* ── Cookie Consent Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 24px;
  max-width: 460px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieFadeIn 0.4s ease-out;
}

@keyframes cookieFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}

.cookie-banner-text {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--primary-deep);
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.cookie-banner-actions .btn {
  font-size: 0.82rem;
  padding: 10px 18px;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 20px;
    gap: 14px;
  }
  .cookie-banner-actions {
    flex-direction: column-reverse;
    width: 100%;
  }
  .cookie-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


