:root {
  color-scheme: light;
  --bg-color: #fbf8f3;
  --surface-color: #f2ece2;
  --text-color: #18231f;
  --primary-accent: #bd925c;
  --secondary-accent: #a97f4d;
  --bg: var(--bg-color);
  --ink: var(--text-color);
  --muted: #5d5852;
  --line: #d9d0c4;
  --panel: var(--surface-color);
  --accent: var(--primary-accent);
  --accent-dark: var(--text-color);
  --gold: var(--primary-accent);
  --gold-dark: #a97f4d;
  --taupe: #7a7064;
  --royal-red: #6f2722;
  --royal-red-dark: #4c1714;
  --shadow: 0 14px 42px rgba(24, 35, 31, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 248, 243, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--gold);
}

.nav a[aria-current="page"] {
  color: var(--gold);
}

.home-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.home-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-link:hover,
.home-link[aria-current="page"] {
  border-color: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  min-height: calc(100vh - 77px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 76px) clamp(54px, 7vw, 86px);
}

.hero-copy,
.section,
.footer {
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  display: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
}

.home-title {
  max-width: 720px;
  font-size: clamp(2.05rem, 3.2vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.55rem);
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.55rem;
}

.intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.26rem);
  font-weight: 400;
  line-height: 1.68;
}

.intro + .intro {
  margin-top: 16px;
}

.statement-card {
  margin: 28px 0 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  background: rgba(242, 237, 228, 0.72);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.24;
  box-shadow: var(--shadow);
}

.contact-direct a {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.proof-strip span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(201, 169, 110, 0.36);
  background: rgba(242, 237, 228, 0.68);
  color: var(--gold-dark);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.button.primary {
  background-color: var(--primary-accent);
  border-color: var(--primary-accent);
  color: #faf7f2;
  box-shadow: none;
}

.button.primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button.secondary {
  background: transparent;
  box-shadow: none;
  border-color: var(--ink);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg-color);
}

.button.linkedin {
  min-height: 0;
  gap: 8px;
  padding: 0.72rem 1.35rem;
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
  font-size: 0.7rem;
  box-shadow: none;
}

.button.linkedin::before {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.82);
  border-radius: 2px;
  color: #fffdf9;
  content: "in";
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.button.linkedin:hover {
  background: #084f96;
  border-color: #084f96;
  color: #ffffff;
}

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo::before {
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  content: "";
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.recruit-hero {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
}

.book-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.78fr);
}

.contact-hero {
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  min-height: auto;
  padding-top: clamp(72px, 10vw, 132px);
}

.recruit-panel {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  background: var(--surface-color);
  box-shadow: var(--shadow);
}

.recruit-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.1;
}

.recruit-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.section {
  isolation: isolate;
  position: relative;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) clamp(18px, 5vw, 40px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  border-top: 1px solid var(--primary-accent);
  background: var(--bg-color);
}

.section > * {
  position: relative;
  z-index: 1;
}

#over-mij::before {
  background:
    linear-gradient(180deg, #faf7f2 0%, #f2ede4 120px, #f2ede4 100%),
    #f2ede4;
}

#aanbevelingen::before {
  background:
    linear-gradient(180deg, #f2ede4 0%, #fbf8f2 120px, #fbf8f2 100%),
    #fbf8f2;
}

#contact::before {
  background:
    linear-gradient(180deg, #fbf8f2 0%, #eee7dc 120px, #eee7dc 100%),
    #eee7dc;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
}

.text-stack p,
.section-heading p:not(.eyebrow),
.contact-copy p:not(.eyebrow),
.content-card p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.text-stack p {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.text-stack ul,
.text-stack ol,
.article-content ul,
.article-content ol {
  margin: 0 0 22px;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.72;
}

.text-stack li,
.article-content li {
  margin-bottom: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
}

.section .eyebrow,
.section-heading .eyebrow,
.contact-copy .eyebrow,
.recruit-panel .eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.theme-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vacancy-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.content-card,
.book-card,
.vacancy-card,
.featured-vacancy,
.vacancy-empty {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(242, 237, 228, 0.72);
  box-shadow: var(--shadow);
}

.book-card {
  display: flex;
  flex-direction: column;
}

.rating {
  margin: 8px 0 12px;
  color: var(--gold);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rating::before {
  content: "Mijn waardering: ";
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-card .text-link {
  margin-top: auto;
}

.review-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.review-content {
  max-width: 820px;
}

.review-content h1 {
  max-width: 780px;
}

.review-subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-body {
  margin-top: 30px;
}

.review-body p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.82;
}

.reflection-question,
.review-aside {
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: rgba(242, 237, 228, 0.78);
  box-shadow: var(--shadow);
}

.reflection-question {
  margin-top: 34px;
  padding: clamp(22px, 4vw, 32px);
}

.reflection-question h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.reflection-question p,
.review-aside p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.reflection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 24px;
}

.reflection-actions .button {
  min-width: 230px;
}

.reflection-actions .text-link {
  margin-top: 0;
}

.review-aside {
  position: sticky;
  top: 110px;
  padding: clamp(22px, 3vw, 30px);
}

.review-aside h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.review-aside .button {
  width: 100%;
  margin-top: 12px;
}

.vacancy-card p,
.featured-vacancy p,
.vacancy-empty p,
.vacancy-status {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.68;
}

.featured-vacancy {
  min-height: auto;
  margin-bottom: 18px;
  border-color: var(--gold);
  border-left: 4px solid var(--gold);
  background: rgba(242, 237, 228, 0.82);
}

.featured-vacancy h3 {
  max-width: 760px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.14;
}

.vacancy-card-actions,
.vacancy-actions {
  margin-top: 18px;
}

.text-link.subtle {
  margin-left: 16px;
  color: var(--muted);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tag,
.partner {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag {
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold);
}

.partner {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.32);
  color: var(--secondary-accent);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
}

.contact-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: rgba(242, 237, 228, 0.78);
  box-shadow: var(--shadow);
}

.contact-card p,
.privacy-note,
.legal-page p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-card .button {
  margin-top: 12px;
}

.profile-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.profile-list li {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 0;
  background: var(--surface-color);
  box-shadow: var(--shadow);
}

.honeypot {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(184, 149, 91, 0.2);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--gold);
  font-weight: 800;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.privacy-note {
  margin: 0;
  font-size: 0.85rem;
}

.privacy-note a,
.legal-page a {
  color: var(--gold);
  text-decoration: none;
}

.privacy-note a:hover,
.legal-page a:hover {
  text-decoration: underline;
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  margin-bottom: 28px;
}

.legal-page h2 {
  margin: 34px 0 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.article-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) clamp(18px, 5vw, 40px);
}

.article-hero {
  max-width: 900px;
}

.article-hero h1 {
  max-width: 900px;
}

.article-meta,
.copy-status {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.article-meta {
  margin: 22px 0 0;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.share-actions .button {
  padding-inline: 1.1rem;
}

.copy-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--gold-dark);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.92fr);
  gap: clamp(28px, 6vw, 76px);
  margin-top: clamp(46px, 7vw, 84px);
}

.article-aside {
  position: sticky;
  top: 106px;
  align-self: start;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-aside nav {
  display: grid;
  gap: 12px;
}

.article-aside a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-aside a:hover {
  color: var(--gold-dark);
}

.article-content {
  max-width: 760px;
}

.article-content p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.82;
}

.article-content h2 {
  margin: clamp(38px, 6vw, 58px) 0 18px;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.article-cta {
  margin-top: clamp(44px, 7vw, 70px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  background: rgba(242, 237, 228, 0.78);
  box-shadow: var(--shadow);
}

.article-cta h2 {
  margin-top: 0;
}

.footer {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(260px, 1.2fr) auto;
  align-items: start;
  gap: 20px;
  margin: 0 auto;
  padding: 34px clamp(18px, 5vw, 40px) 46px;
  border-top: 1px solid var(--gold);
  background: var(--surface-color);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand p:first-child {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 680px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--gold);
}

.footer-linkedin {
  margin-left: auto;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .site-header,
  .footer {
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .hero,
  .recruit-hero,
  .book-hero,
  .contact-hero,
  .split,
  .contact-section,
  .review-page,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .review-aside {
    position: static;
  }

  .article-aside {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    order: -1;
    max-width: 420px;
  }

  .hero-photo img {
    aspect-ratio: 16 / 10;
    max-height: 280px;
    object-position: center 18%;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .vacancy-feed,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .footer-linkedin {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 0.8rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: 2.1rem;
  }

  .button {
    width: 100%;
  }

  .share-actions .button {
    width: 100%;
  }

}
