:root {
  --paper: #f5f2ed;
  --paper-2: #eee9e2;
  --ink: #1b1a18;
  --ink-soft: #595653;
  --line: rgba(27, 26, 24, .18);
  --night: #151718;
  --warm: #c7a98d;
  --blue: #2f78b7;
  --blue-soft: #5c95c5;
  --header-h: 96px;
  --max: 1800px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #111;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(248, 246, 242, .96);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 54px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 28px;
}
.brand {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: .24em;
}
.brand-name {
  font-size: 31px;
  font-weight: 300;
}
.brand-line {
  margin-top: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-link {
  position: relative;
  padding: 12px 0 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .055em;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: #111; }
.language {
  justify-self: end;
  display: flex;
  gap: 9px;
  font-size: 11px;
  letter-spacing: .1em;
}
.language-current { font-weight: 700; }
.language-pending { opacity: .7; cursor: default; }
.menu-toggle { display: none; }

.section-anchor { scroll-margin-top: calc(var(--header-h) + 8px); }

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - var(--header-h)));
  overflow: hidden;
  background: #171918;
  color: #f4f1ec;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/hero.webp");
  background-size: cover;
  background-position: center 18%;
  filter: saturate(.76) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,7,.95) 0%, rgba(7,8,8,.88) 18%, rgba(10,11,11,.56) 29%, rgba(10,11,11,.22) 39%, rgba(10,11,11,.08) 58%, rgba(10,11,11,.15) 100%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.20));
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 56px 52px;
}
.hero-copy {
  width: min(620px, 38vw);
  padding-top: 4px;
}
.hero h1 {
  margin: 0 0 32px;
  font-size: clamp(54px, 5.05vw, 98px);
  line-height: .94;
  letter-spacing: -.045em;
  font-weight: 300;
}
.hero h1 span { display: block; }
.accent-warm { color: var(--warm); }
.hero-fields {
  margin: 0 0 26px;
  font-size: clamp(22px, 1.6vw, 31px);
  line-height: 1.23;
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero-statement {
  margin: 0;
  font-size: clamp(17px, 1.16vw, 22px);
  line-height: 1.45;
  font-weight: 350;
}
.short-rule {
  display: block;
  width: 30px;
  height: 1px;
  margin: 34px 0 26px;
  background: currentColor;
  opacity: .85;
}
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  gap: 32px;
  padding: 13px 18px 12px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.outline-button:hover,
.outline-button:focus-visible { transform: translateY(-1px); }
.outline-button.light:hover,
.outline-button.light:focus-visible { background: #f4f1ec; color: #111; }
.outline-button.dark:hover,
.outline-button.dark:focus-visible { background: #1a1917; color: #fff; }
.hero-sidecopy {
  position: absolute;
  right: 58px;
  top: 82px;
  width: 130px;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.18;
  letter-spacing: .055em;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,.42);
}
.vertical-rule {
  display: block;
  width: 1px;
  height: 76px;
  margin: 24px 0 0 3px;
  background: currentColor;
  opacity: .8;
}
.hero-signature {
  position: absolute;
  right: 58px;
  bottom: 34px;
  text-align: right;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.hero-signature span {
  display: block;
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: clamp(29px, 2.35vw, 45px);
  line-height: 1;
  transform: rotate(-2deg);
}
.hero-signature small {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: .21em;
}

.profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #fff;
  border-top: 8px solid #fff;
  border-bottom: 8px solid #fff;
}
.profile {
  position: relative;
  min-height: 700px;
  background: linear-gradient(90deg, #f7f5f1 0%, #f7f5f1 50%, #e7e4df 100%);
  overflow: hidden;
}
.profile-copy {
  position: relative;
  z-index: 3;
  width: 54%;
  padding: 48px 0 142px 50px;
}
.profile h2 {
  margin: 0 0 28px;
  font-size: clamp(32px, 2.35vw, 48px);
  line-height: 1;
  letter-spacing: .05em;
  font-weight: 300;
}
.profile-credential {
  margin: -17px 0 24px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .10em;
  font-weight: 600;
}
.profile-mantra {
  margin: 0 0 22px;
  font-size: clamp(22px, 1.5vw, 30px);
  line-height: 1.07;
  letter-spacing: .075em;
  font-weight: 300;
}
.profile-mantra.stacked { line-height: 1.06; }
.profile-role {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.35;
  font-weight: 600;
}
.profile-text {
  margin: 0 0 28px;
  max-width: 500px;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
  font-weight: 350;
}
.profile blockquote {
  margin: 30px 0 32px;
  font-family: var(--serif);
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.18;
  font-style: italic;
}
.profile-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 55%;
  height: calc(100% - 118px);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.profile-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f5f1 0%, rgba(247,245,241,.76) 10%, rgba(247,245,241,0) 36%);
}
.yvonne-visual { background-image: url("assets/img/yvonne.webp"); }
.carsten-visual { background-image: url("assets/img/carsten.webp"); }
.profile-topics {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 118px;
  padding: 14px 28px 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  background: linear-gradient(180deg, rgba(247,245,241,.3), #f7f5f1 38%);
}
.topic {
  min-width: 0;
  text-align: center;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .045em;
  font-weight: 600;
}
.topic svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lab {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #efe9e0;
}
.lab-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/img/lab.webp");
  background-size: cover;
  background-position: center center;
  filter: saturate(.75) contrast(.98);
}
.lab-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,244,239,.98) 0%, rgba(247,244,239,.96) 28%, rgba(247,244,239,.72) 43%, rgba(247,244,239,.08) 67%, rgba(18,18,17,.08) 100%);
}
.lab-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: inherit;
  margin: 0 auto;
  padding: 54px 60px;
}
.lab-copy {
  width: min(620px, 42vw);
}
.lab h2 {
  margin: 0;
  font-size: clamp(42px, 3.4vw, 68px);
  font-weight: 300;
  letter-spacing: .17em;
}
.dark-rule { margin: 20px 0 22px; }
.lab-mantra {
  margin: 0 0 28px;
  font-size: clamp(22px, 1.65vw, 32px);
  line-height: 1.15;
  letter-spacing: .045em;
  font-weight: 300;
}
.lab-copy > p:last-of-type {
  margin: 0 0 30px;
  max-width: 650px;
  font-size: clamp(16px, 1.12vw, 20px);
  line-height: 1.5;
}
.lab-sidecopy {
  position: absolute;
  right: 54px;
  top: 42px;
  width: 235px;
  text-align: right;
  letter-spacing: .055em;
}
.lab-sidecopy p {
  margin: 0;
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.16;
  font-weight: 300;
}
.lab-sidecopy .vertical-rule { margin-left: auto; margin-right: 2px; }
.lab-sidecopy strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.45;
  letter-spacing: .04em;
}
.dark-line { background: #222; }

.insights {
  padding: 34px 54px 42px;
  background: #f7f5f1;
}
.section-heading-row {
  max-width: var(--max);
  margin: 0 auto 17px;
  display: flex;
  align-items: baseline;
  gap: 22px;
}
.section-heading-row h2 {
  margin: 0;
  font-size: clamp(29px, 2.35vw, 43px);
  line-height: 1;
  letter-spacing: .13em;
  font-weight: 300;
}
.section-heading-row p {
  margin: 0;
  font-size: 10px;
  letter-spacing: .14em;
}
.insight-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.insight-card {
  position: relative;
  min-height: 185px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 18px;
  color: #fff;
  background: #2d3337;
}
.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.68)),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, rgba(199,169,141,.2), rgba(47,120,183,.16));
}
.insight-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(234,234,230,.18), rgba(10,14,18,.76)), radial-gradient(circle at 75% 25%, rgba(255,255,255,.2), transparent 24%); }
.insight-card:nth-child(3)::before { background: linear-gradient(155deg, rgba(47,120,183,.08), rgba(9,15,18,.76)), radial-gradient(circle at 62% 28%, rgba(218,231,239,.2), transparent 32%); }
.insight-card:nth-child(4)::before { background: linear-gradient(155deg, rgba(231,215,193,.2), rgba(9,11,12,.76)), radial-gradient(circle at 55% 18%, rgba(255,255,255,.2), transparent 36%); }
.insight-card span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: .06em;
}

.contact {
  min-height: 225px;
  color: #f5f2ed;
  background:
    linear-gradient(90deg, rgba(16,17,17,.96), rgba(16,17,17,.86)),
    radial-gradient(circle at 20% 50%, rgba(199,169,141,.18), transparent 28%);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 42px 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.contact p {
  margin: 0 0 4px;
  color: var(--warm);
  font-size: clamp(22px, 1.65vw, 31px);
  letter-spacing: .08em;
  font-weight: 300;
}
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 3.3vw, 64px);
  line-height: 1;
  letter-spacing: .07em;
  font-weight: 300;
}
.contact-brand {
  display: flex;
  min-width: 310px;
  flex-direction: column;
  align-items: flex-start;
}
.contact-brand > span {
  font-size: 32px;
  letter-spacing: .29em;
  font-weight: 300;
}
.contact-brand small {
  margin: 10px 0 18px;
  font-size: 10px;
  letter-spacing: .17em;
}

.site-footer {
  background: #faf9f7;
  border-top: 1px solid rgba(0,0,0,.07);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 64px;
  padding: 0 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-size: 9px;
  letter-spacing: .12em;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover, .footer-email:hover { color: var(--blue); }
.footer-tagline { justify-self: end; }
.footer-email { letter-spacing: .08em; text-transform: lowercase; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1240px) {
  :root { --header-h: 82px; }
  .header-inner { padding: 0 30px; grid-template-columns: 210px auto 88px; gap: 18px; }
  .main-nav { gap: 20px; }
  .nav-link { font-size: 11px; }
  .brand-name { font-size: 26px; }
  .hero-inner { padding: 54px 34px 40px; }
  .hero-copy { width: 50vw; }
  .hero-sidecopy, .hero-signature { right: 34px; }
  .profile-copy { width: 58%; padding-left: 34px; }
  .profile-visual { width: 52%; }
  .lab-inner { padding-left: 38px; padding-right: 38px; }
  .lab-sidecopy { right: 32px; }
  .insights { padding-left: 34px; padding-right: 34px; }
  .contact-inner, .footer-inner { padding-left: 34px; padding-right: 34px; }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span { width: 100%; height: 1px; background: #222; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    display: none;
    padding: 18px 28px 26px;
    background: rgba(248,246,242,.98);
    border-bottom: 1px solid rgba(0,0,0,.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
  .main-nav.open { display: flex; }
  .nav-link { font-size: 13px; padding: 11px 0; }
  .language { grid-column: 3; grid-row: 1; margin-right: 12px; }
  .menu-toggle { grid-column: 3; grid-row: 1; justify-self: end; margin-left: 52px; }
  .language { transform: translateX(-42px); }

  .hero { min-height: 720px; }
  .hero-photo { background-position: 58% 14%; }
  .hero-overlay { background: linear-gradient(90deg, rgba(4,5,5,.96) 0%, rgba(6,7,7,.88) 42%, rgba(7,8,8,.25) 72%, rgba(7,8,8,.18) 100%); }
  .hero-copy { width: 58vw; }
  .hero-sidecopy { display: none; }

  .profiles { grid-template-columns: 1fr; }
  .profile { min-height: 720px; }
  .profile-copy { width: 54%; padding-left: 52px; }
  .profile-visual { width: 54%; }
  .profile-topics { padding-left: 48px; padding-right: 48px; }

  .lab { min-height: 560px; }
  .lab-copy { width: 54vw; }
  .lab-sidecopy { width: 190px; }

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

@media (max-width: 720px) {
  :root { --header-h: 74px; }
  .header-inner { padding: 0 18px; grid-template-columns: 1fr auto; }
  .brand-name { font-size: 23px; }
  .brand-line { font-size: 7px; }
  .language { display: none; }
  .menu-toggle { grid-column: 2; margin-left: 0; }

  .hero { min-height: 760px; }
  .hero-photo { background-position: 56% 12%; opacity: .88; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(7,8,8,.56) 0%, rgba(7,8,8,.35) 26%, rgba(7,8,8,.86) 68%, rgba(7,8,8,.96) 100%);
  }
  .hero-inner { padding: 32px 22px 26px; display: flex; flex-direction: column; justify-content: flex-end; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(47px, 15vw, 74px); margin-bottom: 20px; }
  .hero-fields { font-size: 19px; }
  .hero-statement { font-size: 16px; }
  .desktop-only { display: none; }
  .hero-signature { display: none; }
  .short-rule { margin: 24px 0 20px; }

  .profile { min-height: auto; padding-bottom: 0; }
  .profile-copy { width: 100%; padding: 34px 24px 26px; }
  .profile h2 { font-size: 38px; }
  .profile-mantra { font-size: 24px; }
  .profile-text { max-width: none; }
  .profile-visual {
    position: relative;
    width: 100%;
    height: 430px;
    background-position: center 16%;
  }
  .profile-visual::before { background: linear-gradient(180deg, #f7f5f1 0%, rgba(247,245,241,0) 22%); }
  .profile-topics {
    position: relative;
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    padding: 26px 20px 34px;
  }
  .topic { font-size: 10px; }

  .lab { min-height: 760px; }
  .lab-photo { background-position: 51% center; }
  .lab-fade { background: linear-gradient(180deg, rgba(247,244,239,.98) 0%, rgba(247,244,239,.93) 40%, rgba(247,244,239,.38) 67%, rgba(18,18,17,.32) 100%); }
  .lab-inner { padding: 36px 24px 30px; display: flex; flex-direction: column; justify-content: space-between; }
  .lab-copy { width: 100%; }
  .lab h2 { font-size: 44px; letter-spacing: .1em; }
  .lab-mantra { font-size: 22px; }
  .lab-sidecopy {
    position: static;
    width: auto;
    margin-top: 190px;
    color: #fff;
    text-align: right;
    text-shadow: 0 2px 12px rgba(0,0,0,.28);
  }
  .lab-sidecopy p { font-size: 18px; }
  .lab-sidecopy strong { margin-top: 22px; }
  .lab-sidecopy .vertical-rule { display: none; }

  .insights { padding: 30px 20px 34px; }
  .section-heading-row { display: block; }
  .section-heading-row h2 { font-size: 32px; }
  .section-heading-row p { margin-top: 8px; }
  .insight-grid { grid-template-columns: 1fr; gap: 9px; }
  .insight-card { min-height: 150px; }

  .contact-inner { padding: 34px 22px; grid-template-columns: 1fr; gap: 38px; }
  .contact-brand { min-width: 0; }
  .contact-brand > span { font-size: 27px; }
  .footer-inner { padding: 18px 20px; grid-template-columns: 1fr; gap: 13px; }
  .footer-tagline { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
