/* ==========================================================================
   INCEPT LEGAL — Attorneys & Consultants
   Design system + site styles.  No frameworks, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — drawn from the iL monogram: oxblood, antique gold, warm paper */
  --maroon:        #6E1D24;
  --maroon-deep:   #47131A;
  --maroon-soft:   #8C3037;
  --gold:          #B08D57;
  --gold-light:    #D9C29B;
  --gold-wash:     #F0E6D6;

  --ink:           #14110F;
  --ink-2:         #433B36;
  --ink-3:         #6E635C;
  --ink-4:         #9C918A;

  --paper:         #FBF9F6;
  --paper-2:       #F4EFE8;
  --paper-3:       #EAE3D9;

  --line:          rgba(20, 17, 15, .13);
  --line-soft:     rgba(20, 17, 15, .07);
  --line-dark:     rgba(217, 194, 155, .20);

  /* Type */
  --display: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Rhythm */
  --gutter:   clamp(1.25rem, 4vw, 3.5rem);
  --shell:    1280px;
  --shell-nar: 780px;
  --sect:     clamp(4.5rem, 9vw, 9rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, 0, .35, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; letter-spacing: -.015em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }

::selection { background: var(--maroon); color: var(--gold-light); }

:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: var(--shell-nar); }
.section { padding-block: var(--sect); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.75rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Split: sticky label column + content column */
.split {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) 8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.split__aside { position: sticky; top: 7.5rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 1.75rem; }
  .split__aside { position: static; }
}

/* --------------------------------------------------------------------------
   4. Type
   -------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--maroon);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--gold::before { background: var(--gold); }

.h-display {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6.6vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 300;
}
.h1 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 300;
}
.h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 300;
}
.h3 {
  font-family: var(--display);
  font-size: clamp(1.28rem, 1.9vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -.018em;
  font-weight: 400;
}
.h4 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.4;
}
.italic-accent { font-style: italic; color: var(--maroon); }

.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -.008em;
}
.body-lg { font-size: 1.06rem; line-height: 1.72; color: var(--ink-2); }
.muted { color: var(--ink-3); }
.small { font-size: .875rem; line-height: 1.6; }
.tiny {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-family: var(--display); font-size: 1.8rem; font-weight: 400; margin-top: 2.4em; letter-spacing: -.02em; }
.prose h3 { font-family: var(--sans); font-size: 1.06rem; font-weight: 600; margin-top: 2em; }
.prose p { color: var(--ink-2); line-height: 1.78; font-size: 1.035rem; }
.prose ul { padding-left: 1.1rem; list-style: none; }
.prose ul li {
  position: relative; padding-left: 1rem; margin-bottom: .55em;
  color: var(--ink-2); line-height: 1.7;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}
.prose blockquote {
  margin: 2.2em 0; padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: var(--display); font-size: 1.35rem; font-style: italic;
  line-height: 1.45; color: var(--maroon); letter-spacing: -.015em;
}
.prose a { color: var(--maroon); text-decoration: underline; text-underline-offset: .18em; text-decoration-thickness: 1px; text-decoration-color: var(--gold); }
.prose a:hover { text-decoration-color: var(--maroon); }

/* --------------------------------------------------------------------------
   5. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--maroon); background: var(--maroon); color: var(--paper);
  border-radius: 2px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); transform: translateY(-1px); }
.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ghost { background: transparent; color: var(--maroon); }
.btn--ghost:hover { background: var(--maroon); color: var(--paper); }
.btn--onDark { background: transparent; border-color: var(--gold); color: var(--gold-light); }
.btn--onDark:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--solidLight { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn--solidLight:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }

/* Understated text link with animated rule */
.tlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--maroon); position: relative; padding-bottom: .35rem;
}
.tlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(1); transform-origin: right;
  transition: transform .45s var(--ease);
}
.tlink:hover::after { transform: scaleX(0); }
.tlink span:last-child { transition: transform .35s var(--ease); }
.tlink:hover span:last-child { transform: translateX(4px); }
.tlink--gold { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; height: 5.25rem;
  transition: height .45s var(--ease);
}
.header.is-stuck {
  background: rgba(251, 249, 246, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.header.is-stuck .header__inner { height: 4.4rem; }
.header.is-hidden { transform: translateY(-100%); }
.header { transition: transform .5s var(--ease), background .45s var(--ease), border-color .45s var(--ease); }

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; flex: none; }
.logo__mark { width: 34px; height: 40px; flex: none; }
.logo__type { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--sans); font-size: .96rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; gap: .34rem;
}
.logo__name b { color: var(--maroon); font-weight: 600; }
.logo__name i { width: 1px; height: .78em; background: var(--ink-4); display: inline-block; }
.logo__tag {
  font-family: var(--display); font-style: italic; font-size: .69rem;
  letter-spacing: .04em; color: var(--ink-3); margin-top: .28rem;
}
@media (max-width: 460px) { .logo__tag { display: none; } }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__link {
  font-size: .84rem; font-weight: 450; letter-spacing: .005em; color: var(--ink-2);
  position: relative; padding-block: .4rem; white-space: nowrap;
  transition: color .28s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--maroon); transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease);
}
.nav__link:hover { color: var(--maroon); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--maroon); }
.nav__link--flag { color: var(--maroon); font-weight: 500; }
.nav__link--flag::before {
  content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-right: .45rem; vertical-align: middle;
}
.header__cta { margin-left: .5rem; padding: .62rem 1.1rem; font-size: .74rem; }

@media (max-width: 1080px) { .nav, .header__cta { display: none; } }

/* Burger */
.burger {
  display: none; background: none; border: 0; padding: .5rem; margin-right: -.5rem;
  width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center;
}
@media (max-width: 1080px) { .burger { display: flex; } }
.burger span {
  display: block; width: 22px; height: 1.5px; background: var(--ink); position: relative;
  transition: background .3s var(--ease);
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), top .3s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 190;
  background: var(--paper); padding: 6.5rem var(--gutter) 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-1.5%);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
  overflow-y: auto;
}
body.menu-open .drawer { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  font-family: var(--display); font-size: clamp(1.7rem, 7vw, 2.3rem); font-weight: 300;
  letter-spacing: -.03em; color: var(--ink); padding: .5rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: .9rem;
}
.drawer__link em {
  font-family: var(--mono); font-style: normal; font-size: .6rem;
  letter-spacing: .16em; color: var(--gold);
}
.drawer__link:hover { color: var(--maroon); }
.drawer__foot { margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: clamp(9rem, 17vh, 12rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(175deg, var(--paper) 0%, var(--paper-2) 62%, var(--paper-3) 100%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.35fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: end;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; align-items: start; } }

.hero__title { max-width: 15ch; }
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span {
  display: block;
  transform: translateY(105%);
  animation: riseIn 1.05s var(--ease) forwards;
}
.hero__title .ln:nth-child(1) > span { animation-delay: .12s; }
.hero__title .ln:nth-child(2) > span { animation-delay: .22s; }
.hero__title .ln:nth-child(3) > span { animation-delay: .32s; }
@keyframes riseIn { to { transform: none; } }

.hero__lede { max-width: 42ch; animation: fadeUp 1s var(--ease) .5s both; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; animation: fadeUp 1s var(--ease) .62s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Decorative monogram watermark */
.hero__mark {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: min(46vw, 560px); opacity: .052; pointer-events: none; color: var(--maroon);
}
@media (max-width: 940px) { .hero__mark { right: -22%; opacity: .04; } }

/* Facts rail under hero */
.factbar {
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 780px) { .factbar { grid-template-columns: repeat(2, 1fr); } }
.fact {
  padding: 1.9rem clamp(1rem, 2.2vw, 2rem) 1.9rem 0;
  border-right: 1px solid var(--line-soft);
}
.factbar .fact:last-child { border-right: 0; }
@media (max-width: 780px) {
  .fact:nth-child(2n) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}
.fact__num {
  font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 300; letter-spacing: -.03em; color: var(--maroon); line-height: 1;
}
.fact__num sup { font-size: .45em; color: var(--gold); top: -.75em; }
.fact__label { margin-top: .55rem; font-size: .82rem; color: var(--ink-3); line-height: 1.45; max-width: 22ch; }

/* --------------------------------------------------------------------------
   8. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.pagehero {
  padding-top: clamp(8.5rem, 15vh, 11rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(170deg, var(--paper) 0%, var(--paper-2) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.pagehero__grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }
@media (max-width: 900px) { .pagehero__grid { grid-template-columns: 1fr; align-items: start; } }
.pagehero--dark {
  background: linear-gradient(160deg, var(--ink) 0%, #1E1614 55%, var(--maroon-deep) 140%);
  border-bottom-color: transparent; color: var(--paper);
}
.pagehero--dark .h1, .pagehero--dark .h-display { color: var(--paper); }
.pagehero--dark .lede { color: rgba(251,249,246,.72); }
.pagehero--dark .crumb, .pagehero--dark .crumb a { color: rgba(251,249,246,.5); }
.pagehero--dark .crumb a:hover { color: var(--gold-light); }

.crumb {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 1.6rem; display: flex; gap: .55rem; flex-wrap: wrap;
}
.crumb a:hover { color: var(--maroon); }
.crumb span { color: var(--gold); }

/* --------------------------------------------------------------------------
   9. Practice index (interactive list)
   -------------------------------------------------------------------------- */
.pindex { border-top: 1px solid var(--line); }
.prow {
  display: grid; grid-template-columns: 4.5rem 1fr auto;
  align-items: center; gap: 1.2rem;
  padding: clamp(1.15rem, 2.2vw, 1.75rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative; transition: color .35s var(--ease);
}
.prow::before {
  /* Bleeds past the row so the hover tint reaches beyond the text column, but
     never further than the page gutter — at phone widths the gutter is 20px and
     a fixed -1.5rem pushed 4px past the viewport, giving the whole page a slight
     horizontal scroll. */
  content: ""; position: absolute; inset: 0 calc(-1 * min(1.5rem, var(--gutter)));
  background: var(--paper-2); opacity: 0; z-index: -1;
  transition: opacity .4s var(--ease);
}
.prow:hover::before { opacity: 1; }
.prow:hover { color: var(--maroon); }
.prow__num { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: var(--gold); }
.prow__name {
  font-family: var(--display); font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 300; letter-spacing: -.025em; line-height: 1.2;
}
.prow__desc { font-size: .86rem; color: var(--ink-3); margin-top: .3rem; max-width: 62ch; line-height: 1.55; }
.prow__go {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; flex: none; color: var(--ink-3);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.prow:hover .prow__go { background: var(--maroon); border-color: var(--maroon); color: var(--paper); transform: translateX(3px); }
@media (max-width: 620px) {
  .prow { grid-template-columns: 2.5rem 1fr; }
  .prow__go { display: none; }
}

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover {
  border-color: rgba(110, 29, 36, .3);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(20, 17, 15, .28);
}
.card__num {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em;
  color: var(--gold); margin-bottom: 1.1rem;
}
.card__title { margin-bottom: .7rem; }
.card__body { font-size: .93rem; color: var(--ink-3); line-height: 1.68; }
.card__foot { margin-top: auto; padding-top: 1.4rem; }

.card--plain { background: transparent; border: 0; padding: 0; }
.card--plain:hover { transform: none; box-shadow: none; }

/* Insight card */
.icard { display: flex; flex-direction: column; height: 100%; }
.icard__meta {
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
}
.icard__tag { color: var(--maroon); }
.icard__date { color: var(--ink-4); }
.icard__title {
  font-family: var(--display); font-size: 1.32rem; font-weight: 400;
  line-height: 1.3; letter-spacing: -.02em; margin-bottom: .7rem;
  transition: color .3s var(--ease);
}
.icard:hover .icard__title { color: var(--maroon); }
.icard__excerpt { font-size: .9rem; color: var(--ink-3); line-height: 1.68; margin-bottom: 1.4rem; }
.icard__foot { margin-top: auto; }

/* Person card */
.person { display: flex; flex-direction: column; }
.person__photo {
  aspect-ratio: 3/4; background: var(--paper-2); border: 1px solid var(--line);
  margin-bottom: 1.1rem; position: relative; overflow: hidden; border-radius: 2px;
  display: grid; place-items: center;
}
.person__initials {
  font-family: var(--display); font-size: 3.2rem; font-weight: 300;
  color: var(--gold); letter-spacing: -.02em;
  transition: transform .55s var(--ease), color .4s var(--ease);
}
.person:hover .person__initials { transform: scale(1.06); color: var(--maroon); }
.person__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 55%, rgba(110,29,36,.06));
}
.person__name { font-family: var(--display); font-size: 1.22rem; font-weight: 400; letter-spacing: -.02em; }
.person__role { font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--maroon); margin-top: .4rem; }
.person__focus { font-size: .85rem; color: var(--ink-3); margin-top: .7rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   11. Dark band
   -------------------------------------------------------------------------- */
.band-dark {
  background: var(--ink); color: var(--paper); position: relative; overflow: hidden;
}
.band-dark::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(110,29,36,.42), transparent 60%),
    radial-gradient(90% 70% at 0% 100%, rgba(176,141,87,.13), transparent 62%);
  pointer-events: none;
}
.band-dark > * { position: relative; }
.band-dark .h1, .band-dark .h2, .band-dark .h3, .band-dark .h-display { color: var(--paper); }
.band-dark .lede, .band-dark .body-lg { color: rgba(251, 249, 246, .74); }
.band-dark .muted { color: rgba(251, 249, 246, .55); }
.band-dark .rule { background: var(--line-dark); }
.band-dark .card {
  background: rgba(255,255,255,.028); border-color: var(--line-dark); color: var(--paper);
}
.band-dark .card:hover { border-color: rgba(217,194,155,.42); box-shadow: none; }
.band-dark .card__body { color: rgba(251,249,246,.62); }
.band-dark .card__num { color: var(--gold); }

/* Grid overlay texture for dark bands */
.band-dark.has-grid::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(217,194,155,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(217,194,155,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 10%, transparent 75%);
}

/* --------------------------------------------------------------------------
   12. DPDP components
   -------------------------------------------------------------------------- */
/* Vertical timeline */
.timeline { position: relative; padding-left: 2.1rem; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: .6rem; bottom: .6rem;
  width: 1px; background: linear-gradient(to bottom, var(--gold), var(--line-dark));
}
.tl-item { position: relative; padding-bottom: 2.4rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -2.1rem; top: .55rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--ink); border: 1.5px solid var(--gold);
}
.tl-item.is-now::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(176,141,87,.18); }
.tl-item__date {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .4rem;
}
.tl-item__title { font-family: var(--display); font-size: 1.2rem; font-weight: 400; letter-spacing: -.02em; margin-bottom: .4rem; }
.tl-item__body { font-size: .9rem; line-height: 1.7; color: rgba(251,249,246,.62); max-width: 56ch; }

/* Step / framework grid */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.4rem;
  padding: 1.7rem 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  color: var(--gold); padding-top: .3rem;
}
.step__t { font-family: var(--display); font-size: 1.3rem; font-weight: 400; letter-spacing: -.02em; margin-bottom: .5rem; }
.step__d { font-size: .93rem; color: var(--ink-3); line-height: 1.7; max-width: 66ch; }
@media (max-width: 560px) { .step { grid-template-columns: 1fr; gap: .4rem; } }

/* Pill / tag list */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .45rem .85rem; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-3); transition: all .3s var(--ease);
}
.pill:hover { border-color: var(--maroon); color: var(--maroon); }
.band-dark .pill { border-color: var(--line-dark); color: rgba(251,249,246,.68); }
.band-dark .pill:hover { border-color: var(--gold); color: var(--gold-light); }

/* Accordion (FAQ) */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 1.35rem 2.5rem 1.35rem 0; position: relative;
  font-family: var(--display); font-size: clamp(1.02rem, 1.6vw, 1.2rem); font-weight: 400;
  letter-spacing: -.015em; line-height: 1.35; color: var(--ink);
  transition: color .3s var(--ease);
}
.acc__btn:hover { color: var(--maroon); }
.acc__btn::after, .acc__btn::before {
  content: ""; position: absolute; right: .35rem; top: 50%;
  background: var(--gold); transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.acc__btn::before { width: 13px; height: 1.5px; transform: translateY(-50%); }
.acc__btn::after  { width: 1.5px; height: 13px; right: .75rem; transform: translateY(-50%); }
.acc__item.is-open .acc__btn::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.acc__panel {
  overflow: hidden; height: 0;
  transition: height .45s var(--ease);
}
.acc__inner { padding: 0 3rem 1.6rem 0; font-size: .95rem; line-height: 1.75; color: var(--ink-3); }
.acc__inner p + p { margin-top: .9em; }

/* Obligation matrix */
.matrix { width: 100%; border-collapse: collapse; font-size: .9rem; }
.matrix th, .matrix td { text-align: left; padding: 1rem 1.2rem 1rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.matrix th {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--maroon); font-weight: 500; border-bottom-color: var(--ink);
}
.matrix td { color: var(--ink-3); line-height: 1.65; }
.matrix td:first-child { color: var(--ink); font-weight: 500; width: 26%; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-scroll .matrix { min-width: 640px; }

/* --------------------------------------------------------------------------
   13. Sector marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding-block: 1.15rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); display: flex; align-items: center; gap: 3rem; white-space: nowrap;
}
.marquee__item::after { content: "◆"; color: var(--gold); font-size: .5rem; }

/* --------------------------------------------------------------------------
   14. Contact / forms
   -------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.field label {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3);
}
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  padding: .8rem .95rem; width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(110,29,36,.09);
}
.field__err { font-size: .78rem; color: var(--maroon); display: none; }
.field.has-err input, .field.has-err textarea, .field.has-err select { border-color: var(--maroon); }
.field.has-err .field__err { display: block; }
.form-note { font-size: .78rem; color: var(--ink-4); line-height: 1.6; margin-top: 1rem; }
.form-status {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 2px; font-size: .88rem;
  background: var(--gold-wash); border: 1px solid var(--gold-light); color: var(--maroon-deep);
  display: none;
}
.form-status.is-shown { display: block; }

.contact-line { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact-line__k {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); width: 8.5rem; flex: none;
}
.contact-line__v { font-size: .97rem; color: var(--ink); line-height: 1.6; }
.contact-line__v a:hover { color: var(--maroon); }
@media (max-width: 520px) { .contact-line { flex-direction: column; gap: .3rem; } .contact-line__k { width: auto; } }

/* --------------------------------------------------------------------------
   15. CTA band
   -------------------------------------------------------------------------- */
.cta {
  background: var(--maroon-deep); color: var(--paper); position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 100% 0%, rgba(176,141,87,.28), transparent 62%);
}
.cta > * { position: relative; }
.cta .h2 { color: var(--paper); }
.cta__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }
@media (max-width: 820px) { .cta__grid { grid-template-columns: 1fr; align-items: start; } }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(251,249,246,.62); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 940px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer .logo__name { color: var(--paper); }
.footer .logo__name b { color: var(--gold-light); }
.footer .logo__tag { color: rgba(251,249,246,.5); }
.footer__h {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__list a { font-size: .89rem; color: rgba(251,249,246,.62); transition: color .3s var(--ease); }
.footer__list a:hover { color: var(--gold-light); }
.footer__addr { font-size: .89rem; line-height: 1.75; }
.footer__addr a:hover { color: var(--gold-light); }
.footer__bar {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: .78rem; color: rgba(251,249,246,.42);
}
.footer__bar a:hover { color: var(--gold-light); }
.footer__bar nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__note {
  margin-top: 1.6rem; font-size: .72rem; line-height: 1.7; color: rgba(251,249,246,.34);
  max-width: 92ch;
}

/* --------------------------------------------------------------------------
   17. Reveal on scroll
   -------------------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .07s; }
.rv-d2 { transition-delay: .14s; }
.rv-d3 { transition-delay: .21s; }
.rv-d4 { transition-delay: .28s; }
.rv-d5 { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   18. Bar Council disclaimer gate
   -------------------------------------------------------------------------- */
html.dc-locked, html.dc-locked body { overflow: hidden !important; }
html.dc-locked .site { filter: blur(7px); pointer-events: none; user-select: none; }

.dc {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(20, 17, 15, .72);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: dcFade .5s var(--ease) both;
  overflow-y: auto;
}
@keyframes dcFade { from { opacity: 0; } to { opacity: 1; } }

.dc__box {
  background: var(--paper); max-width: 720px; width: 100%;
  border-radius: 4px; border-top: 3px solid var(--maroon);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
  animation: dcRise .6s var(--ease) .06s both;
  max-height: min(88vh, 900px); display: flex; flex-direction: column;
}
@keyframes dcRise { from { opacity: 0; transform: translateY(22px) scale(.985); } to { opacity: 1; transform: none; } }

.dc__head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.4rem; flex: none; }
.dc__head svg { width: 30px; height: 36px; flex: none; }
.dc__title {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--maroon);
}
.dc__sub { font-family: var(--display); font-style: italic; font-size: .82rem; color: var(--ink-3); margin-top: .2rem; }

.dc__scroll { overflow-y: auto; flex: 1 1 auto; padding-right: .4rem; }
.dc__scroll p { font-size: .89rem; line-height: 1.72; color: var(--ink-2); }
.dc__scroll strong { color: var(--ink); font-weight: 600; }
.dc__list { list-style: none; margin: .9rem 0 1.1rem; padding: 0; counter-reset: dcl; }
.dc__list li {
  position: relative; padding-left: 1.9rem; margin-bottom: .8rem;
  font-size: .87rem; line-height: 1.7; color: var(--ink-2); counter-increment: dcl;
}
.dc__list li::before {
  content: counter(dcl); position: absolute; left: 0; top: .1rem;
  font-family: var(--mono); font-size: .64rem; color: var(--gold);
  width: 1.25rem; height: 1.25rem; border: 1px solid var(--line);
  border-radius: 50%; display: grid; place-items: center;
}
.dc__actions {
  display: flex; gap: .75rem; flex-wrap: wrap; align-items: center;
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); flex: none;
}
.dc__decline {
  background: none; border: 1px solid var(--line); color: var(--ink-3);
  padding: .85rem 1.5rem; border-radius: 2px;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
  transition: all .3s var(--ease);
}
.dc__decline:hover { border-color: var(--ink-3); color: var(--ink); }
.dc__fine { font-size: .72rem; color: var(--ink-4); margin-left: auto; }
@media (max-width: 520px) { .dc__fine { margin-left: 0; width: 100%; } }

.dc__exit { text-align: center; padding: 1.5rem 0; }
.dc__exit p { font-size: .95rem; color: var(--ink-2); margin-bottom: 1.4rem; }

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mt-4 { margin-top: 3rem; }
.mt-5 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.25rem; }
.maxw-60 { max-width: 60ch; }
.maxw-50 { max-width: 50ch; }
.maxw-44 { max-width: 44ch; }
.center { text-align: center; margin-inline: auto; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: .8rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 300;
  background: var(--maroon); color: var(--paper); padding: .7rem 1.1rem;
  font-size: .8rem; border-radius: 2px; transition: top .3s var(--ease);
}
.skip:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   20. Late additions
   -------------------------------------------------------------------------- */

/* Pills used as filter buttons */
button.pill { background: none; font-family: var(--mono); }
.pill.is-active {
  background: var(--maroon); border-color: var(--maroon); color: var(--paper);
}
.pill.is-active:hover { color: var(--paper); }
.band-dark .pill.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Inline code */
code {
  font-family: var(--mono); font-size: .86em;
  background: var(--paper-3); padding: .12em .4em; border-radius: 2px; color: var(--maroon);
}

/* Checkbox row inside a .field */
.field input[type="checkbox"] {
  width: 1.05rem; height: 1.05rem; accent-color: var(--maroon);
  border-radius: 2px; padding: 0;
}
.field:has(input[type="checkbox"]) { gap: .35rem; }

/* Select control needs its own affordance */
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%236E635C' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 11px;
  padding-right: 2.6rem;
}

/* Featured insight card should not lift like the small ones */
.card.icard { height: 100%; }
a.card { color: inherit; }

/* Table caption reset */
.matrix caption { caption-side: top; }

/* Nested grids inside a .card must not inherit the section gap */
.card .grid { gap: clamp(1.25rem, 2.5vw, 2.25rem); }

/* Long words in narrow prose columns */
.prose, .card__body, .step__d { overflow-wrap: break-word; }

/* Print: strip chrome, keep the words */
@media print {
  .header, .drawer, .burger, .cta, .footer, .dc, .marquee, .skip { display: none !important; }
  html.dc-locked .site { filter: none; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
  .rv { opacity: 1 !important; transform: none !important; }
  a { text-decoration: underline; }
}

/* --------------------------------------------------------------------------
   21. Lawyer profiles
   -------------------------------------------------------------------------- */
.profile {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .profile { grid-template-columns: 1fr; } }

.profile__media { position: sticky; top: 7.5rem; }
@media (max-width: 820px) { .profile__media { position: static; max-width: 260px; } }

/* The ratio lives on the container, not the <img>. An <img> carrying width/height
   attributes gets those as presentational hints; the height hint then defeats
   aspect-ratio on the image itself and the frame stretches. Constraining the box
   and letting the image fill it is immune to that. */
.profile__photo {
  position: relative; aspect-ratio: 3/4; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-2);
}
.profile__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  display: block;
}
/* A whisper of warmth so portraits shot against different backdrops read as
   one set. Kept very light — these are full-resolution files. */
.profile__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(170deg, rgba(176,141,87,.05), rgba(110,29,36,.06));
  mix-blend-mode: multiply;
}
.profile__rule { height: 2px; background: var(--maroon); width: 3rem; margin: 1.4rem 0 1.1rem; }

.creds { list-style: none; margin: 0; padding: 0; }
.creds li { padding: .75rem 0; border-bottom: 1px solid var(--line-soft); }
.creds dt, .creds__k {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-4); display: block; margin-bottom: .25rem;
}
.creds__v { font-size: .92rem; color: var(--ink); line-height: 1.5; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--maroon); background: var(--gold-wash);
  border: 1px solid var(--gold-light); border-radius: 100px;
  padding: .42rem .9rem;
}
.badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--maroon); flex: none;
}

/* Light variant of the DPDP timeline, reused for career history */
.timeline--light::before { background: linear-gradient(to bottom, var(--gold), var(--line)); }
.timeline--light .tl-item::before { background: var(--paper); border-color: var(--gold); }
.timeline--light .tl-item.is-now::before { background: var(--maroon); border-color: var(--maroon); box-shadow: 0 0 0 5px rgba(110,29,36,.12); }
.timeline--light .tl-item__date { color: var(--maroon); }
.timeline--light .tl-item__body { color: var(--ink-3); }

/* Person card with a real photograph */
.person__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .7s var(--ease);
}
.person:hover .person__photo img { transform: scale(1.035); }

/* --------------------------------------------------------------------------
   22. In-page back link (practice detail sections)
   -------------------------------------------------------------------------- */
/* .tlink animates its last child forward; a back link should lead with the
   arrow and move it the other way. */
.tlink--back span:last-child { transition: none; }
.tlink--back span:first-child { transition: transform .35s var(--ease); }
.tlink--back:hover span:first-child { transform: translateX(-4px); }

/* The sticky aside is the one thing on screen the whole time a section is
   being read, so it carries the way back. */
.split__aside .tlink { display: inline-flex; }

/* --------------------------------------------------------------------------
   23. Honeypot
   -------------------------------------------------------------------------- */
/* Removed from the layout and from the accessibility tree, but still a real
   focusable input in the DOM. Bots that fill every field give themselves away;
   people never see it. Not display:none — some bots skip hidden fields. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   24. Contact layout
   -------------------------------------------------------------------------- */
/* Details beside the enquiry form on a wide screen, stacked on a phone. This
   lived in an inline style, which a media query cannot override — the form was
   left in a narrow column on mobile with the fields squeezed. */
.contact-grid {
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* The DPDP practitioner block stacks with the portrait above the text. */
@media (max-width: 820px) {
  .profile[style] { grid-template-columns: 1fr !important; }
  .profile[style] .profile__media { max-width: 220px; }
}

/* --------------------------------------------------------------------------
   25. Header over a dark hero
   -------------------------------------------------------------------------- */
/* The header is fixed and transparent until it sticks, so on pages that open
   on a dark hero it was rendering ink-coloured type on a near-black ground:
   "INCEPT" disappeared entirely and the nav links sat at roughly 2:1 contrast.
   These overrides apply only while the header is still transparent — once it
   sticks it gains the pale background and the normal palette is correct again. */
.header--onDark:not(.is-stuck) .logo__name { color: var(--paper); }
.header--onDark:not(.is-stuck) .logo__name b { color: var(--gold-light); }
.header--onDark:not(.is-stuck) .logo__name i { background: rgba(251, 249, 246, .45); }
.header--onDark:not(.is-stuck) .logo__tag { color: rgba(251, 249, 246, .62); }

.header--onDark:not(.is-stuck) .nav__link { color: rgba(251, 249, 246, .82); }
.header--onDark:not(.is-stuck) .nav__link:hover,
.header--onDark:not(.is-stuck) .nav__link.is-active { color: var(--gold-light); }
.header--onDark:not(.is-stuck) .nav__link::after { background: var(--gold-light); }
.header--onDark:not(.is-stuck) .nav__link--flag { color: var(--gold-light); }

/* The monogram carries hard-coded brand hex values so it reads correctly on
   paper. Lift only the maroon parts; the gold already works on dark. */
.header--onDark:not(.is-stuck) .logo__mark text { fill: var(--gold-light); }
.header--onDark:not(.is-stuck) .logo__mark path[stroke="#6E1D24"] { stroke: var(--gold); stroke-opacity: .45; }

/* A maroon block on a near-black ground is barely a button. */
.header--onDark:not(.is-stuck) .header__cta {
  background: var(--gold-light); border-color: var(--gold-light); color: var(--ink);
}
.header--onDark:not(.is-stuck) .header__cta:hover {
  background: var(--paper); border-color: var(--paper); color: var(--ink);
}

.header--onDark:not(.is-stuck) .burger span,
.header--onDark:not(.is-stuck) .burger span::before,
.header--onDark:not(.is-stuck) .burger span::after { background: var(--paper); }
/* The drawer has its own pale background, so revert once it is open. */
body.menu-open .header--onDark .burger span { background: transparent; }
body.menu-open .header--onDark .burger span::before,
body.menu-open .header--onDark .burger span::after { background: var(--ink); }
