/* =========================================
   ævurt — opgeschoonde stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f5f1ea;
  --bg-soft: #efe7dc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #1f2b33;
  --ink-soft: #55616a;
  --navy: #243848;
  --navy-deep: #1a2b37;
  --gold: #b9965b;
  --gold-soft: #d8be8c;
  --line: rgba(36, 56, 72, 0.12);
  --line-strong: rgba(185, 150, 91, 0.28);
  --shadow: 0 20px 60px rgba(27, 43, 55, 0.10);
  --shadow-soft: 0 12px 30px rgba(27, 43, 55, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1200px;
  --container: min(var(--max-width), calc(100% - 2rem));
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 150, 91, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(36, 56, 72, 0.08), transparent 25%),
    linear-gradient(180deg, #f7f3ed 0%, #f2ece3 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy-deep);
  line-height: 1.15;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container::after {
  content: "";
  display: table;
  clear: both;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.5));
  backdrop-filter: blur(3px);
}

/* =========================
   HEADER
   ========================= */

.header {
  position: static;
  top: auto;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(245, 241, 234, 0.72);
  border-bottom: 1px solid rgba(36, 56, 72, 0.08);
}

.header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.brand,
.page-logo,
.brand__mark {
  display: none !important;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  margin-left: 0;
}

.nav a {
  position: relative;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  outline: none;
}

.nav a.is-active,
.nav a[aria-current='page'] {
  color: var(--navy-deep);
  background: rgba(185, 150, 91, 0.14);
  box-shadow: inset 0 0 0 1px rgba(185, 150, 91, 0.22);
}

/* =========================
   HOMEPAGE LOGO
   ========================= */

.home-logo {
  padding: 2rem 0 1rem;
}

.home-logo__inner {
  display: flex;
  justify-content: center;
}

.home-logo__mark {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 0;
}

/* =========================
   HERO
   ========================= */

.section--hero {
  padding-top: 72px;
}

.hero {
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58)),
    linear-gradient(135deg, rgba(185, 150, 91, 0.08), rgba(36, 56, 72, 0.06));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__grid::before,
.hero__grid::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(185, 150, 91, 0.28);
  pointer-events: none;
}

.hero__grid::before {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
}

.hero__grid::after {
  right: 16px;
  bottom: 16px;
  border-left: 0;
  border-top: 0;
}

.hero__grid--tight {
  grid-template-columns: 1.05fr 0.95fr;
}

.hero__grid--contact {
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.hero__text {
  position: relative;
  z-index: 1;
}

.hero__media {
  position: relative;
  z-index: 1;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero__media--home {
  justify-self: end;
  width: min(100%, 430px);
}

.hero__media--contact {
  width: min(100%, 470px);
  margin-inline: auto;
}

.hero__media--contact img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.hero__media--premium::before {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(185, 150, 91, 0.25);
  border-radius: calc(var(--radius) + 10px);
  z-index: -1;
}

.hero-kicker,
.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.page-title,
.section-title,
.cta h2,
.hero-title,
.card h3,
.card-title,
.audience-card h3,
.coaching-card__body h3,
.research-card__title,
.value-panel__title,
.case-steps h4,
.block h3,
.expertise-card h3,
.micro-panel h3,
.service-band__title,
.review-by,
.footer__col h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.02em;
}

.page-title {
  font-size: 48px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: 36px;
  margin-bottom: 0.8rem;
}

.lead {
  max-width: 64ch;
  font-size: 17px;
  color: var(--ink-soft);
}

.lead--hero {
  font-size: 18px;
}

.page--home .lead--hero {
  max-width: 60ch;
  line-height: 1.85;
}

.hero-accent {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

.section-lead {
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 2rem;
}

.gold-underline {
  position: relative;
  padding-bottom: 0.85rem;
}

.gold-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 84px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 999px;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.9rem;
}

.trust-line::before {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.signature {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  color: var(--navy);
}

.role-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
}

.role-symbol {
  color: rgba(185, 150, 91, 0.7);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn--ghost {
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  border-color: rgba(185, 150, 91, 0.28);
  box-shadow: 0 10px 24px rgba(36, 56, 72, 0.06);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #fff;
  border-color: rgba(185, 150, 91, 0.5);
}

.btn--submit,
.cta a,
.page--comingsoon .btn--ink {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 14px 30px rgba(26, 43, 55, 0.18);
}

.btn--submit:hover,
.btn--submit:focus-visible,
.cta a:hover,
.cta a:focus-visible,
.page--comingsoon .btn--ink:hover,
.page--comingsoon .btn--ink:focus-visible {
  box-shadow: 0 18px 34px rgba(26, 43, 55, 0.24);
}

/* =========================
   LAYOUTS
   ========================= */

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  margin-top: 2rem;
}

.service-row + .service-row {
  margin-top: 2.5rem;
}

.service-row--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.cards--2col,
.two-col--premium,
.audience-grid,
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.cards--3col,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.two-col--premium {
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

/* =========================
   SURFACES
   ========================= */

.service-band,
.card,
.review-card,
.contact-card,
.contact-intro-block,
.audience-card,
.research-card,
.block,
.micro-panel,
.case-feature,
.expertise-card,
.value-panel,
.coaching-card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-band,
.card,
.review-card,
.contact-card,
.contact-intro-block,
.audience-card,
.research-card,
.block,
.micro-panel,
.case-feature,
.expertise-card,
.value-panel {
  padding: 1.7rem;
}

.service-band {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.service-band__title {
  font-size: 32px;
  margin-bottom: 1rem;
}

.service-band__body,
.card p,
.review-text,
.page:not(.page--home) main p,
.page:not(.page--home) main li,
.page:not(.page--home) main .lead,
.page:not(.page--home) main .lead--hero,
.page:not(.page--home) main .section-lead,
.page:not(.page--home) main .card p,
.page:not(.page--home) main .block p,
.page:not(.page--home) main .audience-card p,
.page:not(.page--home) main .coaching-card__body p,
.page:not(.page--home) main .research-card p,
.page:not(.page--home) main .case-steps p,
.page:not(.page--home) main .expertise-list,
.page:not(.page--home) main .value-item {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.service-band__body p:last-child {
  margin-bottom: 0;
}

.service-band__action {
  margin-top: 1.5rem;
}

.service-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(26,43,55,0.14) 100%);
}

.service-image img,
.coaching-card img {
  width: 100%;
  object-fit: cover;
}

.coaching-card {
  overflow: hidden;
}

.coaching-card img {
  height: 220px;
}

.coaching-card__body {
  padding: 1.35rem 1.45rem 1.55rem;
}

.coaching-card__body h3,
.card h3,
.card-title,
.audience-card h3,
.research-card__title,
.value-panel__title,
.case-steps h4,
.block h3,
.expertise-card h3,
.micro-panel h3 {
  font-size: 29px;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.contact-intro-block {
  max-width: 700px;
  margin: 0;
  padding: 2rem;
}

.contact-card {
  padding: 2rem;
}

.contact-divider,
.footer__divider {
  width: 100%;
  height: 1px;
  margin-top: 1.8rem;
  background: linear-gradient(90deg, transparent, rgba(185, 150, 91, 0.6), transparent);
}

/* =========================
   LISTS / PILLS / TAGS
   ========================= */

.icon {
  font-size: 30px;
  opacity: 0.8;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--gold);
}

.gold-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  gap: 16px;
}

.gold-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  line-height: 1.6;
}

.gold-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
}

.gold-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.pill-row,
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill,
.expertise-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(185, 150, 91, 0.24);
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: all .25s ease;
}

.expertise-tags span:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.expertise-groups {
  display: grid;
  gap: 28px;
  margin-top: 30px;
}

.expertise-group h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--navy);
}

.pill__dot,
.value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  flex: 0 0 auto;
}

.audience-tags,
.value-list,
.case-steps,
.meta-badges,
.expertise-list {
  display: grid;
  gap: 0.85rem;
}

.audience-tags {
  margin-top: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(36, 56, 72, 0.1);
  color: var(--ink-soft);
  text-align: center;
}

.list-clean,
.case-steps,
.expertise-list,
.gold-list {
  margin-left: 0;
}

.list-clean,
.case-steps,
.expertise-list {
  list-style: none;
  padding: 0;
}

.expertise-list li {
  position: relative;
  padding-left: 1.6rem;
}

.expertise-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.case-steps {
  counter-reset: step;
}

.case-steps li {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(36, 56, 72, 0.08);
}

.case-steps li + li {
  margin-top: 1rem;
}

.case-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.2rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #fff;
  font-weight: 700;
}

.value-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.meta-badges {
  margin: 1.2rem 0 1.8rem;
  grid-template-columns: repeat(2, minmax(0, max-content));
}

.meta-badge {
  display: inline-grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(185, 150, 91, 0.26);
  box-shadow: var(--shadow-soft);
}

.meta-badge__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.meta-badge__value {
  color: var(--navy);
  font-weight: 600;
}

.motto-quote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid rgba(185, 150, 91, 0.55);
  color: var(--navy);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23px;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
}

.u-mt-14 {
  margin-top: 1.4rem;
}

.overmij-intro {
  margin-top: 2rem;
}

.mvw-image {
  grid-column: 1 / -1;
  width: min(100%, 520px);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* =========================
   FORM
   ========================= */

.form {
  margin-top: 1.7rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  margin-bottom: 1rem;
}

label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(36, 56, 72, 0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 1rem 1rem;
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: #8b949a;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(185, 150, 91, 0.65);
  box-shadow: 0 0 0 4px rgba(185, 150, 91, 0.12);
  background: #fff;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

/* =========================
   REVIEWS
   ========================= */

.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -0.4rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  color: rgba(185, 150, 91, 0.14);
  line-height: 1;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.review-by {
  margin-bottom: 0.15rem;
  font-size: 20px;
  color: var(--navy-deep);
}

.review-role {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* =========================
   CTA
   ========================= */

.cta {
  width: min(540px, calc(100% - 2rem));
  margin: 0.75rem auto 2.5rem;
  padding: 1rem 1.05rem 1.05rem;
  text-align: center;
  border-radius: 16px;
  color: #f8f5ef;
  background:
    linear-gradient(135deg, rgba(26,43,55,0.96), rgba(36,56,72,0.92)),
    linear-gradient(90deg, rgba(185,150,91,0.10), transparent 68%);
  box-shadow: 0 10px 24px rgba(27, 43, 55, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 190, 140, 0.16);
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 190, 140, 0.15);
}

.cta::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.cta::after {
  right: 8px;
  bottom: 8px;
  border-left: 0;
  border-top: 0;
}

.cta h2,
.cta p,
.cta a {
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.cta p {
  color: rgba(248,245,239,0.78);
  font-size: 15px;
  line-height: 1.55;
  max-width: 40ch;
  margin: 0.2rem auto 0;
}

.cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 36px;
  margin-top: 0.7rem;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 190, 140, 0.22);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 6px 14px rgba(26, 43, 55, 0.10);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  clear: both;
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: rgba(244, 239, 231, 0.84);
  padding: 4rem 0 1.4rem;
  margin-top: 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer__logo {
  height: 70px;
  width: auto;
  display: block;
}

.footer__brand {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__col h3 {
  margin-bottom: 1rem;
  font-size: 25px;
  color: #fff;
}

.footer__col a {
  display: block;
  color: rgba(244, 239, 231, 0.78);
  margin-bottom: 0.7rem;
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--gold-soft);
  outline: none;
}

.footer__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 4px 0 6px;
}

.footer-tagline {
  margin-top: 0;
  color: rgba(244, 239, 231, 0.78);
  font-style: italic;
  letter-spacing: 0.02em;
}

.footer__bottom {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(244, 239, 231, 0.58);
  font-size: 15px;
}

.footer,
.footer p,
.footer a,
.footer li,
.footer .footer-tagline {
  color: rgba(244, 239, 231, 0.78);
}

.footer__col h3 {
  color: #fff;
}

/* =========================
   PAGE-SPECIFIC
   ========================= */

.page--onderzoek .hero__media,
.page--advies .hero__media,
.page--coaching .hero__media,
.page--overmij .hero__media {
  width: min(100%, 420px);
  margin-inline: auto;
}

.page--coaching .hero__media--coaching img,
.page--advies .hero__media--advies img,
.page--onderzoek .hero__media img,
.page--overmij .hero__media--overmij img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page--coaching .hero__grid,
.page--advies .hero__grid,
.page--onderzoek .hero__grid,
.page--overmij .hero__grid {
  align-items: start;
}

.page--coaching .hero__text,
.page--advies .hero__text,
.page--onderzoek .hero__text,
.page--overmij .hero__text {
  align-self: start;
  padding-top: 0;
}

.page--onderzoek .two-col--premium > div:first-child {
  background: #faf8f3;
  padding: 36px 40px;
  border-radius: 10px;
}

.page--onderzoek .two-col--premium .section-title {
  margin-bottom: 12px;
}

.page--onderzoek .two-col--premium .section-lead {
  max-width: 640px;
  margin-bottom: 26px;
}

.page--comingsoon main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.page--comingsoon .section--soft {
  width: 100%;
  background:
    radial-gradient(circle at top left, rgba(185,150,91,0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(36,56,72,0.08), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.20), rgba(255,255,255,0.38));
}

.page--comingsoon .coming-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
    linear-gradient(135deg, rgba(185,150,91,0.06), rgba(36,56,72,0.04));
  border: 1px solid rgba(185,150,91,0.18);
  box-shadow: 0 22px 60px rgba(27,43,55,0.10);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.page--comingsoon .coming-card::before,
.page--comingsoon .coming-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(185,150,91,0.22);
}

.page--comingsoon .coming-card::before {
  top: 18px;
  left: 18px;
  border-right: 0;
  border-bottom: 0;
}

.page--comingsoon .coming-card::after {
  right: 18px;
  bottom: 18px;
  border-left: 0;
  border-top: 0;
}

.page--comingsoon .coming-logo {
  width: 170px;
  height: auto;
  display: block;
  margin: 0 0 1.5rem 0;
}

.page--comingsoon .hero-title {
  font-size: 64px;
  line-height: 1.05;
  color: var(--navy-deep);
  margin-bottom: 16px;
  max-width: 440px;
}

.page--comingsoon .lead--center {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  line-height: 30px;
  color: var(--ink-soft);
}

.page--comingsoon .coming-note {
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.page--comingsoon .coming-actions {
  margin-top: 2rem;
}

.page--comingsoon .footer__bottom {
  text-align: center;
}

/* =========================
   SMALL POLISH
   ========================= */

::selection {
  background: rgba(185, 150, 91, 0.22);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1080px) {
  .hero__grid,
  .service-row,
  .service-row--reverse,
  .contact-grid,
  .footer__inner,
  .cards--2col,
  .two-col--premium,
  .audience-grid,
  .coaching-grid,
  .hero__grid--tight {
    grid-template-columns: 1fr;
  }

  .hero__media--home,
  .hero__media--contact {
    justify-self: start;
  }

  .cards--3col,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .hero__grid--contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__media--contact {
    margin-top: 20px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 56px 0;
  }

  .header__inner {
    min-height: auto;
    padding: 1rem 0;
  }

  .nav {
    justify-content: center;
    gap: 0.25rem;
  }

  .nav a {
    padding: 0.68rem 0.88rem;
    font-size: 0.92rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .page-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .card h3,
  .card-title,
  .audience-card h3,
  .coaching-card__body h3,
  .research-card__title,
  .value-panel__title,
  .case-steps h4,
  .block h3,
  .expertise-card h3,
  .micro-panel h3,
  .service-band__title {
    font-size: 29px;
  }

  .form-row,
  .cards--3col,
  .reviews-grid,
  .audience-tags,
  .meta-badges {
    grid-template-columns: 1fr;
  }

  .cta {
    width: min(100%, calc(100% - 1.25rem));
    margin: 0.65rem auto 2rem;
    padding: 0.95rem 0.9rem 1rem;
  }

  .cta h2 {
    font-size: 19px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta a,
  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .home-logo {
    padding: 1.25rem 0 0.5rem;
  }

  .home-logo__mark {
    width: 220px;
  }

  .coaching-card img {
    height: 200px;
  }

  .case-steps li {
    padding-left: 3.75rem;
  }

  .page--comingsoon .coming-card {
    padding: 28px;
    border-radius: 22px;
  }

  .page--comingsoon .coming-logo {
    width: 140px;
    margin-bottom: 1.1rem;
  }

  .page--comingsoon .hero-title {
    max-width: none;
    font-size: 40px;
  }

  .page--comingsoon .lead--center {
    font-size: 16px;
    line-height: 28px;
  }
}


/* =========================
   LEGAL PAGES
   ========================= */

.page--legal .section--hero {
  padding-top: 56px;
  padding-bottom: 40px;
}

.page--legal .hero__grid--tight {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
  gap: 2.5rem;
}

.page--legal .hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.page--legal .page-title {
  margin-bottom: 0.25rem;
}

.page--legal .legal-shell {
  width: 100%;
}

.page--legal .legal-intro {
  color: var(--ink-soft);
}

.page--legal .legal-intro p:last-child {
  margin-bottom: 0;
}

.page--legal .legal-meta {
  margin: 0.35rem 0 0;
  color: var(--navy);
  font-size: 0.95rem;
}

.page--legal .legal-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.page--legal .legal-figure {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.72));
}

.page--legal .legal-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0;
}

.page--legal .legal-card,
.page--legal .legal-toc {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.page--legal .legal-card {
  padding: 1.5rem;
}

.page--legal .legal-card h2 {
  font-size: 1.65rem;
  margin-bottom: 0.6rem;
}

.page--legal .legal-card p:last-child {
  margin-bottom: 0;
}

.page--legal .legal-toc {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1.2rem;
}

.page--legal .legal-toc a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(36, 56, 72, 0.08);
  font-weight: 500;
}

.page--legal .legal-toc a:hover,
.page--legal .legal-toc a:focus-visible {
  background: rgba(185, 150, 91, 0.14);
  border-color: rgba(185, 150, 91, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.page--legal .section--soft {
  padding-top: 12px;
}

.page--legal .legal-stack {
  display: grid;
  gap: 1.2rem;
}

.page--legal .legal-block {
  padding: 1.75rem 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 110px;
}

.page--legal .legal-block h2 {
  margin-bottom: 0.8rem;
  font-size: 2rem;
}

.page--legal .legal-block p:last-child,
.page--legal .legal-block ul:last-child {
  margin-bottom: 0;
}

.page--legal .legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.page--legal .legal-list li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.9rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(36, 56, 72, 0.08);
}

.page--legal .legal-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

@media (max-width: 1080px) {
  .page--legal .hero__grid--tight {
    grid-template-columns: 1fr;
  }

  .page--legal .legal-side {
    order: -1;
  }
}

@media (max-width: 760px) {
  .page--legal .legal-toc {
    grid-template-columns: 1fr;
  }

  .page--legal .legal-block,
  .page--legal .legal-card {
    padding: 1.35rem;
  }

  .page--legal .legal-block h2 {
    font-size: 1.7rem;
  }
}
