:root {
  --ink: #1d2522;
  --muted: #58635e;
  --line: #d8ded7;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --forest: #17463a;
  --forest-soft: #e8f0eb;
  --gold: #b9924a;
  --gold-soft: #f4ead6;
  --shadow: 0 24px 60px rgba(29, 37, 34, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

.edit-toolbar {
  display: none;
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(23, 70, 58, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(29, 37, 34, 0.14);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
}

.edit-toolbar button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--forest);
  border-radius: 7px;
  color: var(--forest);
  background: white;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.edit-toolbar .edit-toggle[aria-pressed="true"] {
  color: white;
  background: var(--forest);
}

.is-editing [data-edit-key] {
  outline: 2px dashed rgba(185, 146, 74, 0.7);
  outline-offset: 4px;
  border-radius: 5px;
  cursor: text;
}

.is-editing [data-edit-key]:focus {
  outline: 2px solid var(--gold);
  background: rgba(244, 234, 214, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(216, 222, 215, 0.82);
  background: rgba(251, 251, 247, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(300px, 32vw, 420px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--forest);
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(90vh - 96px);
  padding: clamp(70px, 10vw, 128px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 1080px;
}

.page-hero {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.section-kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.18rem, 1.65vw, 1.55rem);
}

.team-page-hero {
  padding-top: clamp(26px, 3vw, 42px);
  padding-bottom: clamp(18px, 2vw, 28px);
}

.team-page-hero h1,
.criteria-page-hero h1,
.contact-page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.7rem, 5.5vw, 4.6rem);
}

.team-page-hero p,
.contact-page-hero p {
  max-width: 900px;
}

.criteria-page-hero {
  padding-bottom: clamp(34px, 4vw, 54px);
}

.criteria-section {
  padding-top: clamp(34px, 4vw, 54px);
}

.eyebrow,
.section-kicker,
.panel-topline {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
}

h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--forest);
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button.primary {
  background: var(--forest);
  color: white;
}

.button.primary:hover {
  background: #0f352b;
}

.button.secondary {
  background: transparent;
  color: var(--forest);
}

.button.secondary:hover {
  background: var(--forest-soft);
}

.hero-panel {
  position: relative;
  min-height: 470px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 234, 214, 0.85), rgba(255, 255, 255, 0) 38%),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "NL";
  position: absolute;
  right: -18px;
  bottom: -44px;
  color: rgba(23, 70, 58, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
}

.summary-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 34px 0 0;
}

.summary-list div {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.summary-list dt {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  line-height: 1.2;
}

.section {
  padding: clamp(48px, 6vw, 78px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: white;
}

.intro-section p:last-child,
.section-heading p,
.bio-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.industries-section {
  background: var(--paper);
}

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

.industry-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.industry-grid h3 {
  margin-bottom: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.more-tags {
  margin-top: 8px;
}

.focus-more {
  margin-top: 14px;
}

.focus-more summary {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: rgba(23, 70, 58, 0.35);
  text-underline-offset: 4px;
}

.focus-more summary::-webkit-details-marker {
  display: none;
}

.focus-more .less-label,
.focus-more[open] .more-label {
  display: none;
}

.focus-more[open] .less-label {
  display: inline;
}

.tag-list span,
.operator-fit span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(23, 70, 58, 0.15);
  border-radius: 7px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 750;
}

.focus-more summary:hover {
  color: #0f352b;
}

.section-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.criteria-grid article {
  min-height: 315px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.criteria-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
}

.criteria-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.approach-section {
  background: var(--forest);
  color: white;
}

.approach-section .section-kicker {
  color: var(--gold-soft);
}

.approach-section .section-heading p,
.approach-section p {
  color: rgba(255, 255, 255, 0.76);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.approach-list article {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.approach-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
}

.about-section {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  background: white;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.bio-card {
  display: grid;
  gap: 24px;
}

.portrait-mark,
.portrait-frame {
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  aspect-ratio: 1 / 1.08;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 70, 58, 0.1), rgba(185, 146, 74, 0.18)),
    white;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
}

.portrait-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.portrait-frame img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame figcaption {
  position: relative;
  z-index: 0;
}

.portrait-frame.avatar {
  width: min(100%, var(--team-photo-size));
  height: var(--team-photo-size);
  border: 0;
  border-radius: 8px;
}

.team-section {
  --team-photo-size: clamp(190px, 16vw, 230px);
  padding-top: clamp(18px, 2vw, 28px);
  background: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.team-member {
  display: grid;
  grid-template-rows: var(--team-photo-size) auto;
  gap: 14px;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.team-member > div {
  display: grid;
  gap: 8px;
}

.team-member h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.team-heading-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linkedin-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: var(--forest);
  color: white;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.linkedin-icon:hover {
  background: #0f352b;
}

.initials-mark {
  display: grid;
  place-items: center;
  width: min(100%, var(--team-photo-size));
  height: var(--team-photo-size);
  border: 0;
  border-radius: 8px;
  background: var(--forest-soft);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.team-member .bio-role,
.team-member .bio-positioning {
  margin-bottom: 0;
}

.team-member .bio-positioning {
  min-height: 4.8em;
}

.team-member .bio-list {
  margin-top: 0;
}

.partner-network-section {
  background: var(--paper);
}

.partner-network-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.partner-network-grid article {
  padding: clamp(24px, 3vw, 36px);
  border-left: 5px solid var(--forest);
  background: white;
  box-shadow: 0 14px 34px rgba(29, 37, 34, 0.06);
}

.partner-network-grid h3 {
  color: var(--forest);
}

.partner-network-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.partner-quote {
  margin: clamp(28px, 4vw, 48px) 0 0;
  padding: clamp(28px, 4vw, 44px);
  border-left: 5px solid var(--gold);
  background: #1b1e1c;
  color: rgba(255, 255, 255, 0.82);
}

.partner-quote p {
  max-width: 1120px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-style: italic;
  line-height: 1.55;
}

.partner-quote cite {
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bio-copy {
  display: grid;
  gap: 12px;
  max-width: 690px;
}

.bio-name {
  margin-bottom: 0;
}

.bio-thesis {
  max-width: 620px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

.bio-role {
  margin-bottom: 0;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 850;
}

.bio-positioning {
  max-width: 620px;
  margin-bottom: 4px;
}

.bio-list {
  display: grid;
  gap: 12px;
  margin: 6px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1.03rem;
}

.operator-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(44px, 6vw, 68px) clamp(20px, 5vw, 72px);
  background: var(--gold-soft);
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p {
  max-width: 700px;
}

.legal-hero {
  padding-bottom: clamp(34px, 4vw, 54px);
}

.legal-section {
  padding-top: clamp(36px, 5vw, 64px);
}

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

.legal-copy h2 {
  margin-bottom: 10px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
}

.legal-copy p {
  color: var(--muted);
}

.legal-copy p + h2 {
  margin-top: 34px;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-color: rgba(23, 70, 58, 0.35);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

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

.footer-links a:hover {
  color: var(--forest);
}

@media (max-width: 980px) {
  .hero,
  .intro-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 380px;
  }

  .criteria-grid,
  .industry-grid,
  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 690px) {
  .edit-toolbar {
    display: none;
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-direction: row;
    justify-content: space-between;
    transform: none;
  }

  .edit-toolbar button {
    flex: 1;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .brand img {
    width: min(320px, 84vw);
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 5.4rem);
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

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

  .team-member {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

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

  .portrait-frame.avatar,
  .initials-mark {
    width: min(100%, 250px);
    height: min(80vw, 250px);
  }

  .hero-panel {
    min-height: auto;
  }

  .summary-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .criteria-grid,
  .industry-grid,
  .partner-network-grid,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .criteria-grid article {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
