/* Nova Mercatus — gedeelde stylesheet (kleurenpalet: zie ../assets/wolf-mark.png / docs/uploads/nova-mercatus-kleurenpalet.md in de handoff) */

:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --dark-gray: #2C2C2A;
  --mid-gray: #5F5E5A;

  --gold-dark: #7A5C1F;
  --gold: #B8860B;
  --gold-mid: #D4A930;
  --gold-light: #E8C96A;
  --gold-pale: #F2E0A8;

  --cream: #FAF3E0;
  --white-warm: #F5F0E6;
  --surface-light: #F3E9D2;

  --copper: #C9713D;
  --ruby: #8B1A1A;
  --teal: #1D6E5C;

  --font-display: "Bricolage Grotesque", Helvetica, sans-serif;
  --font-body: "Karla", Helvetica, sans-serif;

  --container-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--black); }

a { color: var(--gold-mid); text-decoration: none; }
a:hover { color: var(--gold-light); }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* Section backgrounds */
.section--dark { background: var(--black); color: var(--cream); }
.section--light { background: var(--cream); color: var(--black); }
.section--charcoal { background: var(--charcoal); color: var(--cream); }

.section--light a { color: var(--gold-dark); }
.section--light a:hover { color: var(--gold); }

/* Header / nav */
.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.01em;
  color: inherit;
}

.brand img { height: 32px; width: auto; }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 28px) 10px;
  align-items: baseline;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section--dark .main-nav a:not(.nav-lang):not(.nav-cta) { color: rgba(250, 243, 224, 0.62); white-space: nowrap; }
.section--light .main-nav a:not(.nav-lang):not(.nav-cta) { color: rgba(10, 10, 10, 0.66); white-space: nowrap; }

.nav-lang {
  border-radius: 100px;
  padding: 5px 11px;
  border: 1px solid;
}
.section--dark .nav-lang { color: var(--cream); border-color: var(--dark-gray); }
.section--light .nav-lang { color: var(--black); border-color: rgba(10, 10, 10, 0.16); }
.nav-lang:hover { border-color: var(--gold); }

.nav-cta {
  border-bottom: 1px solid var(--gold-mid);
  padding-bottom: 2px;
  color: var(--gold-mid);
}

/* Hero */
.hero { padding: 160px 0 140px; max-width: 900px; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin: 0 0 48px;
}

.section--light .eyebrow { color: var(--gold-dark); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  text-wrap: balance;
}

.hero h1 em { font-style: italic; color: var(--gold-mid); }

.hero p {
  font-size: 21px;
  line-height: 1.6;
  color: rgba(250, 243, 224, 0.75);
  margin: 0 0 20px;
  max-width: 620px;
  text-wrap: pretty;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 28px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  padding: 16px 30px;
  cursor: pointer;
  border: none;
}

.btn--primary { background: var(--gold); color: var(--black); }
.btn--primary:hover { background: var(--gold-mid); color: var(--black); }

.btn--outline {
  padding: 16px 24px;
  color: var(--cream);
  border: 1px solid var(--dark-gray);
  background: transparent;
}
.btn--outline:hover { border-color: var(--gold); color: var(--cream); }

/* Placeholder hero / feature image */
.placeholder-figure {
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--charcoal);
}

.placeholder-figure--hero { margin-bottom: 140px; aspect-ratio: 16 / 7; min-height: 280px; border-radius: 8px; }
.placeholder-figure--wide { aspect-ratio: 24 / 7; min-height: 220px; background: var(--surface-light); grid-column: 1 / -1; }

.placeholder-figure svg { display: block; position: absolute; inset: 0; }

.placeholder-figure figcaption {
  position: absolute;
  left: 32px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.placeholder-figure--wide figcaption { left: 44px; bottom: 32px; }

.placeholder-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 243, 224, 0.45);
}

.placeholder-figure--wide .placeholder-label { color: rgba(10, 10, 10, 0.45); }

.placeholder-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(250, 243, 224, 0.62);
  max-width: 520px;
}

.placeholder-figure--wide .placeholder-desc { color: rgba(10, 10, 10, 0.66); max-width: 560px; }

.divider { height: 1px; background: var(--dark-gray); }

/* Two-column intro sections (number + heading / body) */
.intro-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 6vw, 112px);
  padding: 140px 0;
}

.intro-section .step-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}

.intro-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 20px 0 0;
}

.intro-section .body-copy { display: flex; flex-direction: column; gap: 32px; max-width: 640px; }
.intro-section .body-copy p { font-size: 17px; line-height: 1.7; color: rgba(10, 10, 10, 0.66); margin: 0; }
.intro-section .body-copy p.lede { font-size: 20px; line-height: 1.65; color: var(--black); }
.intro-section .body-copy strong { font-weight: 500; }

.intro-section--lead-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 6vw, 112px);
  margin-bottom: 80px;
}

.intro-section--lead-body > p {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
  margin: 0;
  max-width: 560px;
  align-self: end;
}

/* Approach cards */
.approach-section { padding: 40px 0 140px; }

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 1px;
  background: rgba(10, 10, 10, 0.14);
  border: 1px solid rgba(10, 10, 10, 0.14);
}

.approach-card {
  background: var(--surface-light);
  padding: 56px 44px 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-card .kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin: 0;
}

.approach-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
}

.approach-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.66);
  margin: 0;
}

/* Quote section */
.quote-section { padding: 144px 0; }

.quote-section blockquote {
  margin: 0 0 112px;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
  font-style: italic;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.quote-section .step-number { color: var(--gold-light); }
.quote-section h2 { color: var(--cream); }
.quote-section .body-copy p { color: rgba(250, 243, 224, 0.6); }
.quote-section .body-copy p.lede { color: var(--cream); }

/* Funnel */
.funnel-section { padding: 140px 0; }

.funnel-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 12px;
}

.funnel-grid li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  min-height: 184px;
  padding: 26px 24px 24px;
  background: var(--surface-light);
  border-radius: 10px;
  transition: background 180ms ease, color 180ms ease;
}

.funnel-grid li:hover { background: var(--gold-mid); color: var(--black); }

.funnel-grid .funnel-index {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(10, 10, 10, 0.35);
}

.funnel-grid .funnel-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.house-section { padding: 0 0 140px; }
.house-section .body-copy .callout { font-family: var(--font-display); font-size: 32px; line-height: 1.2; margin: 8px 0 0; color: var(--gold-dark); }

/* Who it's for */
.who-section { padding: 0 0 140px; }
.who-section .who-intro { margin-bottom: 72px; max-width: 700px; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 20px;
  align-items: stretch;
}

.who-card {
  border-radius: 12px;
  padding: 44px 40px 40px;
}

.who-card--fit { background: var(--surface-light); border: 1px solid rgba(184, 134, 11, 0.55); }
.who-card--not-fit { border: 1px solid rgba(10, 10, 10, 0.14); background: transparent; }

.who-card .card-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.who-card--fit .card-label { color: var(--gold-dark); }
.who-card--not-fit .card-label { color: rgba(10, 10, 10, 0.5); }

.who-card ul { list-style: none; margin: 0; padding: 0; }

.who-card li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-top: 1px solid rgba(10, 10, 10, 0.14);
}

.who-card--fit .marker {
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

.who-card--not-fit .marker {
  flex: none;
  width: 9px;
  height: 1px;
  margin-top: 13px;
  background: rgba(10, 10, 10, 0.5);
}

.who-card--fit .item-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--black);
  text-wrap: pretty;
}

.who-card--not-fit .item-label { font-size: 19px; line-height: 1.35; color: rgba(10, 10, 10, 0.66); text-wrap: pretty; }

.who-section .closing-line {
  margin: 56px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--black);
  text-wrap: balance;
}

/* FAQ */
.faq-section {
  padding: 0 0 140px;
  border-top: 1px solid rgba(10, 10, 10, 0.14);
  padding-top: 120px;
}

.faq-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 6vw, 112px);
}

.faq-list { display: flex; flex-direction: column; gap: 56px; max-width: 660px; }
.faq-item h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; line-height: 1.4; }
.faq-item p { font-size: 16px; line-height: 1.7; color: rgba(10, 10, 10, 0.66); margin: 0; }

/* Closing CTA */
.cta-section { padding: 160px 0; }
.cta-section .eyebrow { color: var(--gold-light); margin: 0 0 32px; }

.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  max-width: 900px;
  text-wrap: balance;
}

.cta-section p {
  font-size: 20px;
  line-height: 1.65;
  color: rgba(250, 243, 224, 0.7);
  margin: 0 0 44px;
  max-width: 620px;
}

.cta-section .btn--primary { padding: 18px 34px; font-size: 17px; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(250, 243, 224, 0.6); padding: 104px 0 40px; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.footer-columns .brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 16px;
}

.footer-columns .brand-desc { font-size: 16px; line-height: 1.6; color: rgba(250, 243, 224, 0.6); margin: 0; max-width: 280px; }

.footer-menu { justify-self: end; text-align: right; }

.footer-menu .menu-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin: 0 0 24px;
}

.footer-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.footer-menu a { font-size: 16px; line-height: 1.5; color: var(--cream); }
.footer-menu a:hover { color: var(--gold-light); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 88px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 243, 224, 0.14);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}

/* Contact page */
.contact-hero { padding: 120px 0 100px; max-width: 900px; }
.contact-hero .eyebrow { color: var(--gold-dark); }

.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  text-wrap: balance;
}

.contact-hero p {
  font-size: 21px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
  margin: 0;
  max-width: 620px;
  text-wrap: pretty;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  padding-bottom: 140px;
}

.contact-form-section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.contact-form-section > p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.66);
  margin: 0 0 40px;
}

.contact-success {
  background: var(--surface-light);
  border: 1px solid rgba(184, 134, 11, 0.55);
  border-radius: 12px;
  padding: 44px 40px;
}

.contact-success p:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: var(--black);
  margin: 0 0 12px;
}

.contact-success p:last-child { font-size: 17px; line-height: 1.6; color: rgba(10, 10, 10, 0.7); margin: 0; }

.contact-form { display: flex; flex-direction: column; gap: 26px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 26px;
}

.contact-form label { display: flex; flex-direction: column; gap: 10px; }

.contact-form .field-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.66);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="url"],
.contact-form select {
  height: 52px;
  padding: 0 16px;
  font-size: 17px;
  color: var(--black);
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 8px;
  font-family: var(--font-body);
}

.contact-form textarea {
  padding: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--black);
  background: #FFFFFF;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 8px;
  resize: vertical;
  font-family: var(--font-body);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(10, 10, 10, 0.4); }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 6px; }

.form-note { font-size: 14px; line-height: 1.5; color: rgba(10, 10, 10, 0.66); max-width: 260px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 12px;
  padding: 44px 40px;
}

.info-card--filled { background: #FFFFFF; }

.info-card .card-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin: 0 0 28px;
}

.info-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }

.info-card li { display: flex; flex-direction: column; gap: 4px; padding-bottom: 22px; border-bottom: 1px solid rgba(10, 10, 10, 0.14); }
.info-card li:last-child { padding-bottom: 0; border-bottom: none; }

.info-card .info-label { font-size: 14px; color: rgba(10, 10, 10, 0.66); }
.info-card .info-value { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.info-card address { font-style: normal; font-size: 18px; line-height: 1.5; color: var(--black); }

.info-card ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }

.info-card ol li { display: flex; gap: 18px; align-items: flex-start; border: none; padding: 0; }

.info-card .step-index {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  color: rgba(10, 10, 10, 0.4);
}

.info-card .step-text { font-size: 17px; line-height: 1.55; color: var(--black); }

[hidden] { display: none !important; }
