:root {
  --ink: #111820;
  --ink-soft: #4d5963;
  --paper: #f3f0e9;
  --paper-deep: #e4e0d7;
  --white: #fffefa;
  --wine: #48677c;
  --wine-dark: #132536;
  --bronze: #a37b49;
  --line: rgba(17, 24, 32, 0.16);
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 5rem);
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem var(--pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s ease, min-height .25s ease, color .25s ease;
}
.site-header[data-scrolled] {
  min-height: 70px;
  color: var(--ink);
  background: rgba(243, 240, 233, .96);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand { width: clamp(9.75rem, 14vw, 12.5rem); color: inherit; text-decoration: none; }
.brand-logo { width: 100%; height: auto; }
.brand-logo-on-light { display: none; }
.site-header[data-scrolled] .brand-logo-on-dark,
.inner-header .brand-logo-on-dark { display: none; }
.site-header[data-scrolled] .brand-logo-on-light,
.inner-header .brand-logo-on-light { display: block; }
.site-nav ul { display: flex; gap: clamp(.7rem, 1.3vw, 1.6rem); margin: 0; padding: 0; list-style: none; }
.site-nav a, .language-switch { font-size: .76rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -.5rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.language-switch { padding: .5rem 0; border-bottom: 1px solid currentColor; }
.menu-button { display: none; }

.hero {
  min-height: 88svh;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 28%, rgba(72, 103, 124, .22), transparent 32%),
    linear-gradient(120deg, #0a151e 0%, #102231 56%, #172d3c 100%);
  overflow: hidden;
}
.hero-grid {
  width: min(100%, var(--max));
  min-height: 88svh;
  margin: auto;
  padding: clamp(7.5rem, 12vh, 9rem) var(--pad) 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2rem clamp(2rem, 6vw, 7rem);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow, .kicker {
  margin: 0 0 1.5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
[dir="rtl"] .eyebrow, [dir="rtl"] .kicker { letter-spacing: .07em; }
.eyebrow { color: #d9c49f; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.4vw, 8.5rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  text-wrap: balance;
}
[dir="rtl"] .hero h1 { letter-spacing: -.025em; }
.hero-lead { max-width: 680px; margin: 2rem 0 0; font-size: clamp(1.1rem, 1.7vw, 1.45rem); color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.25rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.35rem;
  border: 1px solid currentColor;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--wine-dark); background: var(--white); border-color: var(--white); }
.button-quiet { color: inherit; background: transparent; }
.hero .button-quiet { color: var(--white); border-color: rgba(255,255,255,.42); }
.hero-portrait { position: relative; align-self: stretch; display: flex; align-items: end; justify-content: center; }
.portrait-frame {
  width: min(100%, 660px);
  height: min(62vh, 680px);
  overflow: hidden;
  border-radius: 2px;
  background: #0b1720;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 38px 80px rgba(0,0,0,.3);
}
.portrait-frame picture { display: block; width: 100%; height: 100%; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.portrait-mark { position: absolute; inset-inline-end: -1.6rem; inset-block-end: 2rem; font-family: var(--display); font-size: 9rem; line-height: .7; color: rgba(255,255,255,.08); }
.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 1.35rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.22);
}
.hero-proof li { font-size: .78rem; color: rgba(255,255,255,.7); }
.scroll-cue { position: absolute; inset-block-end: 1rem; inset-inline-start: 50%; }
.scroll-cue span { display: block; width: 1px; height: 40px; background: linear-gradient(transparent, rgba(255,255,255,.5)); }

.section { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.home-page main > .section,
.home-page .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}
.home-page .hero + .section { padding-top: clamp(3rem, 5vw, 4.5rem); }
.section-heading { width: min(100%, var(--max)); margin: 0 auto clamp(3rem, 6vw, 5.5rem); display: grid; grid-template-columns: .6fr 1.35fr 1fr; gap: 2rem 4vw; align-items: start; }
.section-heading .kicker { color: var(--wine); }
.section-heading h2, .roles-copy h2, .contact-inner h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.7vw, 5.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-heading > p:last-child { margin: .3rem 0 0; color: var(--ink-soft); }
.domain-grid { width: min(100%, var(--max)); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.domain-card { min-height: 340px; padding: 2.25rem clamp(1.25rem, 2.5vw, 2.75rem); position: relative; display: flex; flex-direction: column; border-inline-end: 1px solid var(--line); }
.domain-card:last-child { border-inline-end: 0; }
.domain-number { color: var(--wine); font-size: .72rem; font-weight: 700; }
.domain-card h3 { margin: 4rem 0 1rem; font-family: var(--display); font-size: clamp(1.8rem, 2.7vw, 3rem); font-weight: 400; }
.domain-card p { color: var(--ink-soft); }
.text-link { width: fit-content; margin-top: auto; padding-bottom: .2rem; border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 700; text-decoration: none; }

.section-dark { color: var(--white); background: var(--ink); }
.perspective-layout { width: min(100%, var(--max)); margin: auto; display: grid; grid-template-columns: .5fr 1.65fr .8fr; gap: 3rem 5vw; align-items: start; }
.perspective-layout .kicker { color: #c9ad82; }
.perspective-layout blockquote { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 5vw, 5.8rem); line-height: 1.03; }
.perspective-layout > div p { margin-top: .5rem; color: rgba(255,255,255,.67); }
.text-link-light { color: #e2d2b7; }

.research-grid { width: min(100%, var(--max)); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.research-card { min-height: 300px; padding: 2rem; background: var(--white); border: 1px solid rgba(24,23,22,.08); display: flex; flex-direction: column; }
.card-tag { color: var(--wine); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.research-card h3 { margin: auto 0 1rem; font-family: var(--display); font-size: clamp(1.65rem, 2.4vw, 2.65rem); font-weight: 400; line-height: 1.1; }
.research-card h3 a { text-decoration: none; }
.research-card p { margin: 0; color: var(--ink-soft); }
.section-link { display: flex; width: fit-content; max-width: 100%; margin: 2.5rem auto 0; }
.section-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.section-actions .section-link { margin: 0; }

.roles-band { width: min(calc(100% - 2 * var(--pad)), var(--max)); margin: 0 auto clamp(5rem, 10vw, 9rem); padding: 0; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 560px; background: var(--paper-deep); }
.roles-document { margin: clamp(2rem, 4vw, 4rem); padding: clamp(2rem, 4vw, 4rem); position: relative; background: #fff; box-shadow: 0 30px 70px rgba(37,27,22,.12); transform: rotate(-2deg); }
[dir="rtl"] .roles-document { transform: rotate(2deg); }
.document-line { display: block; width: 68%; height: 1px; margin-bottom: 2.2rem; background: rgba(24,23,22,.25); }
.document-line-long { width: 86%; margin-top: 4rem; }
.document-line-short { width: 42%; }
.roles-document strong { position: absolute; inset-inline-end: 2rem; inset-block-end: 1.4rem; font-family: var(--display); font-size: 7rem; color: #6a8292; }
.roles-copy { padding: clamp(3rem, 7vw, 7rem); display: flex; flex-direction: column; justify-content: center; }
.roles-copy .kicker { color: var(--wine); }
.roles-copy p:not(.kicker) { color: var(--ink-soft); max-width: 650px; }
.subdomain-label { margin: 1rem 0; color: var(--wine); font-family: monospace; font-size: .78rem; }

.section-heading.compact { grid-template-columns: .6fr 2.35fr; }
.venture-grid { width: min(100%, var(--max)); margin: auto; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.venture-card { position: relative; min-height: 220px; padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.venture-card:first-child { padding-inline-end: 3rem; border-inline-end: 1px solid var(--line); }
.venture-card:last-child { padding-inline-start: 3rem; }
.venture-card h3 { margin: 0; font-family: var(--display); font-size: 2.3rem; font-weight: 400; }
.venture-card p { max-width: 450px; color: var(--ink-soft); }
.venture-card > span { position: absolute; inset-inline-end: 1rem; inset-block-start: 2.5rem; }

.contact-cta { color: var(--white); background: var(--wine-dark); }
.contact-inner { width: min(100%, 1060px); margin: auto; text-align: center; }
.contact-inner .kicker { color: #d9c49f; }
.contact-inner p:not(.kicker) { max-width: 680px; margin: 1.5rem auto; color: rgba(255,255,255,.75); }
.button-inverse { margin-top: 1rem; color: var(--wine-dark); background: var(--white); border-color: var(--white); }

.site-footer { padding: 4rem var(--pad) 2rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; color: rgba(255,255,255,.72); background: #111; font-size: .75rem; }
.footer-brand strong { color: var(--white); font-family: var(--display); font-size: 1.7rem; font-weight: 400; }
.footer-brand p { max-width: 500px; }
.footer-links { display: flex; gap: 1.5rem; justify-content: flex-end; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.25rem; }
.footer-year { text-align: end; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.25rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal[data-visible] { opacity: 1; transform: none; }

.inner-page { background: var(--white); }
.inner-page .page-body,
.inner-page .site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.inner-header { position: sticky; color: var(--ink); background: rgba(255,254,250,.96); border-color: var(--line); }
.page-hero { padding: clamp(5rem, 9vw, 9rem) var(--pad); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero-inner { width: min(100%, 1180px); margin: auto; }
.page-hero .kicker { color: var(--wine); }
.page-hero h1 { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(3.2rem, 7.5vw, 8rem); font-weight: 400; line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
[dir="rtl"] .page-hero h1 { letter-spacing: -.025em; }
.page-intro { max-width: 820px; margin: 2rem 0 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.6vw, 1.35rem); }
.highlight-grid { width: min(100%, 1180px); margin: -1px auto 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-inline: 1px solid var(--line); }
.highlight { grid-column: span 2; min-height: 180px; padding: 2rem 2.15rem; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.25rem; text-align: center; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.highlight:nth-child(n + 4) { grid-column: span 3; }
.highlight:nth-child(3), .highlight:nth-child(5) { border-inline-end: 0; }
.highlight strong { display: block; max-width: 15ch; margin-inline: auto; color: var(--wine); font-family: var(--display); font-size: clamp(1.75rem, 2.4vw, 2.3rem); font-weight: 400; line-height: 1.08; text-wrap: balance; }
.highlight span { display: block; max-width: 36ch; margin-inline: auto; color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }
.page-body { width: min(100%, 1180px); margin: auto; padding: clamp(4rem, 8vw, 8rem) var(--pad); }
.page-review-metadata { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0 0 4rem; border-block: 1px solid var(--line); }
.page-review-metadata > div { display: grid; align-content: start; gap: .4rem; padding: 1.15rem; border-inline-end: 1px solid var(--line); }
.page-review-metadata > div:last-child { border-inline-end: 0; }
.page-review-metadata strong { font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }
.page-review-metadata span, .page-review-metadata time { color: var(--ink-soft); font-size: .86rem; }
.page-review-metadata .legal-review-pending { color: #6e351f; font-weight: 700; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: clamp(4rem, 8vw, 8rem); border-block: 1px solid var(--line); }
.feature-card { min-height: 280px; padding: 2rem; border-inline-end: 1px solid var(--line); }
.feature-card:last-child { border-inline-end: 0; }
.feature-card h2 { margin: 3rem 0 1rem; font-family: var(--display); font-size: clamp(1.8rem, 2.6vw, 2.8rem); font-weight: 400; line-height: 1.1; }
.feature-card p { color: var(--ink-soft); }
.feature-grid--two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid--two-column .feature-card { min-height: 260px; border-bottom: 1px solid var(--line); }
.feature-grid--two-column .feature-card:nth-child(even) { border-inline-end: 0; }
.feature-grid--two-column .feature-card:nth-last-child(-n + 2) { border-bottom: 0; }
.feature-grid--editorial { grid-template-columns: 1fr; }
.feature-grid--editorial .feature-card { min-height: 0; padding: clamp(2.25rem, 4vw, 3.5rem) 0; display: grid; grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; border-inline-end: 0; border-bottom: 1px solid var(--line); }
.feature-grid--editorial .feature-card:last-child { border-bottom: 0; }
.feature-grid--editorial .feature-card h2 { max-width: 14ch; margin: 0; font-size: clamp(2rem, 3.2vw, 3.4rem); line-height: 1.04; text-wrap: balance; }
.feature-grid--editorial .feature-card p { max-width: 66ch; margin: .2rem 0 0; }
.feature-card-link { display: inline-flex; gap: .55rem; align-items: center; margin-top: 1.5rem; color: var(--wine); font-weight: 700; text-decoration-thickness: .08em; text-underline-offset: .22em; }
.feature-card-link:hover { color: var(--ink); }
.pillar-library { margin: 0 0 clamp(5rem, 9vw, 9rem); padding-top: 4rem; border-top: 2px solid var(--ink); }
.pillar-library-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 2rem 5vw; margin-bottom: 3rem; }
.pillar-library-heading .kicker { color: var(--wine); }
.pillar-library-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(2.3rem, 4.4vw, 4.8rem); font-weight: 400; line-height: 1.05; }
.pillar-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar-card { min-height: 320px; padding: 2rem; display: flex; flex-direction: column; background: var(--white); }
.pillar-card > div { display: flex; justify-content: space-between; gap: 1rem; color: var(--wine); font-family: monospace; font-size: .68rem; }
.pillar-card h3 { margin: 3rem 0 1rem; font-family: var(--display); font-size: clamp(1.7rem, 2.7vw, 2.8rem); font-weight: 400; line-height: 1.08; }
.pillar-card h3 a { text-decoration: none; }
.pillar-card p { color: var(--ink-soft); }
.pillar-card small { margin-top: auto; padding-top: 1.5rem; color: #766f67; border-top: 1px solid var(--line); }
.content-section { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr); gap: 3rem 7vw; padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--line); }
.content-section h2 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.7vw, 4rem); font-weight: 400; line-height: 1.1; }
.content-section-body { min-width: 0; direction: inherit; text-align: start; unicode-bidi: isolate; }
.content-section-body p:first-child { margin-top: 0; }
.content-section-body p, .content-section-body li { color: var(--ink-soft); font-size: 1.02rem; }
.content-section-body ul { margin: 0; padding-inline-start: 1.2rem; }
.content-section-body li { padding: .5rem 0; border-bottom: 1px solid rgba(24,23,22,.08); }
.content-section-intro { color: var(--ink); font-weight: 600; }
.content-subsection { padding-block: 1.4rem; border-top: 1px solid rgba(24,23,22,.08); }
.content-subsection:first-of-type { margin-top: 1.5rem; }
.content-subsection h3 { margin: 0 0 .65rem; font-family: var(--sans); font-size: 1.15rem; line-height: 1.35; }
.content-subsection p { margin-block: 0; }
.content-section-outro { margin-top: 1.5rem; color: var(--ink); font-weight: 600; }
.page-updated { margin: 1.25rem 0 0; color: var(--ink-soft); font-size: .9rem; }
.evidence-note { margin-top: 4rem; padding: 2rem; color: var(--wine-dark); background: #e7edf0; border-inline-start: 4px solid var(--wine); }
.evidence-note p { margin-bottom: 0; }
.page-cta { margin-top: 5rem; padding: 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: var(--white); background: var(--wine-dark); }
.page-cta h2 { margin: 0; font-family: var(--display); font-size: 2.6rem; font-weight: 400; }
.page-cta .button-primary { color: var(--wine); }

.consultation-hero { background: linear-gradient(135deg, var(--paper), #e5ebed); }
.office-location { width: min(100%, 1180px); margin: 0 auto; padding: 0 var(--pad) 5rem; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.5fr); gap: 2rem; }
.office-location h2 { font-family: var(--display); font-weight: 400; font-size: clamp(1.8rem,3vw,2.8rem); }
.office-map { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 320px; padding: 1.5rem; background: #e5ebed; text-align: center; }
.office-map:has(iframe) { padding: 0; }
.office-map iframe { width: 100%; height: 360px; border: 0; }
@media(max-width: 700px) { .office-location { grid-template-columns: 1fr; } }
.consultation-layout { width: min(100%, 1180px); margin: auto; padding: clamp(4rem, 8vw, 8rem) var(--pad); display: grid; grid-template-columns: .55fr 1.45fr; gap: 3rem 6vw; align-items: start; }
.preview-lock { position: sticky; top: 110px; padding: 2rem; color: var(--white); background: var(--ink); }
.preview-lock > span { color: #d9c49f; font-family: monospace; font-size: .72rem; letter-spacing: .15em; }
.preview-lock h2 { margin: 2rem 0 .75rem; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.preview-lock p { margin-bottom: 0; color: rgba(255,255,255,.68); }
.consultation-form fieldset { margin: 0 0 3rem; padding: 0; border: 0; }
.consultation-form legend { width: 100%; margin-bottom: 2rem; padding-bottom: .75rem; font-family: var(--display); font-size: 2.2rem; border-bottom: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.consultation-form label { display: grid; gap: .5rem; }
.consultation-form label > span { font-size: .78rem; font-weight: 700; }
.consultation-form input, .consultation-form select, .consultation-form textarea { width: 100%; min-height: 50px; padding: .8rem; color: var(--ink); background: var(--paper); border: 1px solid rgba(24,23,22,.22); border-radius: 0; font: inherit; }
.consultation-form textarea { resize: vertical; }
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { outline: 3px solid rgba(72,103,124,.2); border-color: var(--wine); }
.consultation-form .full { grid-column: 1 / -1; }
.consent { grid-template-columns: auto 1fr !important; align-items: start; margin-bottom: 2rem; }
.consent input { width: 20px; min-height: 20px; margin-top: .15rem; }
.form-status { padding: 1rem; color: var(--ink-soft); background: var(--paper); border-inline-start: 3px solid var(--bronze); }
.form-help { color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }
.consultation-special-route { width: min(100%, 1180px); margin: clamp(2.5rem, 5vw, 4rem) auto 0; padding: 0 var(--pad) clamp(2.5rem, 5vw, 4rem); display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; border-bottom: 1px solid var(--line); }
.consultation-special-route p { margin: 0; font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 2.15rem); }
.consultation-special-route a { color: var(--wine); font-weight: 700; text-underline-offset: .22em; }

.arbitrator-inquiry-layout { width: min(100%, 1180px); margin: auto; padding: clamp(4rem, 8vw, 8rem) var(--pad); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.arbitrator-side-note { position: sticky; top: 110px; padding: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); background: var(--wine-dark); }
.arbitrator-side-note .kicker { color: #d9c49f; }
.arbitrator-side-note h2 { margin: .8rem 0 1.5rem; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.15rem); font-weight: 400; line-height: 1.08; }
.arbitrator-side-note p:not(.kicker) { color: rgba(255,255,255,.72); }
.arbitrator-side-note p + p { padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.18); }

.paid-consultation-hero { padding-bottom: clamp(4rem, 7vw, 7rem); background: linear-gradient(135deg, var(--paper), #e5ebed); }
.paid-consultation-layout { width: min(100%, 1180px); margin: auto; padding: clamp(4rem, 8vw, 8rem) var(--pad); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.paid-consultation-content { min-width: 0; }
.paid-value { padding: 0 0 clamp(3.5rem, 7vw, 6rem); }
.paid-value h2, .booking-preview h2 { margin: .65rem 0 1.5rem; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 4.4rem); font-weight: 400; line-height: 1.04; text-wrap: balance; }
.paid-value p { max-width: 72ch; color: var(--ink-soft); font-size: 1.04rem; }
.booking-preview { position: sticky; top: 110px; padding: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); background: var(--wine-dark); }
.booking-preview > span { color: #d9c49f; font-family: monospace; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.booking-preview h2 { color: var(--white); font-size: clamp(2rem, 3vw, 3.2rem); }
.booking-preview > p { color: rgba(255,255,255,.72); }
.booking-days { margin: 2rem 0; border-top: 1px solid rgba(255,255,255,.2); }
.booking-day { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.booking-day h3 { margin: 0 0 .8rem; font-size: .82rem; }
.booking-day > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: .45rem; }
.booking-day button { min-height: 42px; padding: .4rem; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.28); font: inherit; font-size: .76rem; cursor: pointer; }
.booking-day button:hover, .booking-day button:focus-visible { color: var(--wine-dark); background: var(--white); outline: 2px solid #d9c49f; outline-offset: 2px; }
.booking-slot-hint { font-size: .8rem; }
.booking-preview-note { margin: 1rem 0 0; font-size: .78rem; }
.booking-checkout-dialog { width: min(calc(100% - 2rem), 760px); max-height: calc(100vh - 2rem); padding: clamp(2rem, 5vw, 3.5rem); overflow-y: auto; color: var(--ink); background: var(--white); border: 0; box-shadow: 0 28px 90px rgba(0,0,0,.3); }
.booking-checkout-dialog::backdrop { background: rgba(6,16,24,.72); backdrop-filter: blur(4px); }
.booking-checkout-dialog .kicker { color: var(--wine); }
.booking-checkout-dialog h2 { margin: .6rem 2.5rem 2rem 0; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 400; line-height: 1; }
[dir="rtl"] .booking-checkout-dialog h2 { margin: .6rem 0 2rem 2.5rem; }
.booking-dialog-close { position: absolute; inset-block-start: 1rem; inset-inline-end: 1rem; width: 44px; height: 44px; color: var(--ink); background: transparent; border: 1px solid var(--line); font-size: 1.5rem; cursor: pointer; }
.booking-order-lines { margin: 0; border-top: 1px solid var(--line); }
.booking-order-lines > div { padding: 1.2rem 0; display: grid; grid-template-columns: minmax(120px, .55fr) minmax(0, 1.45fr); gap: 1rem; border-bottom: 1px solid var(--line); }
.booking-order-lines dt { color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.booking-order-lines dd { margin: 0; font-weight: 700; }
.booking-order-lines small { display: block; margin-top: .35rem; color: var(--ink-soft); font-weight: 400; }
.booking-order-included { margin: 1.4rem 0; padding: 1.2rem; background: var(--paper); }
.booking-order-included p { margin: .35rem 0; color: var(--ink-soft); font-size: .86rem; }
.booking-checkout-form fieldset { min-width: 0; margin: 2rem 0 0; padding: 0; border: 0; }
.booking-checkout-form legend { width: 100%; margin-bottom: 1rem; padding: 0 0 .7rem; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 1.5rem; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form-grid label { display: grid; gap: .45rem; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.booking-form-grid label.full { grid-column: 1 / -1; }
.booking-form-grid input, .booking-form-grid textarea { width: 100%; min-height: 46px; padding: .75rem .8rem; color: var(--ink); background: #fff; border: 1px solid #aeb7bd; border-radius: 0; font: inherit; font-size: .9rem; font-weight: 400; }
.booking-form-grid textarea { min-height: 92px; resize: vertical; }
.booking-form-grid input:focus, .booking-form-grid textarea:focus { outline: 3px solid rgba(72,103,124,.2); border-color: var(--wine); }
.booking-form-grid small { color: var(--ink-soft); font-size: .72rem; font-weight: 400; line-height: 1.5; }
.booking-choice { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; padding: 1rem; background: var(--paper); border: 1px solid var(--line); cursor: pointer; }
.booking-choice + .booking-choice { margin-top: .7rem; }
.booking-choice input, .booking-consent input { width: 20px; min-height: 20px; margin: .1rem 0 0; }
.booking-choice span { display: grid; gap: .35rem; color: var(--ink); font-size: .86rem; line-height: 1.5; }
.booking-choice small { color: var(--ink-soft); font-size: .75rem; }
.booking-choice--nested { margin-inline-start: 2rem; }
.booking-choice--nested[aria-disabled="true"] { opacity: .5; cursor: default; }
.booking-total { margin-top: 1.5rem; padding: 1.1rem 0; display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.booking-total span { color: var(--ink-soft); font-size: .78rem; font-weight: 700; }
.booking-total strong { font-family: var(--display); font-size: 1.45rem; font-weight: 400; }
.booking-order-total-note { color: var(--ink-soft); font-size: .82rem; }
.booking-terms { margin-top: 1.35rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .75rem; line-height: 1.65; }
.booking-terms a { color: var(--wine); text-underline-offset: .2em; }
.booking-consent { margin-top: 1.35rem; padding-top: 1.2rem; display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .78rem; line-height: 1.6; }
.booking-consent a { color: var(--wine); text-underline-offset: .2em; }
.booking-checkout-dialog .button { width: 100%; margin-top: 1.5rem; justify-content: center; color: var(--white); background: var(--wine-dark); border-color: var(--wine-dark); opacity: .72; }

.article-hero { padding: clamp(5rem, 9vw, 9rem) var(--pad); color: var(--white); background: linear-gradient(125deg, #09141d, var(--wine-dark)); }
.article-hero h1 { max-width: 1120px; margin: 2rem auto 0; font-family: var(--display); font-size: clamp(3rem, 6.5vw, 7rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; text-wrap: balance; }
.article-hero > p { max-width: 800px; margin: 2rem auto 0; color: rgba(255,255,255,.72); font-size: 1.15rem; }
.article-meta { max-width: 1120px; margin: auto; display: flex; flex-wrap: wrap; gap: .7rem; }
.article-meta span { padding: .4rem .65rem; color: #d9c49f; border: 1px solid rgba(217,196,159,.36); font-family: monospace; font-size: .65rem; text-transform: uppercase; }
.review-status { max-width: 800px; margin: 2rem auto 0; padding: .8rem 1rem; color: var(--wine-dark); background: #e5ded1; font-size: .76rem; font-weight: 700; }
.article-layout { width: min(100%, 1180px); margin: auto; padding: clamp(4rem, 8vw, 8rem) var(--pad); display: grid; grid-template-columns: .42fr 1.58fr; gap: 4rem 7vw; align-items: start; }
.article-side { position: sticky; top: 110px; padding-inline-end: 2rem; border-inline-end: 1px solid var(--line); }
.article-side .kicker { color: var(--wine); }
.article-side > p:not(.kicker) { color: var(--ink-soft); }
.article-side > div { padding: 1rem 0; display: grid; gap: .25rem; border-top: 1px solid var(--line); }
.article-side strong { font-size: .67rem; letter-spacing: .09em; text-transform: uppercase; }
.article-side span, .article-side time { color: var(--ink-soft); font-size: .82rem; }
.article-side .legal-review-pending { color: #6e351f; font-weight: 700; }
.article-content { max-width: 790px; }
.article-lead { margin: 0 0 3.5rem; padding: 0 0 2rem; border-bottom: 1px solid var(--line); }
.article-lead p { margin-top: 0; color: var(--ink); font-family: var(--display); font-size: clamp(1.3rem, 2.1vw, 1.75rem); line-height: 1.55; }
.article-section { padding: 0 0 3.5rem; margin-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.article-section h2, .article-checklist h2, .article-advice h2, .source-pack h2 { margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 400; line-height: 1.12; }
.article-section p, .article-section li { color: #394550; font-size: 1.04rem; }
.article-section ul, .article-section ol, .article-advice ul { padding-inline-start: 1.4rem; }
.article-section li, .article-advice li { padding: .4rem 0; }
.footnote-ref { font-size: .72em; line-height: 0; vertical-align: super; }
.footnote-ref a, .footnote-back { color: var(--wine-dark); font-weight: 700; text-decoration: none; }
.article-footnotes { margin: 4rem 0; padding-top: 2rem; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .9rem; }
.article-footnotes ol { margin: 0; padding-inline-start: 1.5rem; }
.article-footnotes li { padding: .45rem 0; }
.article-checklist, .article-advice { margin: 4rem 0; padding: 2.5rem; background: var(--paper); }
.article-checklist ol { counter-reset: decision; margin: 0; padding: 0; list-style: none; }
.article-checklist li { counter-increment: decision; display: grid; grid-template-columns: 44px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.article-checklist li::before { content: counter(decision, decimal-leading-zero); color: var(--wine); font-family: monospace; }
.source-pack { margin-top: 5rem; }
.source-pack > ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.source-pack li { display: grid; grid-template-columns: 45px 1fr; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.source-pack li > span { color: var(--wine); font-family: monospace; }
.source-pack a { font-weight: 700; }
.source-pack p { margin: .35rem 0; color: var(--ink-soft); }
.source-pack small { color: #66717a; }
.retained-source-pack { padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.retained-source-pack > p { max-width: 760px; color: var(--ink-soft); }
.retained-source-pack li { grid-template-columns: minmax(0, 1.35fr) minmax(180px, .65fr); }
.retained-source-pack li > span { color: var(--wine); font-family: inherit; font-size: .8rem; font-weight: 700; }
.retained-source-pack li p, .retained-source-pack li small { grid-column: 1 / -1; }
.article-disclaimer { margin-top: 4rem; padding: 1.5rem; color: var(--wine-dark); background: #e7edf0; border-inline-start: 4px solid var(--wine); }
.article-conversion { margin-top: 4rem; }
.article-conversion > div { max-width: 510px; }
.article-conversion p { margin: .8rem 0 0; color: rgba(255,255,255,.76); }
.form-honeypot { position: absolute !important; inset-inline-start: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-fallback { margin-top: 1rem; padding: 1rem; color: var(--wine-dark); background: #e7edf0; border-inline-start: 4px solid var(--wine); }
.form-fallback[hidden] { display: none; }
.form-fallback a { font-weight: 700; text-underline-offset: .18em; }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-button {
    width: 44px; height: 44px; display: grid; place-content: center; gap: 4px; padding: 0; color: inherit; background: transparent; border: 1px solid currentColor;
  }
  .menu-button > span:not(.sr-only) { display: block; width: 18px; height: 1px; background: currentColor; }
  .site-nav { display: none; position: absolute; inset: 100% 0 auto; padding: 1.5rem var(--pad) 2rem; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav[data-open] { display: block; }
  .site-nav ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding-top: 8rem; }
  .hero-copy { padding-top: 1rem; }
  .hero h1 { font-size: clamp(3.8rem, 16vw, 6rem); }
  .hero-portrait { min-height: 390px; }
  .portrait-frame { width: min(100%, 390px); height: 430px; }
  .hero-proof { grid-column: 1; }
  .section-heading, .perspective-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 1rem; }
  .domain-grid, .research-grid { grid-template-columns: 1fr; }
  .domain-card { min-height: 280px; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .domain-card:last-child { border-bottom: 0; }
  .domain-card h3 { margin-top: 2rem; }
  .roles-band { grid-template-columns: 1fr; }
  .roles-document { min-height: 310px; }
  .section-heading.compact { grid-template-columns: 1fr; }
  .highlight-grid { width: auto; grid-template-columns: 1fr 1fr; margin-inline: var(--pad); }
  .highlight, .highlight:nth-child(n + 4) { grid-column: auto; }
  .highlight:nth-child(3) { border-inline-end: 1px solid var(--line); }
  .highlight:nth-child(2n), .highlight:last-child { border-inline-end: 0; }
  .highlight:last-child { grid-column: 1 / -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .pillar-library-heading { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .feature-grid--two-column .feature-card { min-height: auto; border-bottom: 1px solid var(--line); }
  .feature-grid--two-column .feature-card:last-child { border-bottom: 0; }
  .feature-grid--editorial .feature-card { grid-template-columns: 1fr; gap: .85rem; padding: 2rem 0; }
  .feature-grid--editorial .feature-card h2 { max-width: 18ch; }
  .content-section, .consultation-layout, .paid-consultation-layout, .arbitrator-inquiry-layout { grid-template-columns: 1fr; }
  .booking-preview { position: static; }
  .arbitrator-side-note { position: static; }
  .page-review-metadata { grid-template-columns: 1fr 1fr; }
  .page-review-metadata > div:nth-child(2) { border-inline-end: 0; }
  .page-review-metadata > div { border-bottom: 1px solid var(--line); }
  .page-review-metadata > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .retained-source-pack li { grid-template-columns: 1fr; }
  .retained-source-pack li p, .retained-source-pack li small { grid-column: 1; }
  .preview-lock { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; padding: 0 0 2rem; border-inline-end: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .site-header { width: 100%; max-width: 100vw; min-height: 72px; grid-template-columns: minmax(0, 1fr) 44px auto; gap: .75rem; }
  .brand { width: min(8.5rem, 34vw); }
  .language-switch { font-size: .68rem; }
  .site-nav ul { grid-template-columns: 1fr 1fr; }
  .hero-grid { padding-inline: 1.25rem; }
  .hero-proof { grid-template-columns: 1fr; gap: .5rem; }
  .section { padding-inline: 1.25rem; }
  .hero-actions { display: grid; }
  .portrait-frame { height: 360px; }
  .roles-band.section { width: calc(100% - 2.5rem); padding: 0; }
  .roles-band > *, .roles-copy { min-width: 0; }
  .roles-copy { padding: 2rem; }
  .venture-grid { grid-template-columns: 1fr; }
  .venture-card { min-width: 0; }
  .venture-card h3 { overflow-wrap: anywhere; }
  .venture-card:first-child { padding-inline-end: 0; border-inline-end: 0; }
  .venture-card:last-child { padding-inline-start: 0; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 1.25rem; }
  .footer-links { justify-content: flex-start; }
  .footer-year { text-align: start; }
  .highlight-grid { width: auto; grid-template-columns: 1fr; margin-inline: 1.25rem; }
  .highlight, .highlight:nth-child(3), .highlight:nth-child(5), .highlight:last-child { grid-column: auto; min-height: 0; padding: 1.6rem; gap: .8rem; border-inline-end: 0; }
  .highlight strong { max-width: none; font-size: 1.85rem; }
  .highlight span { max-width: none; font-size: .92rem; }
  .page-body { padding-inline: 1.25rem; }
  .page-review-metadata { grid-template-columns: 1fr; }
  .page-review-metadata > div { border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .page-review-metadata > div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .page-review-metadata > div:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .pillar-card-grid { grid-template-columns: 1fr; }
  .consultation-form .full { grid-column: auto; }
  .consultation-special-route { align-items: flex-start; flex-direction: column; }
  .page-cta { align-items: stretch; flex-direction: column; }
  .booking-day > div { grid-template-columns: repeat(2, 1fr); }
  .booking-order-lines > div { grid-template-columns: 1fr; gap: .35rem; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-form-grid label.full { grid-column: auto; }
  .booking-choice--nested { margin-inline-start: 0; }
  .booking-total { align-items: flex-start; flex-direction: column; gap: .4rem; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: .75rem; gap: .5rem; }
  .brand { min-width: 0; width: min(7.5rem, 100%); }
  .language-switch { max-width: 4.5rem; white-space: normal; line-height: 1.2; text-align: center; }
  .hero h1 { font-size: 3.1rem; overflow-wrap: anywhere; }
  .page-hero h1 { font-size: 2.65rem; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
