/* ==========================================================================
   Mo-kamal Holding B.V. — website styles (v2)
   Identity: deep navy #061525 · warm gold #AD8448 · warm ivory #F7F5F1
   Display: Georgia (brand serif) · Text: system sans (Inter / SF / Segoe)
   Labels echo the letter-spaced "HOLDING" line of the logo.
   ========================================================================== */

:root {
  --navy: #061525;
  --navy-deep: #030C17;
  --navy-2: #0C2036;
  --navy-3: #173352;
  --gold: #AD8448;
  --gold-ink: #86622F;     /* small gold text on light surfaces (AA) */
  --gold-soft: #CFAB74;    /* gold text on navy (AA) */
  --ivory: #F7F5F1;
  --stone: #EEE9E0;
  --white: #FFFFFF;
  --ink: #061525;
  --muted: #475261;
  --line: #DDD6CA;
  --line-soft: #E8E2D8;
  --on-navy: #FFFFFF;
  --on-navy-muted: #AEB8C4;
  --line-navy: rgba(255, 255, 255, 0.14);

  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --space-section: clamp(80px, 11vw, 160px);
  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--sans); font-size: 1.0625rem; line-height: 1.68;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
}
img, svg { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
source { display: none; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

.skip-link { position: absolute; left: 16px; top: -120px; z-index: 200; background: var(--navy); color: #fff; padding: 12px 18px; font-weight: 500; text-decoration: none; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; text-wrap: balance; }
.d1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); line-height: 1.02; letter-spacing: -0.025em; }
.d2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1.06; letter-spacing: -0.02em; }
.d3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.18; }
.d4 { font-size: clamp(1.25rem, 1.7vw, 1.45rem); line-height: 1.3; }
em.accent, .accent { font-style: italic; color: var(--gold-ink); }
.on-navy em.accent, .on-navy .accent { color: var(--gold-soft); }
.lede { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.62; color: var(--muted); max-width: 36em; text-wrap: pretty; }
.on-navy .lede { color: var(--on-navy-muted); }
.body-copy { color: var(--muted); max-width: 36em; text-wrap: pretty; }
.body-copy p + p { margin-top: 1em; }
.body-copy strong { color: var(--ink); font-weight: 600; }
.label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-ink);
}
.on-navy .label { color: var(--gold-soft); }
.on-navy { color: var(--on-navy); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 54px; padding: 14px 26px; border: 1px solid var(--navy); border-radius: 0;
  background: var(--navy); color: #fff; text-decoration: none; cursor: pointer;
  font-size: 0.9375rem; font-weight: 500; letter-spacing: .01em;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { background: var(--navy-3); border-color: var(--navy-3); }
.btn--line { background: transparent; color: var(--navy); }
.btn--line:hover { background: var(--navy); color: #fff; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.arr { display: inline-block; transition: transform .3s var(--ease); }
a:hover > .arr, button:hover > .arr, .row-link:hover .arr { transform: translateX(4px); }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }

.tlink {
  display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; font-weight: 500; font-size: .9375rem;
  background-image: linear-gradient(var(--gold), var(--gold)); background-repeat: no-repeat;
  background-size: 100% 1px; background-position: 0 100%; padding-bottom: 4px;
  transition: color .25s var(--ease);
}
.tlink:hover { color: var(--gold-ink); }
.on-navy .tlink:hover { color: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line-soft); transition: box-shadow .3s var(--ease); }
.site-header.is-scrolled { box-shadow: 0 10px 30px -24px rgba(3,12,23,.5); }
@supports (backdrop-filter: blur(8px)) { .site-header { background: rgba(255,255,255,.9); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); } }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--navy); }
.brand img { width: 80px; height: auto; }
.brand__name { display: flex; flex-direction: column; line-height: 1.1; padding-left: 16px; border-left: 1px solid var(--line); }
.brand__name strong { font-family: var(--serif); font-weight: 400; font-size: 1.1875rem; letter-spacing: -0.005em; white-space: nowrap; }
.brand__name span { font-size: .625rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-ink); margin-top: 6px; white-space: nowrap; }

.nav ul { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 40px); list-style: none; margin: 0; padding: 0; }
.nav a { position: relative; display: inline-block; padding: 8px 0; font-size: .9375rem; font-weight: 500; text-decoration: none; color: var(--navy); }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav .nav-cta a { padding: 11px 20px; background: var(--navy); color: #fff; transition: background-color .3s var(--ease); }
.nav .nav-cta a::after { display: none; }
.nav .nav-cta a:hover { background: var(--navy-3); }

.nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle i { position: relative; display: block; width: 20px; height: 1.5px; background: var(--navy); transition: background-color .2s; }
.nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--navy); transition: transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle i::before { top: -6px; }
.nav-toggle i::after { top: 6px; }
.nav-open .nav-toggle i { background: transparent; }
.nav-open .nav-toggle i::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle i::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  :root { --header-h: 60px; }
  .brand img { width: 50px; }
  .brand { gap: 10px; }
  .brand__name { padding-left: 10px; }
  .brand__name strong { font-size: 1rem; }
  .brand__name span { display: none; }
  .nav-toggle { width: 42px; height: 42px; }
  .js .nav-toggle { display: inline-flex; }
  .js .nav { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); display: none; box-shadow: 0 24px 40px -30px rgba(3,12,23,.5); }
  .js .nav-open .nav { display: block; }
  .js .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 28px; }
  .js .nav li { border-bottom: 1px solid var(--line-soft); }
  .js .nav a { display: flex; justify-content: space-between; padding: 18px 0; font-family: var(--serif); font-size: 1.375rem; font-weight: 400; }
  .js .nav a::after { display: none; }
  .js .nav a[aria-current="page"] { color: var(--gold-ink); }
  .js .nav li.nav-cta { border: 0; margin-top: 24px; }
  .js .nav .nav-cta a { justify-content: center; font-family: var(--sans); font-size: 1rem; font-weight: 500; padding: 16px; }
  .js .nav .nav-cta a[aria-current="page"] { color: #fff; }
  .no-js .header-bar { height: auto; flex-wrap: wrap; padding-block: 14px; }
  .no-js .nav ul { flex-wrap: wrap; gap: 12px 22px; }
}
@media (max-width: 360px) { .brand img { width: 44px; } .brand__name strong { font-size: .9375rem; } }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--space-section); }
.bg-ivory { background: var(--ivory); }
.bg-stone { background: var(--stone); }
.bg-navy { background: var(--navy); color: var(--on-navy); }
.bg-deep { background: var(--navy-deep); color: var(--on-navy); }

/* Section marker: a full-width hairline with a running label, like a report divider */
.marker { display: flex; align-items: center; gap: 20px; margin-bottom: clamp(40px, 5vw, 72px); }
.marker::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.on-navy .marker::after { background: var(--line-navy); }
.marker .label { margin: 0; flex: 0 1 auto; max-width: 80%; }
.marker::after { min-width: 32px; }

.grid-12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2.4vw, 32px); }

/* ---------- Home hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero__top { position: relative; padding-top: clamp(64px, 9vw, 128px); }
.hero__art { position: absolute; right: -6%; top: 0; width: min(62vw, 880px); height: 100%; pointer-events: none; color: var(--gold); opacity: .55; }
.hero__art svg { width: 100%; height: 100%; }
.hero__inner { position: relative; }
.hero__kicker { display: flex; align-items: center; gap: 14px; margin-bottom: clamp(28px, 3.4vw, 44px); }
.hero__kicker::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { max-width: 12.5em; }
.hero__lede { margin-top: clamp(24px, 3vw, 36px); max-width: 38em; font-size: clamp(1.0625rem, 1.45vw, 1.25rem); color: var(--on-navy-muted); line-height: 1.65; }
.hero__lede strong { color: #fff; font-weight: 500; }
.hero .btns { margin-top: clamp(32px, 4vw, 48px); }

/* Group register in the hero */
.register { margin-top: clamp(56px, 7vw, 96px); border-top: 1px solid var(--line-navy); }
.hero .register { margin-top: 0; }
.hero__top .btns { margin-bottom: clamp(56px, 7vw, 96px); }
.register__head, .register__row { display: grid; grid-template-columns: minmax(0, 3.2fr) minmax(0, 2fr) minmax(0, 3.6fr) 40px; gap: 24px; align-items: center; }
.register__head { padding: 16px 0; font-size: .6875rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--on-navy-muted); border-bottom: 1px solid var(--line-navy); }
.register__row { padding: 22px 0; border-bottom: 1px solid var(--line-navy); text-decoration: none; color: #fff; position: relative; }
.register__row::before { content: ""; position: absolute; left: calc(var(--gutter) * -1); right: calc(var(--gutter) * -1); top: 0; bottom: 0; background: rgba(255,255,255,.04); opacity: 0; transition: opacity .3s var(--ease); }
a.register__row:hover::before { opacity: 1; }
.register__name { font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.625rem); line-height: 1.2; position: relative; }
.register__role { font-size: .875rem; color: var(--gold-soft); position: relative; }
.register__field { font-size: .9375rem; color: var(--on-navy-muted); position: relative; }
.register__go { justify-self: end; color: var(--gold-soft); font-size: 1.125rem; position: relative; }
.register__row--parent .register__name::before { content: ""; display: inline-block; width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg) translateY(-3px); margin-right: 14px; }
.register__row--child .register__name { padding-left: 28px; }
.register__row--child .register__name::before { content: ""; position: absolute; left: 3px; top: -.6em; width: 14px; height: 1.3em; border-left: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
@media (max-width: 760px) {
  .hero__art { display: none; }
  .hero .btns .btn { flex: 1 1 100%; }
  .register__head { display: none; }
  .register__row { grid-template-columns: minmax(0, 1fr) 28px; gap: 4px 16px; padding: 18px 0; }
  .register__name { grid-column: 1; }
  .register__role { display: none; }
  .register__field { grid-column: 1; font-size: .875rem; }
  .register__row--child .register__field { padding-left: 28px; }
  .register__row--parent .register__field { padding-left: 26px; }
  .register__go { grid-column: 2; grid-row: 1 / span 2; }
}

/* ---------- Role of the holding ---------- */
.role__intro { grid-column: 1 / span 5; }
.role__intro .body-copy { margin-top: 28px; }
.role__list { grid-column: 7 / span 6; border-top: 1px solid var(--ink); }
.role__item { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 24px; padding: 28px 0 30px; border-bottom: 1px solid var(--line); }
.role__item dt { font-family: var(--serif); font-size: 1.3125rem; line-height: 1.3; }
.role__item dd { color: var(--muted); font-size: 1rem; }
@media (max-width: 960px) {
  .role__intro, .role__list { grid-column: 1 / -1; }
  .role__list { margin-top: 48px; }
}
@media (max-width: 560px) { .role__item { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; } }

/* ---------- Company features ---------- */
.feature { padding-block: clamp(80px, 10vw, 144px); position: relative; }
.feature__head { grid-column: 1 / span 5; align-self: start; position: sticky; top: calc(var(--header-h) + 40px); }
.feature__body { grid-column: 7 / span 6; }
.feature__name { font-family: var(--serif); font-size: clamp(3rem, 7vw, 6rem); line-height: .95; letter-spacing: -0.035em; margin-top: 22px; }
.feature__name small { font-size: .3em; letter-spacing: .02em; vertical-align: .9em; margin-left: .2em; color: var(--gold-ink); }
.on-navy .feature__name small { color: var(--gold-soft); }
.feature__headline { margin-top: 28px; max-width: 16em; }
.feature__head .btns { margin-top: 36px; }
.feature__img { margin-top: 36px; aspect-ratio: 4 / 3; overflow: hidden; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; }
.feature__desc p { font-size: clamp(1.0625rem, 1.3vw, 1.1875rem); line-height: 1.7; color: var(--ink); }
.on-navy .feature__desc p { color: #E5E9EE; }
.feature__desc p + p { margin-top: 1em; color: var(--muted); }
.on-navy .feature__desc p + p { color: var(--on-navy-muted); }
.facts__title { margin-top: 48px; margin-bottom: 14px; }
.facts { margin-top: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.on-navy .facts { border-color: var(--line-navy); }
.facts > div { padding: 22px 24px 24px 0; border-bottom: 1px solid var(--line); }
.facts > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.on-navy .facts > div { border-color: var(--line-navy); }
.facts dt { margin-bottom: 8px; }
.facts--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.facts--3 > div, .facts--3 > div:nth-child(even) { padding: 22px 20px 24px 0; border-left: 0; }
.facts--3 > div:nth-child(n+2) { padding-left: 20px; border-left: 1px solid var(--line); }
.on-navy .facts--3 > div:nth-child(n+2) { border-color: var(--line-navy); }
.facts dd { font-size: .98rem; }
.facts dd.muted { color: var(--muted); }
.on-navy .facts dd.muted { color: var(--on-navy-muted); }
.work { margin-top: 44px; }
.work ul { margin-top: 18px; display: flex; flex-direction: column; }
.work li { display: grid; grid-template-columns: 28px 1fr; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.on-navy .work li { border-color: var(--line-navy); }
.work li::before { content: ""; width: 12px; height: 1px; background: var(--gold); transform: translateY(-4px); }
.fit { margin-top: 44px; padding: 26px 28px; border-left: 2px solid var(--gold); background: rgba(173,132,72,.07); }
.on-navy .fit { background: rgba(255,255,255,.04); }
.fit p + p { margin-top: 10px; font-family: var(--serif); font-size: 1.1875rem; line-height: 1.42; }
.feature__head .fit { margin-top: 40px; max-width: 30em; }
@media (max-width: 960px) {
  .feature__head, .feature__body { grid-column: 1 / -1; position: static; }
  .feature__body { margin-top: 44px; }
}
@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; }
  .facts, .facts--3 { grid-template-columns: 1fr; }
  .facts > div, .facts > div:nth-child(even), .facts--3 > div:nth-child(n+2) { padding: 16px 0; border-left: 0; }
}

.steps { margin-top: 48px; }
.steps ol { margin-top: 18px; display: grid; gap: 0; counter-reset: s; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.on-navy .steps li { border-color: var(--line-navy); }
.steps__n { width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: .95rem; color: var(--gold-ink); font-variant-numeric: lining-nums; }
.on-navy .steps__n { color: var(--gold-soft); }
.steps__t { font-family: var(--serif); font-size: 1.1875rem; line-height: 1.35; }
.steps__d { margin-top: 4px; color: var(--muted); font-size: .9688rem; }
.on-navy .steps__d { color: var(--on-navy-muted); }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.compare__col { padding: 40px 48px 44px 0; display: flex; flex-direction: column; }
.compare__col + .compare__col { padding: 40px 0 44px 48px; border-left: 1px solid var(--line); }
.compare__q { font-family: var(--serif); font-size: clamp(1.375rem, 2.2vw, 1.875rem); line-height: 1.25; margin-top: 16px; max-width: 16em; }
.compare__a { margin-top: 20px; color: var(--muted); max-width: 30em; }
.compare__col .tlink { margin-top: auto; padding-top: 0; align-self: flex-start; }
.compare__col .compare__a { margin-bottom: 28px; }
@media (max-width: 760px) {
  .compare { grid-template-columns: 1fr; }
  .compare__col, .compare__col + .compare__col { padding: 32px 0; border-left: 0; }
  .compare__col + .compare__col { border-top: 1px solid var(--line); }
}

/* ---------- Founder ---------- */
.founder { align-items: center; }
.founder__media { grid-column: 1 / span 5; position: relative; aspect-ratio: 4 / 5; background: var(--navy); overflow: hidden; }
.founder__media img.photo { width: 100%; height: 100%; object-fit: cover; }
.founder__media .mark { position: absolute; inset: 0; display: grid; place-items: center; }
.founder__media .mark img { width: 52%; }
.founder__media::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(173,132,72,.5); pointer-events: none; }
.founder__media figcaption { position: absolute; left: 36px; bottom: 32px; right: 36px; color: var(--on-navy-muted); font-size: .8125rem; letter-spacing: .02em; }
.founder__text { grid-column: 7 / span 6; }
.founder__text .d2 { margin-top: 22px; }
.founder__role { margin-top: 14px; font-size: .9375rem; color: var(--gold-ink); font-weight: 500; }
.founder__text .body-copy { margin-top: 32px; }
.founder__text .btns { margin-top: 36px; }
.founder--text { align-items: start; }
.founder__name { grid-column: 1 / span 5; }
.founder--text .founder__text .body-copy { margin-top: 0; }
.founder--text .founder__text .body-copy p:first-child { font-family: var(--serif); font-size: clamp(1.25rem, 1.8vw, 1.5rem); line-height: 1.45; color: var(--ink); }
@media (max-width: 960px) {
  .founder__name { grid-column: 1 / -1; }
  .founder--text .founder__text { margin-top: 28px; }
  .founder__media, .founder__text { grid-column: 1 / -1; }
  .founder__media { aspect-ratio: 16 / 9; }
  .founder__text { margin-top: 44px; }
}

/* ---------- Closing CTA ---------- */
.closing { position: relative; overflow: hidden; }
.closing__grid { align-items: end; }
.closing__text { grid-column: 1 / span 7; }
.closing__text .lede { margin-top: 24px; }
.closing__side { grid-column: 9 / span 4; }
.closing__mail { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.125rem); line-height: 1.2; color: #fff; text-decoration: none; word-break: break-word; margin-top: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--gold); transition: color .25s var(--ease); }
.closing__mail:hover { color: var(--gold-soft); }
.closing__side .btns { margin-top: 28px; }
@media (max-width: 960px) {
  .closing__text, .closing__side { grid-column: 1 / -1; }
  .closing__side { margin-top: 48px; }
}

/* ---------- Page intro (inner pages) ---------- */
.intro { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding-block: clamp(72px, 9vw, 128px) clamp(64px, 8vw, 112px); }
.intro .hero__art { opacity: .35; }
.intro__crumbs { display: flex; gap: 10px; align-items: center; font-size: .8125rem; color: var(--on-navy-muted); margin-bottom: 32px; }
.intro__crumbs a { color: var(--on-navy-muted); text-decoration: none; }
.intro__crumbs a:hover { color: #fff; }
.intro__crumbs span[aria-hidden] { color: var(--gold); }
.intro h1 { max-width: 14em; position: relative; }
.intro .lede { margin-top: 28px; position: relative; }

/* Sub-navigation for company page */
.jump { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; position: relative; }
.jump a { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; border: 1px solid var(--line-navy); color: #fff; text-decoration: none; font-size: .9375rem; transition: border-color .25s var(--ease), background-color .25s var(--ease); }
.jump a:hover { border-color: var(--gold); background: rgba(255,255,255,.04); }

/* ---------- About ---------- */
.thesis { grid-column: 1 / span 10; }
.thesis p.serif { font-size: clamp(1.625rem, 3vw, 2.5rem); line-height: 1.28; letter-spacing: -0.015em; }
.pair { margin-top: clamp(56px, 7vw, 96px); display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--ink); }
.pair > div { padding: 36px 48px 8px 0; }
.pair > div + div { padding: 36px 0 8px 48px; border-left: 1px solid var(--line); }
.pair h3 { margin-top: 14px; }
.pair p:not(.label) { margin-top: 14px; color: var(--muted); }
@media (max-width: 760px) {
  .pair { grid-template-columns: 1fr; }
  .pair > div, .pair > div + div { padding: 28px 0; border-left: 0; }
  .pair > div + div { border-top: 1px solid var(--line); }
  .thesis { grid-column: 1 / -1; }
}
.principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 6vw, 96px); }
.principle { padding: 32px 0 36px; border-top: 1px solid var(--line); }
.principle h3 { font-size: 1.5rem; line-height: 1.25; }
.principle p { margin-top: 12px; color: var(--muted); max-width: 30em; }
@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }
.mark-note { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.mark-note img { width: clamp(140px, 18vw, 220px); }
.mark-note p:not(.label) { color: var(--muted); max-width: 34em; margin-top: 14px; }
@media (max-width: 560px) { .mark-note { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { align-items: start; }
.contact__form { grid-column: 1 / span 7; }
.contact__aside { grid-column: 9 / span 4; }
@media (max-width: 960px) { .contact__form, .contact__aside { grid-column: 1 / -1; } .contact__aside { margin-top: 64px; } }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form { grid-template-columns: 1fr; } }
.field label, .field legend { font-size: .875rem; font-weight: 500; color: var(--navy); }
.req { color: var(--gold-ink); }
.opt { color: var(--muted); font-weight: 400; }
.input { width: 100%; min-height: 54px; padding: 14px 0; background: transparent; border: 0; border-bottom: 1px solid #8E8577; border-radius: 0; font-size: 1.0625rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease); }
.input:hover { border-bottom-color: var(--navy); }
.input:focus { outline: none; border-bottom-color: var(--gold); box-shadow: 0 1px 0 0 var(--gold); }
.input:focus-visible { outline: none; }
textarea.input { min-height: 160px; resize: vertical; line-height: 1.6; }
.input[aria-invalid="true"] { border-bottom-color: #A4262C; box-shadow: 0 1px 0 0 #A4262C; }
.field-error { font-size: .8125rem; color: #A4262C; }
.field-error:empty { display: none; }
fieldset.field { border: 0; padding: 0; margin: 0; min-width: 0; }
fieldset.field legend { padding: 0; margin-bottom: 6px; }
.choices { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice span { display: inline-block; padding: 10px 16px; border: 1px solid #8E8577; font-size: .9375rem; cursor: pointer; transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease); }
.choice span:hover { border-color: var(--navy); }
.choice input:checked + span { background: var(--navy); border-color: var(--navy); color: #fff; }
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; color: var(--muted); }
.check input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--navy); flex: none; }
.check a { color: var(--navy); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; margin-top: 6px; }
.form-note { font-size: .8125rem; color: var(--muted); }
.form-status { grid-column: 1 / -1; padding: 18px 20px; border-left: 2px solid var(--gold); background: var(--ivory); font-size: .9375rem; }
.form-status:empty { display: none; }
.form-status.is-error { border-left-color: #A4262C; }
.btn[disabled] { opacity: .6; cursor: progress; }

.routes { border-top: 1px solid var(--ink); }
.route { padding: 24px 0 26px; border-bottom: 1px solid var(--line); }
.route h3 { font-size: 1.25rem; margin-top: 10px; }
.route p:not(.label) { margin-top: 8px; color: var(--muted); font-size: .9375rem; }
.aside-mail { color: var(--ink); display: inline-block; margin-top: 10px; font-family: var(--serif); font-size: 1.375rem; text-decoration: none; border-bottom: 1px solid var(--gold); }
.aside-mail:hover { color: var(--gold-ink); }
.aside-block + .aside-block { margin-top: 40px; }
.aside-block dd { margin-top: 8px; color: var(--muted); }
.aside-block dd strong { color: var(--ink); font-weight: 500; }

/* ---------- Legal ---------- */
.legal { max-width: 44em; }
.legal h2 { font-size: 1.5rem; margin-top: 48px; }
.legal h2:first-child { margin-top: 0; }
.legal p { margin-top: 14px; color: var(--muted); }
.legal a { color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--on-navy-muted); font-size: .9375rem; }
.footer-top { display: grid; grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2fr)); gap: 40px; padding-block: clamp(64px, 8vw, 104px) clamp(48px, 6vw, 72px); }
.footer-brand img { width: 248px; }
.footer-brand p { margin-top: 28px; max-width: 24em; }
.footer-col h2 { font-family: var(--sans); font-size: .6875rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li + li { margin-top: 12px; }
.footer-col a { color: #fff; text-decoration: none; background-image: linear-gradient(var(--gold), var(--gold)); background-repeat: no-repeat; background-size: 0 1px; background-position: 0 100%; padding-bottom: 3px; transition: background-size .35s var(--ease); }
.footer-col a:hover { background-size: 100% 1px; }
.footer-col small { display: block; color: var(--on-navy-muted); font-size: .8125rem; margin-top: 2px; }
.footer-legal { border-top: 1px solid var(--line-navy); padding-block: 26px 34px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; font-size: .8125rem; }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; margin: 0; padding: 0; }
.footer-legal a { color: var(--on-navy-muted); text-decoration: none; }
.footer-legal a:hover { color: #fff; }
@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand img { width: 240px; } }

/* ---------- 404 ---------- */
.notfound { min-height: 56vh; display: grid; align-content: center; }

@media (max-width: 560px) { .label { letter-spacing: .16em; } }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .site-footer, .btns, form, .hero__art { display: none !important; }
  .hero, .intro, .bg-navy, .bg-deep { background: none !important; color: #000 !important; }
}
