/* =========================================================================
   Pax33 Consulting International — v1.0 site
   Tokens follow Pax33-Design-System.md §3 (color), §4 (type), §5 (spacing)
   ========================================================================= */

:root {
  /* Tier 1 — Neutrals */
  --p33-carbon:        #2C2C2A;
  --p33-marfil:        #F5F2EC;
  --p33-white:         #FFFFFF;
  --p33-near-white:    #FAFAF8;

  /* Tier 2 — House accent */
  --p33-blue:          #007BB8;

  /* Tier 3 — Article 33 mechanisms */
  --p33-mech-01-negotiation:   #007BB8;
  --p33-mech-02-enquiry:       #7D8A94;
  --p33-mech-03-mediation:     #6B3FA0;
  --p33-mech-04-conciliation:  #DA7757;
  --p33-mech-05-arbitration:   #006039;
  --p33-mech-06-judicial:      #A51C30;
  --p33-mech-07-regional:      #A07060;

  /* Semantic aliases */
  --p33-text:          var(--p33-carbon);
  --p33-text-muted:    rgba(44,44,42,0.66);
  --p33-text-faint:    rgba(44,44,42,0.46);
  --p33-rule:          rgba(44,44,42,0.16);
  --p33-rule-strong:   rgba(44,44,42,0.32);
  --p33-bg-page:       var(--p33-near-white);
  --p33-bg-paper:      var(--p33-marfil);
  --p33-link:          var(--p33-blue);
  --p33-accent:        var(--p33-blue);

  /* Typography stacks */
  --p33-font-serif: 'IBM Plex Serif', 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --p33-font-body:  'Noto Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --p33-font-flex:  'Google Sans Flex', 'Google Sans', 'Albert Sans', system-ui, sans-serif;
  --p33-font-code:  'Google Sans Code', 'JetBrains Mono', 'Google Sans Mono', ui-monospace, monospace;

  /* Spacing scale (8px base) */
  --s-xs:  4px;
  --s-sm:  8px;
  --s-md:  16px;
  --s-lg:  24px;
  --s-xl:  32px;
  --s-2xl: 48px;
  --s-3xl: 64px;
  --s-4xl: 96px;

  /* Container */
  --container-max: 1200px;
  --container-pad: 32px;
}

/* =========================================================================
   Reset
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--p33-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--p33-text);
  background: var(--p33-bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--p33-link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, p, ul { margin: 0; padding: 0; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* =========================================================================
   Container
   ========================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
@media (max-width: 767px) {
  :root { --container-pad: 20px; }
}

/* =========================================================================
   Typographic primitives
   ========================================================================= */
.eyebrow {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p33-text-muted);
}
.eyebrow--blue { color: var(--p33-blue); }
.eyebrow--num { color: var(--p33-carbon); font-weight: 600; }

.serif { font-family: var(--p33-font-serif); font-weight: 300; letter-spacing: -0.01em; }
.serif-semi { font-family: var(--p33-font-serif); font-weight: 600; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--p33-font-serif); font-weight: 300; font-style: italic; }

.flex-sans { font-family: var(--p33-font-flex); font-weight: 400; }
.flex-sans-semi { font-family: var(--p33-font-flex); font-weight: 600; }

.motto {
  font-family: var(--p33-font-code);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 500;
  color: var(--p33-text-muted);
}

/* =========================================================================
   Site header
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid var(--p33-rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-xl);
  height: 80px;
}
.site-header__logo {
  display: block;
  width: 132px; /* §2.2 minimum 120px; sit comfortably above */
  flex: none;
}
.site-header__logo img { width: 100%; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}
.site-nav__link {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p33-text);
  padding-block: 4px;
  position: relative;
}
.site-nav__link:hover {
  color: var(--p33-blue);
  text-decoration: none;
}
.site-nav__link--active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--p33-blue);
}
.site-nav__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: var(--s-md);
  padding-left: var(--s-md);
  border-left: 1px solid var(--p33-rule);
  color: var(--p33-text-muted);
}
.site-nav__lang button {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p33-text-muted);
  padding: 2px 4px;
}
.site-nav__lang button[aria-current="true"] {
  color: var(--p33-text);
}
.site-nav__lang span { color: var(--p33-text-faint); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header__menu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--p33-font-code);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--p33-text);
  }
}
@media (min-width: 901px) {
  .site-header__menu { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  background: var(--p33-bg-paper);
  padding-block: 120px 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--p33-rule);
}
.hero__watermark {
  position: absolute;
  /* Anchored to .hero (section).
     - top: ~48% places watermark center near headline center (which sits ~50%
       due to align-items:end balancing the 120px top / 96px bottom padding).
     - right: -8% bleeds past hero right edge.
     - width capped at 780px. */
  top: 41%;
  right: -8%;
  transform: translateY(-50%);
  width: min(54%, 780px);
  height: auto;
  pointer-events: none;
  z-index: 0;
  color: var(--p33-carbon);
  opacity: 0.07;
}
.hero__watermark path {
  fill: currentColor;
  stroke: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: var(--s-4xl);
  align-items: end;
}
.hero__primary,
.hero__aside {
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-xl);
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; background: var(--p33-blue); border-radius: 50%;
  flex: none;
}
.hero__headline {
  font-family: var(--p33-font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--p33-carbon);
  text-wrap: pretty;
  max-width: 18ch;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--p33-blue);
  font-feature-settings: "ss01";
}
.hero__sub {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.55;
  color: var(--p33-text-muted);
  max-width: 38ch;
  margin-top: var(--s-lg);
}
.hero__aside {
  border-left: 1px solid var(--p33-rule);
  padding-left: var(--s-xl);
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}
.hero__aside-block {
  display: grid;
  gap: 6px;
}
.hero__aside-label {
  font-family: var(--p33-font-code);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-faint);
  font-weight: 500;
}
.hero__aside-value {
  font-family: var(--p33-font-flex);
  font-size: 14px;
  color: var(--p33-text);
  line-height: 1.45;
}
.hero__aside-value strong { font-weight: 600; }

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-2xl);
  padding: 14px 22px 14px 22px;
  background: var(--p33-blue);
  color: var(--p33-marfil);
  font-family: var(--p33-font-flex);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  border-radius: 0;
  transition: background 120ms ease;
}
.hero__cta:hover { background: #00689E; text-decoration: none; }
.hero__cta-arrow { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .hero { padding-block: 64px 56px; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-2xl); }
  .hero__aside { border-left: 0; border-top: 1px solid var(--p33-rule); padding-left: 0; padding-top: var(--s-xl); }
}

/* =========================================================================
   Article 33 frame (the connector line above the practice grid)
   ========================================================================= */
.frame {
  padding-block: var(--s-4xl);
  border-bottom: 1px solid var(--p33-rule);
}
.frame__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: var(--s-4xl);
  align-items: start;
}
.frame__label {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}
.frame__label-rule {
  width: 32px; height: 1px;
  background: var(--p33-blue);
  margin-top: 6px;
}
.frame__body {
  font-family: var(--p33-font-serif);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--p33-carbon);
  text-wrap: pretty;
}
.frame__body em {
  font-style: italic;
  color: var(--p33-blue);
}
@media (max-width: 900px) {
  .frame { padding-block: var(--s-3xl); }
  .frame__inner { grid-template-columns: 1fr; gap: var(--s-lg); }
}

/* =========================================================================
   Practice grid
   ========================================================================= */
.practice {
  padding-block: var(--s-4xl);
  background: var(--p33-bg-page);
}
.practice__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-xl);
  margin-bottom: var(--s-2xl);
  padding-bottom: var(--s-lg);
  border-bottom: 1px solid var(--p33-rule);
}
.practice__title {
  font-family: var(--p33-font-serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--p33-carbon);
  max-width: 22ch;
}
.practice__counter {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-faint);
  white-space: nowrap;
}
.practice__counter strong { color: var(--p33-text); font-weight: 600; }

/* Compressed practice index — homepage 7-line list */
.practice__index {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--p33-rule);
}
.pidx {
  border-bottom: 1px solid var(--p33-rule);
}
.pidx__link {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--s-xl);
  align-items: baseline;
  padding: var(--s-lg) 0;
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.18s ease, background-color 0.18s ease;
}
.pidx__link:hover,
.pidx__link:focus-visible {
  background: var(--p33-bg-paper);
  padding-left: var(--s-md);
  outline: none;
}
.pidx__num {
  font-family: var(--p33-font-code);
  font-size: 14px;
  font-weight: 500;
  color: var(--p33-blue);
  letter-spacing: 0.04em;
}
.pidx__title {
  font-family: var(--p33-font-serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  color: var(--p33-carbon);
  text-wrap: balance;
}
.pidx__arrow {
  font-family: var(--p33-font-flex);
  font-size: 18px;
  color: var(--p33-text-soft);
  transition: transform 0.18s ease, color 0.18s ease;
}
.pidx__link:hover .pidx__arrow,
.pidx__link:focus-visible .pidx__arrow {
  transform: translateX(4px);
  color: var(--p33-blue);
}

.practice__cta-row {
  margin: var(--s-2xl) 0 0;
  display: flex;
  justify-content: flex-end;
}
.practice__cta {
  font-family: var(--p33-font-flex);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--p33-blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.practice__cta:hover { color: var(--p33-carbon); }

@media (max-width: 700px) {
  .pidx__link { grid-template-columns: 56px 1fr; gap: var(--s-md); }
  .pidx__arrow { display: none; }
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--p33-rule);
  border: 1px solid var(--p33-rule);
}
/* Card 07 — Capacity building — spans the trailing column on 3-col,
   eliminating the orphan and giving the practice card matching the
   brief's "peer page" appropriate emphasis. */
.pcard--wide-3 { grid-column: span 2; }
.pcard--wide-2 { grid-column: span 2; }

@media (max-width: 1100px) {
  .practice__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pcard--wide-3 { grid-column: auto; }
  .pcard--wide-2 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .practice__grid { grid-template-columns: 1fr; }
  .pcard--wide-3, .pcard--wide-2 { grid-column: auto; }
}

/* When a card spans wider, give the lead extra room rather than letting it
   look stranded in a half-empty cell. */
.pcard--wide-2 .pcard__lead,
.pcard--wide-3 .pcard__lead {
  max-width: 56ch;
}
.pcard--wide-2 .pcard__title,
.pcard--wide-3 .pcard__title {
  max-width: 32ch;
}

.pcard {
  background: var(--p33-bg-page);
  padding: var(--s-xl) var(--s-xl) var(--s-2xl);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: var(--s-md);
  position: relative;
  min-height: 280px;
  transition: background 160ms ease;
}
.pcard:hover { background: var(--p33-bg-paper); }
.pcard__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-sm);
}
.pcard__num {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--p33-carbon);
}
.pcard__tab {
  width: 24px;
  height: 1px;
  background: var(--p33-carbon);
  opacity: 0.4;
}
.pcard__title {
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--p33-carbon);
  text-wrap: pretty;
}
.pcard__lead {
  font-family: var(--p33-font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--p33-text-muted);
  text-wrap: pretty;
}
.pcard__more {
  font-family: var(--p33-font-code);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-carbon);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-sm);
}
.pcard__more::after {
  content: "→";
  font-family: var(--p33-font-flex);
  letter-spacing: 0;
  transition: transform 160ms ease;
}
.pcard:hover .pcard__more::after { transform: translateX(3px); }
.pcard__more:hover { text-decoration: none; color: var(--p33-blue); }

/* =========================================================================
   About preview band
   ========================================================================= */
.aboutband {
  background: var(--p33-bg-paper);
  padding-block: var(--s-4xl);
  border-top: 1px solid var(--p33-rule);
  border-bottom: 1px solid var(--p33-rule);
}
.aboutband__inner {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: var(--s-4xl);
  align-items: start;
}
.aboutband__label {
  position: sticky;
  top: 100px;
}
.aboutband__body {
  font-family: var(--p33-font-serif);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--p33-carbon);
  max-width: 28ch;
  text-wrap: pretty;
}
.aboutband__body em {
  font-style: italic;
  color: var(--p33-blue);
}
.aboutband__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2xl);
  margin-top: var(--s-2xl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--p33-rule);
}
.aboutband__meta-item { display: grid; gap: 4px; }
.aboutband__meta-label {
  font-family: var(--p33-font-code);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-faint);
  font-weight: 500;
}
.aboutband__meta-value {
  font-family: var(--p33-font-flex);
  font-size: 14px;
  color: var(--p33-carbon);
}
.aboutband__more {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--p33-carbon);
  margin-top: var(--s-2xl);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.aboutband__more::after { content: "→"; font-family: var(--p33-font-flex); letter-spacing: 0; }
.aboutband__more:hover { color: var(--p33-blue); text-decoration: none; }

@media (max-width: 900px) {
  .aboutband__inner { grid-template-columns: 1fr; gap: var(--s-xl); }
  .aboutband__label { position: static; }
}

/* =========================================================================
   Footer (terminal moment — circular seal)
   ========================================================================= */
.site-footer {
  background: var(--p33-carbon);
  color: var(--p33-marfil);
  padding-block: 96px 32px;
}
.footer__seal-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-4xl);
  align-items: center;
  padding-bottom: var(--s-3xl);
  border-bottom: 1px solid rgba(245, 242, 236, 0.16);
}
.footer__seal { width: 156px; height: 156px; }
.footer__seal img { width: 100%; height: 100%; }
.footer__motto-block {
  display: grid;
  gap: var(--s-md);
}
.footer__motto-eyebrow {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
  font-weight: 500;
}
.footer__motto-line {
  font-family: var(--p33-font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--p33-marfil);
  font-variant: small-caps;
  letter-spacing: 0.06em;
}
.footer__motto-gloss {
  font-family: var(--p33-font-flex);
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 242, 236, 0.66);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-2xl);
  padding-block: var(--s-3xl);
  border-bottom: 1px solid rgba(245, 242, 236, 0.16);
}
.footer__col-label {
  font-family: var(--p33-font-code);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.5);
  font-weight: 500;
  margin-bottom: var(--s-md);
}
.footer__col ul { display: grid; gap: 8px; }
.footer__col a {
  font-family: var(--p33-font-flex);
  font-size: 14px;
  color: var(--p33-marfil);
}
.footer__col a:hover { color: var(--p33-blue); text-decoration: none; }

.footer__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-xl);
  padding-top: var(--s-xl);
  font-family: var(--p33-font-code);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.5);
  font-weight: 500;
}
.footer__bar-marks { display: flex; gap: var(--s-xl); flex-wrap: wrap; }
.footer__bar a { color: inherit; }
.footer__bar a:hover { color: var(--p33-marfil); text-decoration: none; }

@media (max-width: 900px) {
  .footer__seal-row { grid-template-columns: 1fr; gap: var(--s-xl); padding-bottom: var(--s-2xl); }
  .footer__seal { width: 112px; height: 112px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); padding-block: var(--s-2xl); }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   Skip link & accessibility
   ========================================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: var(--container-pad);
  top: 8px;
  z-index: 100;
  background: var(--p33-carbon);
  color: var(--p33-marfil);
  padding: 8px 12px;
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================================================================
   Monochrome audit toggle (dev tool — design system §5/§7 fifth question)
   ========================================================================= */
body.is-monochrome .pcard__tab,
body.is-monochrome .hero__cta,
body.is-monochrome .hero__eyebrow .dot,
body.is-monochrome .hero__headline em,
body.is-monochrome .frame__label-rule,
body.is-monochrome .frame__body em,
body.is-monochrome .aboutband__body em {
  background: var(--p33-carbon) !important;
  color: var(--p33-carbon) !important;
}
body.is-monochrome .hero__cta { background: var(--p33-carbon) !important; color: var(--p33-marfil) !important; }
body.is-monochrome .pcard__tab { background: var(--p33-carbon) !important; }
body.is-monochrome img[data-mono-swap] { filter: grayscale(100%) contrast(1.05); }

/* =========================================================================
   PRACTICE PAGE — page hero
   ========================================================================= */
.phero {
  background: var(--p33-bg-paper);
  padding-block: 96px 72px;
  border-bottom: 1px solid var(--p33-rule);
}
.phero__inner {
  max-width: 920px;
}
.phero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-xl);
}
.phero__eyebrow .dot {
  width: 6px; height: 6px; background: var(--p33-blue); border-radius: 50%;
  flex: none;
}
.phero__headline {
  font-family: var(--p33-font-serif);
  font-weight: 300;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--p33-carbon);
  margin: 0 0 var(--s-lg) 0;
  max-width: 22ch;
  text-wrap: balance;
}
.phero__headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--p33-blue);
  font-feature-settings: "ss01";
}
.phero__sub {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.55;
  color: var(--p33-text);
  max-width: 64ch;
  text-wrap: pretty;
  margin: 0;
}
.phero__sub em {
  font-style: italic;
  color: var(--p33-blue);
}

/* =========================================================================
   PRACTICE PAGE — areas list
   ========================================================================= */
.parea {
  padding-block: var(--s-4xl);
  background: var(--p33-bg-page);
}
.parea__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-xl);
  margin-bottom: var(--s-2xl);
  padding-bottom: var(--s-lg);
  border-bottom: 1px solid var(--p33-rule);
}
.parea__counter {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  white-space: nowrap;
}
.parea__counter strong { color: var(--p33-carbon); font-weight: 600; }

.parea__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.parea__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: var(--s-2xl);
  padding-block: var(--s-3xl);
  border-bottom: 1px solid var(--p33-rule);
  align-items: start;
}
.parea__item:last-child { border-bottom: 0; }

.parea__num {
  font-family: var(--p33-font-code);
  font-size: 14px;
  font-weight: 500;
  color: var(--p33-blue);
  letter-spacing: 0.04em;
  padding-top: 10px;
}
.parea__num span {
  display: inline-block;
  padding-right: 14px;
  border-right: 1px solid var(--p33-rule);
}

.parea__body { max-width: 76ch; }

.parea__title {
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--p33-carbon);
  margin: 0 0 var(--s-md) 0;
  text-wrap: balance;
}
.parea__lead {
  font-family: var(--p33-font-flex);
  font-size: 16px;
  line-height: 1.6;
  color: var(--p33-text);
  margin: 0 0 var(--s-lg) 0;
  text-wrap: pretty;
}

.parea__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}
.parea__tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
}
.parea__tags-note {
  font-family: var(--p33-font-flex);
  font-size: 13px;
  font-style: italic;
  color: var(--p33-text-soft);
  text-transform: none;
  letter-spacing: 0;
}
.mtag {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
}
.mtag--01 { background: var(--p33-mech-01-negotiation); }
.mtag--02 { background: var(--p33-mech-02-enquiry); }
.mtag--03 { background: var(--p33-mech-03-mediation); }
.mtag--04 { background: var(--p33-mech-04-conciliation); }
.mtag--05 { background: var(--p33-mech-05-arbitration); }
.mtag--06 { background: var(--p33-mech-06-judicial); }
.mtag--07 { background: var(--p33-mech-07-regional); }

.parea__more-row { margin: 0; }
.parea__more {
  font-family: var(--p33-font-flex);
  font-size: 14px;
  font-weight: 500;
  color: var(--p33-blue);
  text-decoration: none;
}
.parea__more:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .parea__item { grid-template-columns: 1fr; gap: var(--s-md); padding-block: var(--s-2xl); }
  .parea__num { padding-top: 0; }
  .parea__num span { border-right: 0; padding-right: 0; }
}

/* =========================================================================
   ARTICLE 33 MECHANISMS — band on Practice page
   ========================================================================= */
.mech {
  background: var(--p33-bg-paper);
  padding-block: var(--s-4xl);
  border-top: 1px solid var(--p33-rule);
}
.mech__header {
  max-width: 880px;
  margin-bottom: var(--s-3xl);
}
.mech__headline {
  font-family: var(--p33-font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--p33-carbon);
  margin: 14px 0 var(--s-lg) 0;
  max-width: 28ch;
  text-wrap: balance;
}
.mech__sub {
  font-family: var(--p33-font-flex);
  font-size: 16px;
  line-height: 1.6;
  color: var(--p33-text);
  margin: 0;
  max-width: 72ch;
  text-wrap: pretty;
}

.mech__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--p33-rule);
  border: 1px solid var(--p33-rule);
}
.mcard {
  background: var(--p33-bg-paper);
  padding: var(--s-xl) var(--s-xl) var(--s-2xl);
  display: grid;
  gap: var(--s-md);
  align-content: start;
  border-top: 10px solid var(--p33-rule);
}
.mcard--01 { border-top-color: var(--p33-mech-01-negotiation); }
.mcard--02 { border-top-color: var(--p33-mech-02-enquiry); }
.mcard--03 { border-top-color: var(--p33-mech-03-mediation); }
.mcard--04 { border-top-color: var(--p33-mech-04-conciliation); }
.mcard--05 { border-top-color: var(--p33-mech-05-arbitration); }
.mcard--06 { border-top-color: var(--p33-mech-06-judicial); }
.mcard--07 { border-top-color: var(--p33-mech-07-regional); }
.mcard__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.mcard__num {
  font-family: var(--p33-font-code);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--p33-text-soft);
}
.mcard__bar { display: none; }
.mcard--01 .mcard__bar,
.mcard--02 .mcard__bar,
.mcard--03 .mcard__bar,
.mcard--04 .mcard__bar,
.mcard--05 .mcard__bar,
.mcard--06 .mcard__bar,
.mcard--07 .mcard__bar { display: none; }

.mcard__name {
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--p33-carbon);
  letter-spacing: -0.005em;
}
.mcard__body {
  font-family: var(--p33-font-flex);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--p33-text);
  margin: 0;
  text-wrap: pretty;
}
.mcard__role {
  font-family: var(--p33-font-flex);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--p33-text-soft);
  margin: 0;
  padding-top: var(--s-md);
  border-top: 1px solid var(--p33-rule);
  text-wrap: pretty;
}
.mcard__role-label {
  font-weight: 600;
  color: var(--p33-carbon);
}
.mcard--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .mech__grid { grid-template-columns: 1fr; }
  .mcard { padding: var(--s-lg) var(--s-lg) var(--s-xl); }
}

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */

/* Body band — the four paragraphs */
.about-body {
  background: var(--p33-bg-page);
  padding-block: var(--s-4xl);
  border-bottom: 1px solid var(--p33-rule);
}
.about-body__inner {
  max-width: 76ch;
}
.about-body__eyebrow {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: var(--s-xl);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--p33-rule);
}
.about-body__eyebrow strong {
  color: var(--p33-carbon);
  font-weight: 600;
}
.about-body p {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0 0 var(--s-lg);
  text-wrap: pretty;
}
.about-body p:last-child {
  margin-bottom: 0;
}
.about-body p .em-art {
  font-style: italic;
}

/* Founding intent band — paper-toned, motto as paragraph version */
.founding {
  background: var(--p33-bg-paper);
  padding-block: var(--s-4xl);
  border-bottom: 1px solid var(--p33-rule);
}
.founding__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-3xl);
  align-items: start;
}
.founding__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-blue);
  padding-top: 6px;
  border-top: 2px solid var(--p33-blue);
  display: inline-block;
  align-self: start;
}
.founding__body {
  max-width: 64ch;
}
.founding__lead {
  font-family: var(--p33-font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--p33-carbon);
  margin: 0 0 var(--s-xl);
  text-wrap: balance;
}
.founding__body p:not(.founding__lead) {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0 0 var(--s-lg);
}
.founding__motto {
  margin-top: var(--s-2xl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--p33-rule);
}
.founding__motto-line {
  font-family: var(--p33-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--p33-carbon);
  margin: 0 0 8px;
  display: block;
}
.founding__motto-gloss {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  display: block;
}

/* Founder anchor — terminal band, portrait + bio */
.founder {
  background: var(--p33-bg-page);
  padding-block: var(--s-4xl);
}
.founder__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-lg);
  margin-bottom: var(--s-2xl);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--p33-rule);
}
.founder__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
}
.founder__counter {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
}
.founder__counter strong { color: var(--p33-carbon); font-weight: 600; }

.founder__inner {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: var(--s-3xl);
  align-items: start;
}
.founder__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--p33-bg-paper);
  border: 1px solid var(--p33-rule);
  overflow: hidden;
}
.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.02);
}
.founder__portrait-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: rgba(28, 28, 28, 0.78);
  color: var(--p33-marfil);
  font-family: var(--p33-font-code);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder__body {
  max-width: 72ch;
}
.founder__name {
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--p33-carbon);
  margin: 0 0 6px;
}
.founder__name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.founder__name a:hover,
.founder__name a:focus-visible {
  border-bottom-color: var(--p33-blue);
}
.founder__role {
  font-family: var(--p33-font-flex);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--p33-text-soft);
  margin: 0 0 var(--s-lg);
}
.founder__body p {
  font-family: var(--p33-font-flex);
  font-size: 16px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0 0 var(--s-md);
  text-wrap: pretty;
}
.founder__body p:last-of-type { margin-bottom: var(--s-lg); }

.founder__credentials {
  list-style: none;
  margin: var(--s-lg) 0 0;
  padding: var(--s-md) 0 0;
  border-top: 1px solid var(--p33-rule);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px var(--s-xl);
}
.founder__credentials li {
  font-family: var(--p33-font-flex);
  font-size: 13px;
  line-height: 1.5;
  color: var(--p33-text);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.founder__credentials li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--p33-blue);
  border-radius: 50%;
  transform: translateY(-2px);
}
.founder__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-lg);
  font-family: var(--p33-font-flex);
  font-size: 14px;
  font-weight: 500;
  color: var(--p33-blue);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.founder__linkedin:hover { color: var(--p33-carbon); }

@media (max-width: 900px) {
  .founding__inner { grid-template-columns: 1fr; gap: var(--s-lg); }
  .founder__inner { grid-template-columns: 1fr; gap: var(--s-xl); }
  .founder__portrait { max-width: 360px; }
  .founder__credentials { grid-template-columns: 1fr; }
}

/* =========================================================================
   CAPACITY BUILDING PAGE
   ========================================================================= */
.cap-lead {
  background: var(--p33-bg-paper);
  padding-block: var(--s-3xl);
  border-bottom: 1px solid var(--p33-rule);
}
.cap-lead__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-3xl);
  align-items: start;
}
.cap-lead__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-blue);
  padding-top: 6px;
  border-top: 2px solid var(--p33-blue);
  display: inline-block;
  align-self: start;
}
.cap-lead__body {
  max-width: 64ch;
}
.cap-lead__body p {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0;
  text-wrap: pretty;
}

/* Institutional offering — 2-up grid */
.cap-inst {
  background: var(--p33-bg-page);
  padding-block: var(--s-4xl);
}
.cap-inst__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-lg);
  margin-bottom: var(--s-2xl);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--p33-rule);
}
.cap-inst__counter {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  white-space: nowrap;
}
.cap-inst__counter strong { color: var(--p33-carbon); font-weight: 600; }

.cap-inst__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--p33-rule);
  border-bottom: 1px solid var(--p33-rule);
}
.cap-inst__item {
  padding: var(--s-2xl) var(--s-xl) var(--s-2xl) 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-md);
  align-items: start;
}
.cap-inst__item + .cap-inst__item {
  padding-left: var(--s-xl);
  border-left: 1px solid var(--p33-rule);
}
.cap-inst__num {
  font-family: var(--p33-font-code);
  font-size: 14px;
  font-weight: 500;
  color: var(--p33-blue);
  letter-spacing: 0.04em;
  padding-top: 8px;
}
.cap-inst__title {
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.25;
  color: var(--p33-carbon);
  margin: 0 0 var(--s-md);
  text-wrap: balance;
}
.cap-inst__body p {
  font-family: var(--p33-font-flex);
  font-size: 16px;
  line-height: 1.65;
  color: var(--p33-text);
  margin: 0;
  text-wrap: pretty;
}

/* Career counselling — personal aside */
.cap-personal {
  background: var(--p33-bg-paper);
  padding-block: var(--s-3xl) var(--s-4xl);
  border-top: 1px solid var(--p33-rule);
}
.cap-personal__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: var(--s-2xl);
  align-items: start;
  max-width: 1100px;
}
.cap-personal__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  padding-top: 6px;
  border-top: 1px solid var(--p33-text-soft);
  display: inline-block;
  align-self: start;
}
.cap-personal__body {
  max-width: 60ch;
}
.cap-personal__title {
  font-family: var(--p33-font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.3;
  color: var(--p33-carbon);
  margin: 0 0 var(--s-md);
  text-wrap: balance;
}
.cap-personal__body p {
  font-family: var(--p33-font-flex);
  font-size: 16px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0;
  text-wrap: pretty;
}
.cap-personal__signoff {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  white-space: nowrap;
  align-self: end;
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .cap-lead__inner { grid-template-columns: 1fr; gap: var(--s-lg); }
  .cap-inst__grid { grid-template-columns: 1fr; }
  .cap-inst__item + .cap-inst__item { border-left: 0; border-top: 1px solid var(--p33-rule); padding-left: 0; padding-top: var(--s-2xl); }
  .cap-inst__item { padding-right: 0; }
  .cap-personal__inner { grid-template-columns: 1fr; }
}

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */
.contact-body {
  background: var(--p33-bg-page);
  padding-block: var(--s-3xl) var(--s-2xl);
  border-bottom: 1px solid var(--p33-rule);
}
.contact-body__inner {
  max-width: 70ch;
}
.contact-body p {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0 0 var(--s-md);
  text-wrap: pretty;
}
.contact-body p:last-child { margin-bottom: 0; }

/* Contact panel — letterhead block */
.contact-panel-band {
  background: var(--p33-bg-paper);
  padding-block: var(--s-3xl);
  border-bottom: 1px solid var(--p33-rule);
}
.contact-panel-band__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-lg);
  max-width: 880px;
  margin: 0 auto var(--s-xl);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--p33-rule);
}
.contact-panel-band__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
}
.contact-panel-band__counter {
  font-family: var(--p33-font-code);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
}
.contact-panel-band__counter strong { color: var(--p33-carbon); font-weight: 600; }

.contact-panel {
  max-width: 880px;
  margin: 0 auto;
  background: var(--p33-marfil);
  border: 1px solid var(--p33-rule);
  border-top: 3px solid var(--p33-blue);
}
.contact-panel__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-xl);
  padding: var(--s-lg) var(--s-xl);
  align-items: baseline;
}
.contact-panel__row + .contact-panel__row {
  border-top: 1px solid var(--p33-rule);
}
.contact-panel__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  align-self: start;
  padding-top: 6px;
}
.contact-panel__value {
  font-family: var(--p33-font-flex);
  font-size: 17px;
  line-height: 1.45;
  color: var(--p33-carbon);
}
.contact-panel__value a {
  color: var(--p33-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact-panel__value a:hover,
.contact-panel__value a:focus-visible {
  border-bottom-color: var(--p33-blue);
}
.contact-panel__name {
  display: block;
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--p33-carbon);
  margin-bottom: 4px;
}
.contact-panel__role {
  display: block;
  font-family: var(--p33-font-flex);
  font-size: 14px;
  color: var(--p33-text-soft);
  margin-bottom: 6px;
}
.contact-panel__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: baseline;
}
.contact-panel__city {
  font-family: var(--p33-font-serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--p33-carbon);
  letter-spacing: 0.01em;
  padding-right: var(--s-md);
}
.contact-panel__city + .contact-panel__city {
  padding-left: var(--s-md);
  border-left: 1px solid var(--p33-rule);
}
.contact-panel__city-note {
  font-family: var(--p33-font-flex);
  font-size: 13px;
  color: var(--p33-text-soft);
  margin-top: 4px;
}

/* Confidentiality note */
.contact-confidentiality {
  background: var(--p33-bg-page);
  padding-block: var(--s-3xl) var(--s-4xl);
}
.contact-confidentiality__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-3xl);
  align-items: start;
}
.contact-confidentiality__label {
  font-family: var(--p33-font-code);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p33-text-soft);
  padding-top: 6px;
  border-top: 1px solid var(--p33-text-soft);
  display: inline-block;
  align-self: start;
}
.contact-confidentiality__body {
  max-width: 64ch;
}
.contact-confidentiality__body p {
  font-family: var(--p33-font-flex);
  font-size: 15px;
  line-height: 1.7;
  color: var(--p33-text);
  margin: 0;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .contact-panel__row { grid-template-columns: 1fr; gap: 4px; }
  .contact-confidentiality__inner { grid-template-columns: 1fr; gap: var(--s-lg); }
}

/* Monochrome audit extensions */
body.is-monochrome .phero__eyebrow .dot,
body.is-monochrome .parea__num,
body.is-monochrome .parea__more,
body.is-monochrome .phero__headline em,
body.is-monochrome .founding__label,
body.is-monochrome .cap-lead__label,
body.is-monochrome .cap-inst__num,
body.is-monochrome .founder__credentials li::before,
body.is-monochrome .founder__linkedin {
  color: var(--p33-carbon) !important;
  background: transparent !important;
  border-color: var(--p33-carbon) !important;
}
body.is-monochrome .founder__credentials li::before {
  background: var(--p33-carbon) !important;
}
body.is-monochrome .mtag,
body.is-monochrome .mcard__bar {
  background: var(--p33-carbon) !important;
}
