/* Solis Legacy Holdings. styles.css. v4 dark/brass FULL. 2026-04-26. */

:root {
  --ink:       #0F0B07;
  --ink-2:     #1A130B;
  --ink-3:     #241A10;
  --rule:      #3A2D1C;
  --cream:     #F2E8D4;
  --cream-2:   #C9BFA8;
  --brass:     #A98A4F;
  --copper:    #C58E50;
  --copper-2:  #8E5F2E;

  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-h1:      clamp(2.5rem, 6.2vw, 5.5rem);
  --fs-h2:      clamp(1.875rem, 4vw, 3rem);
  --fs-h3:      1.375rem;
  --fs-eyebrow: 0.75rem;
  --fs-lede:    clamp(1.0625rem, 1.4vw, 1.3125rem);
  --fs-body:    1rem;
  --fs-small:   0.8125rem;

  --container-max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(3.5rem, 6vw, 5.5rem);

  /* Outer-frame inset. Used by the site-frame border AND by every
     full-bleed copper rule, so nothing extends past the frame. */
  --frame-inset: clamp(8px, 1.2vw, 18px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ----------------------------------------------------------
   Reveal-on-scroll. Sections fade and translate in as they
   enter the viewport. JS toggles .is-visible.
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 800ms cubic-bezier(0.22, 0.68, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 0.68, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02";
}

img, svg { max-width: 100%; height: auto; display: block; }
::selection { background: var(--copper); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--copper); color: var(--ink);
  padding: 0.75rem 1rem; text-decoration: none;
  z-index: 1000; font-weight: 500;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%; max-width: var(--container-max);
  margin: 0 auto; padding: 0 var(--gutter);
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 11, 7, 0.96);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  transition: background 220ms ease;
}
.site-header::after {
  content: "";
  position: absolute;
  left: var(--frame-inset);
  right: var(--frame-inset);
  bottom: 0;
  height: 1px;
  background: var(--rule);
  pointer-events: none;
}
.site-header.is-scrolled { background: rgba(15, 11, 7, 0.98); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--cream); text-decoration: none;
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: 0.005em; font-size: 1.0625rem;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 0; display: inline-block;
  background-color: var(--ink);
  background-image: url("favicon.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(15, 11, 7, 0.6),
    0 0 24px rgba(197, 142, 80, 0.18);
}
.brand-wordmark {
  display: inline-grid;
  grid-template-columns: max-content;
  gap: 0.2rem;
  line-height: 1;
  margin-left: 0.25rem;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
  font-size: clamp(1rem, 3.4vw, 1.1875rem);
  letter-spacing: 0.005em;
  color: var(--cream);
  white-space: nowrap;
  text-align: center;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--copper);
  white-space: nowrap;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(197, 142, 80, 0.35);
  margin-top: 0.2rem;
  text-align: center;
}
.brand-name { white-space: nowrap; }
.brand:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; border-radius: 4px; }

/* Nav */
.primary-nav { display: none; }
.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2.25rem; align-items: center;
}
.primary-nav a {
  color: var(--cream-2); text-decoration: none;
  font-size: 0.875rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.5rem 0; position: relative;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: color 160ms ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a.is-active { color: var(--copper); }
.primary-nav a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.25rem; height: 1px;
  background: var(--copper); transform: scaleX(0);
  transform-origin: left center; transition: transform 220ms ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav a:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; border-radius: 2px; }
.nav-cta {
  border: none;
  padding: 0.25rem 0 !important;
  margin-left: 0;
  color: var(--copper) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  background: transparent !important;
  border-radius: 0;
}
/* Replace the underline-on-hover scaleX pseudo with a sliding
   arrow. Cleaner read on a copper-on-ink primary-action link. */
.nav-cta::after {
  content: "\2192" !important;
  display: inline-block !important;
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  transform: translateX(0);
  transition: transform 220ms cubic-bezier(0.22, 0.68, 0.36, 1),
              color 160ms ease;
  font-weight: 500;
}
.nav-cta:hover,
.nav-cta:focus-visible,
.nav-cta.is-active {
  background: transparent !important;
  color: var(--copper) !important;
  border-color: transparent !important;
}
.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.nav-cta.is-active::after {
  transform: translateX(4px) !important;
}

/* Mobile menu */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center;
  gap: 5px; background: transparent;
  border: 1px solid var(--rule); border-radius: 1px;
  padding: 0; width: 44px; height: 44px;
  cursor: pointer; align-items: center;
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
.nav-toggle-bar {
  display: block; width: 20px; height: 1px;
  background: var(--cream);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-3px) rotate(-45deg); }

@media (min-width: 880px) {
  .primary-nav { display: block; }
  .nav-toggle { display: none; }
}

@media (max-width: 879px) {
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15, 11, 7, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
    overflow: hidden; max-height: 0;
    transition: max-height 280ms ease;
  }
  .primary-nav.is-open { max-height: 30rem; display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; padding: 0.75rem var(--gutter) 1.75rem; align-items: stretch; }
  .primary-nav a { padding: 0.875rem 0; font-size: 0.9375rem; min-height: 44px; }
  .nav-cta { margin: 0.75rem 0 0; text-align: center; justify-content: center; }
}

/* Sections */
.section { padding: var(--section-pad) 0; position: relative; }
.section-band { background: var(--ink-2); }

/* Hero */
.section-hero {
  padding: 6rem 0 4rem;
  position: relative; overflow: hidden;
  min-height: 90vh; display: grid; align-items: center;
}
@media (min-width: 720px) { .section-hero { padding: 9rem 0 6rem; min-height: 92vh; } }
.section-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 75% 30%, rgba(197, 142, 80, 0.10), transparent 70%);
  pointer-events: none;
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 600ms ease; pointer-events: none;
}
.hero-photo.is-set, .hero-photo[style*="background-image"] { opacity: 0.32; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,7,0.55) 0%, rgba(15,11,7,0.92) 78%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 2;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.4fr 1fr; gap: 5rem; } }
.hero-seal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
}
/* Radiant halo behind the seal. Always softly pulsing; intensifies on hover. */
.hero-seal-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%) scale(1);
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(197, 142, 80, 0.45) 0%,
    rgba(197, 142, 80, 0.22) 28%,
    rgba(197, 142, 80, 0.08) 52%,
    rgba(197, 142, 80, 0) 75%
  );
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
  animation: seal-halo-pulse 8s ease-in-out infinite;
  transition:
    opacity 600ms cubic-bezier(0.22, 0.68, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 0.68, 0.36, 1),
    filter 600ms cubic-bezier(0.22, 0.68, 0.36, 1);
  will-change: opacity, transform;
}
.hero-seal-wrap:hover::before,
.hero-seal-wrap:focus-within::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.18);
  filter: blur(40px);
}
@media (max-width: 719px) {
  /* On narrow phones, give the hero seal room to breathe so its
     box-shadow halo isn't clipped at the section boundary. */
  .section-hero { overflow: visible; }
  .hero-seal-wrap { padding: 1.5rem 0 2.5rem; }
  .hero-seal {
    box-shadow:
      0 0 0 1px rgba(15, 11, 7, 0.8),
      0 0 0 6px rgba(26, 19, 11, 0.9),
      0 0 0 7px rgba(197, 142, 80, 0.4),
      0 18px 48px rgba(0, 0, 0, 0.6),
      0 0 60px rgba(197, 142, 80, 0.18) !important;
  }
}
.hero-seal {
  position: relative;
  z-index: 1;
  width: clamp(220px, 38vw, 420px);
  height: clamp(220px, 38vw, 420px);
  max-width: calc(100vw - 4rem);
  max-height: calc(100vw - 4rem);
  margin: 0 auto;
  background-color: #E8DCC4; border-radius: 50%; padding: 0;
  border: 2px solid rgba(197, 142, 80, 0.55);
  box-shadow:
    0 0 0 1px rgba(15, 11, 7, 0.8),
    0 0 0 8px rgba(26, 19, 11, 0.9),
    0 0 0 9px rgba(197, 142, 80, 0.4),
    0 30px 90px rgba(0, 0, 0, 0.7),
    0 0 120px rgba(197, 142, 80, 0.22);
  object-fit: cover; object-position: center;
  animation: seal-breathe 12s ease-in-out infinite;
  transition: transform 600ms cubic-bezier(0.22, 0.68, 0.36, 1),
              box-shadow 600ms cubic-bezier(0.22, 0.68, 0.36, 1);
}
.hero-seal-wrap:hover .hero-seal {
  transform: scale(1.025) rotate(-0.4deg);
  box-shadow:
    0 0 0 1px rgba(15, 11, 7, 0.8),
    0 0 0 8px rgba(26, 19, 11, 0.9),
    0 0 0 10px rgba(197, 142, 80, 0.7),
    0 36px 110px rgba(0, 0, 0, 0.78),
    0 0 160px rgba(197, 142, 80, 0.45);
}
@keyframes seal-breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(15,11,7,0.8), 0 0 0 8px rgba(26,19,11,0.9), 0 0 0 9px rgba(197,142,80,0.4), 0 30px 90px rgba(0,0,0,0.7), 0 0 100px rgba(197,142,80,0.18); }
  50%      { box-shadow: 0 0 0 1px rgba(15,11,7,0.8), 0 0 0 8px rgba(26,19,11,0.9), 0 0 0 9px rgba(197,142,80,0.55), 0 30px 90px rgba(0,0,0,0.7), 0 0 140px rgba(197,142,80,0.32); }
}
@keyframes seal-halo-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.85; transform: translate(-50%, -50%) scale(1.05); }
}

/* Typography */
.display {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  line-height: 1.05; letter-spacing: -0.015em;
  margin: 0; color: var(--cream);
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  color: var(--copper);
}
h1.display { font-size: var(--fs-h1); margin: 1rem 0 1.5rem; }
h2.display { font-size: var(--fs-h2); margin: 0.75rem 0 1.25rem; max-width: 22ch; line-height: 1.08; }
h3.display { font-size: var(--fs-h3); margin: 0 0 0.625rem; line-height: 1.25; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow); text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--copper);
  margin: 0 0 1rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.875rem;
}
.eyebrow .rule { display: inline-block; width: 2.5rem; height: 1px; background: var(--brass); }

.lede {
  font-size: var(--fs-lede); line-height: 1.55;
  color: var(--cream-2); max-width: 56ch; margin: 0 0 2rem;
}
.lede-narrow { max-width: 50ch; margin-bottom: 3.5rem; }

.prose p { margin: 0 0 1.25rem; max-width: 60ch; color: var(--cream-2); }
.prose p:last-child { margin-bottom: 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 2.25rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.875rem 1.75rem;
  font-family: var(--sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border-radius: 1px;
  border: 1px solid transparent; cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
.btn-copper { background: var(--copper); color: var(--ink); border-color: var(--copper); }
.btn-copper:hover { background: var(--copper-2); border-color: var(--copper-2); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--brass); }
.btn-ghost:hover { background: rgba(197, 142, 80, 0.08); border-color: var(--copper); color: var(--copper); }
.arrow { display: inline-block; margin-left: 0.5rem; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Two-column layouts */
.two-col { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 880px) {
  .two-col-overview      { grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: center; }
  .two-col-counterparties{ grid-template-columns: 1.2fr 1fr; gap: 5rem; }
  .two-col-inquiry       { grid-template-columns: 1.4fr 1fr; gap: 5rem; }
}

/* Entity record (legacy shell) */
.record {
  background: var(--ink-3); border: 1px solid var(--rule);
  padding: 2.25rem; position: relative;
}
.record::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--copper); border-left: 1px solid var(--copper);
}
.record::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 1px solid var(--copper); border-right: 1px solid var(--copper);
}

/* ----------------------------------------------------------
   Certificate of Record. Premium, document-style entity card
   with stamped header, three grouped sub-sections, and a
   dated footer rule.
   ---------------------------------------------------------- */
.record.record-cert {
  padding: clamp(1.5rem, 2.2vw, 2rem) clamp(1.5rem, 2.4vw, 2.25rem) clamp(1.25rem, 2vw, 1.75rem);
}
.record-cert-stamp {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 0 0 1rem;
}
.record-cert-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.55) 50%,
    rgba(197, 142, 80, 0) 100%
  );
}
.record-cert-eyebrow {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper);
  white-space: nowrap;
}
.record-cert-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: clamp(1.625rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 0.375rem;
  text-align: center;
}
.record-cert-meta {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin: 0 0 1.125rem;
  text-align: center;
  opacity: 0.85;
}
.record-cert-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.45) 20%,
    rgba(197, 142, 80, 0.45) 80%,
    rgba(197, 142, 80, 0) 100%
  );
  margin: 0 0 1.125rem;
}
.record-cert-group + .record-cert-group { margin-top: 1rem; }
.record-cert-group-heading {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.75rem;
}
.record-cert-group-heading::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(2.5rem, 4vw, 3.5rem);
  height: 1px;
  margin-left: 0.5rem;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0.6) 0%,
    rgba(197, 142, 80, 0.45) 50%,
    rgba(197, 142, 80, 0) 100%
  );
}
.record-cert-group-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.25rem;
  padding: 0 0.4375rem;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--copper);
  border: 1px solid rgba(197, 142, 80, 0.55);
  border-radius: 1px;
  text-transform: uppercase;
  line-height: 1;
}
.record-cert-rows {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
.record-cert-rows > div {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: 0.875rem;
  align-items: baseline;
  padding: 0;
}
.record-cert-rows dt {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.78;
  line-height: 1.4;
  padding-top: 0.125rem;
}
.record-cert-rows dd {
  margin: 0;
  font-family: var(--sans);
  color: var(--cream);
  font-size: 0.9375rem;
  line-height: 1.55;
}
/* Inline explainer note inside a record dd. Reads as a quiet
   parenthetical underneath the headline value. */
.record-cert-note {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--cream-2);
  opacity: 0.78;
}

/* Counterparty kit download note. Sits beneath the CTA row,
   describes what's in the file. Selector specificity is bumped
   so it beats the generic .prose p rule. */
.prose p.counterparty-kit-note,
.counterparty-kit-note {
  margin: 0.875rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--cream-2);
  opacity: 0.78;
  max-width: 48ch;
}

/* "Currently building" panel inside the Inquiry section.
   Tells lenders and brokers what relationships the entity is
   actively seeking. Sits as a sub-aside under the prose, before
   the inquiry steps. */
.inquiry-seeking {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--ink-3);
  border: 1px solid var(--rule);
  position: relative;
}
.inquiry-seeking::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
}
.inquiry-seeking::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 18px; height: 18px;
  border-bottom: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
}
.inquiry-seeking-eyebrow {
  margin: 0 0 0.875rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
}
.inquiry-seeking-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.inquiry-seeking-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.625rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--cream);
}
.inquiry-seeking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.125rem;
  width: 0.75rem;
  height: 1px;
  background: var(--copper);
}
.inquiry-seeking-note {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--cream-2);
  opacity: 0.85;
  font-style: italic;
}
.record-cert-rows dd a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 142, 80, 0.55);
  padding-bottom: 1px;
  font-weight: 500;
  transition: color 160ms ease, border-bottom-color 160ms ease;
}
.record-cert-rows dd a:hover,
.record-cert-rows dd a:focus-visible {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.record-cert-rows dd a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}
.record-cert-foot {
  margin: 1.25rem 0 0;
}
.record-cert-foot-rule {
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.45) 30%,
    rgba(197, 142, 80, 0.45) 70%,
    rgba(197, 142, 80, 0) 100%
  );
  margin: 0 0 0.75rem;
}
.record-cert-foot p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.7;
  text-align: center;
}

/* Stack label/value on narrower viewports for legibility */
@media (max-width: 540px) {
  .record-cert-rows > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Mandate cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.card {
  background: var(--ink-3); border: 1px solid var(--rule);
  padding: 2.5rem 2rem; position: relative;
  transition: border-color 280ms ease, transform 280ms ease;
}
.card:hover { border-color: var(--copper); transform: translateY(-2px); }
.card .seal-num {
  display: block; font-family: var(--serif);
  font-weight: 500; font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
  font-size: 2.75rem; color: var(--copper);
  line-height: 1; margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(197, 142, 80, 0.25);
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(197, 142, 80, 0.35);
  position: relative;
}
.card .seal-num::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 1.75rem; height: 2px;
  background: var(--copper);
}
.card h3 { margin-bottom: 0.875rem; }
.card p { margin: 0; color: var(--cream-2); font-size: 0.9375rem; line-height: 1.7; }

/* Image bands (full-bleed photos between sections) */
.image-band {
  position: relative;
  height: clamp(280px, 38vh, 460px);
  background-color: var(--ink-2);
  border: 6px solid var(--copper);
  margin: 0 var(--gutter);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(15, 11, 7, 0.85),
    0 22px 56px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(197, 142, 80, 0.12);
}
/* Inner gallery rule, drawn above the transformed image. */
.image-band::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--copper);
  pointer-events: none;
  z-index: 5;
}
.image-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,7,0.4) 0%, rgba(15,11,7,0.55) 100%);
  z-index: 1; pointer-events: none;
}
.image-band-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}

/* Counterparties section feature image. Native 4:3 aspect,
   centered as a feature frame above the prose + package columns
   so the still-life (parchment ledger, leather portfolio with
   the SLH monogram, oxblood ledger book) reads in full. */
.image-band-counterparties {
  height: auto;
  aspect-ratio: 4 / 3;
  width: 100%;
  max-width: 920px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}
.image-band-counterparties::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--copper);
  pointer-events: none;
  z-index: 5;
}
.image-band-counterparties .image-band-img {
  object-position: center;
}

/* Counterparty package list */
.package {
  background: var(--ink-3); border: 1px solid var(--rule);
  padding: 2.25rem; position: relative;
}
.package::before {
  content: ""; position: absolute; top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--copper); border-left: 1px solid var(--copper);
}
.package::after {
  content: ""; position: absolute; bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 1px solid var(--copper); border-right: 1px solid var(--copper);
}
.package-heading {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 60;
  font-size: var(--fs-h3); color: var(--cream);
  margin: 0 0 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}
.package-list { list-style: none; margin: 0; padding: 0; }
.package-list li {
  position: relative; padding: 0.75rem 0 0.75rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  color: var(--cream); font-size: 0.9375rem;
}
.package-list li:last-child { border-bottom: none; }
.package-list li::before {
  content: ""; position: absolute;
  left: 0; top: 1.25rem;
  width: 0.875rem; height: 1px; background: var(--copper);
}

/* Inquiry channel */
.channel {
  background: var(--ink-3); border: 1px solid var(--rule);
  padding: 2.25rem;
}
.channel-heading {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 60;
  font-size: var(--fs-h3); color: var(--cream);
  margin: 0 0 1rem;
}
.channel-note { margin: 0; color: var(--cream-2); }

/* Closing band */
.section-closing {
  text-align: center; background: var(--ink-2);
  position: relative; overflow: hidden;
}
.section-closing::before {
  content: ""; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px; background: var(--copper); z-index: 2;
}
.section-closing::after {
  content: ""; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px; background: var(--copper); z-index: 2;
}
.section-closing.has-linen {
  background-image: url("linen.webp");
  background-size: cover; background-position: center;
  background-color: var(--ink-2); background-blend-mode: multiply;
}
.section-closing.has-linen > .container { position: relative; z-index: 1; }
.section-closing.has-linen .container::before {
  content: ""; position: absolute; inset: -100px -50vw;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, transparent 0%, rgba(15, 11, 7, 0.7) 100%),
    linear-gradient(180deg, rgba(15, 11, 7, 0.55), rgba(26, 19, 11, 0.7));
  pointer-events: none; z-index: -1;
}
.section-closing .display { margin: 0 auto 1.25rem; max-width: 24ch; }
.section-closing .lede { margin: 0 auto 2.25rem; }
.text-center { text-align: center; }

/* Sub Sole tagline */
.sub-sole {
  font-family: var(--serif); font-style: italic;
  font-variation-settings: "opsz" 60;
  color: var(--copper); font-size: 0.9375rem;
  letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 0.625rem;
  margin-top: 1.5rem;
}
.sub-sole::before, .sub-sole::after {
  content: ""; display: inline-block;
  width: 1.25rem; height: 1px; background: var(--brass);
}

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
  color: var(--cream-2);
  position: relative;
}
/* Footer top rule. Tapered copper gradient that fades to nothing
   at both edges, with a soft halo behind it so it dissolves into
   the page rather than hitting like a hard horizontal stripe
   directly below the closing seal. */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--frame-inset);
  right: var(--frame-inset);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.35) 22%,
    rgba(197, 142, 80, 0.7) 50%,
    rgba(197, 142, 80, 0.35) 78%,
    rgba(197, 142, 80, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.site-footer::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 18%;
  right: 18%;
  height: 16px;
  background: radial-gradient(
    ellipse at center,
    rgba(197, 142, 80, 0.16) 0%,
    rgba(197, 142, 80, 0.06) 45%,
    rgba(197, 142, 80, 0) 80%
  );
  filter: blur(5px);
  pointer-events: none;
  z-index: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1.25rem;
  text-align: left;
  width: fit-content;
}
/* Center the SLH mark horizontally above the wordmark while leaving
   the rest of the brand block left-justified to the column edge. */
.footer-brand .footer-brand-mark {
  align-self: center;
}
.site-footer .footer-brand .footer-brand-name { margin: 0.625rem 0 0 !important; }
.site-footer .footer-brand .sub-sole { margin: 0.25rem 0 0 !important; justify-content: flex-start; }
.footer-brand-mark {
  width: 56px; height: 56px;
  border-radius: 0;
  background-color: var(--ink);
  background-image: url("favicon.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(15, 11, 7, 0.6),
    0 0 32px rgba(197, 142, 80, 0.2);
  transition:
    transform 500ms cubic-bezier(0.22, 0.68, 0.36, 1),
    box-shadow 500ms cubic-bezier(0.22, 0.68, 0.36, 1);
}
.footer-brand:hover .footer-brand-mark,
.footer-brand:focus-within .footer-brand-mark {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(197, 142, 80, 0.45),
    0 0 56px rgba(197, 142, 80, 0.45);
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--cream);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  margin: 0;
  line-height: 1.15;
}
.footer-brand .sub-sole {
  margin: 0.375rem 0 0 !important;
  display: inline-flex;
  justify-content: center;
}
.footer-heading {
  font-family: var(--sans); font-weight: 600;
  font-size: var(--fs-small); color: var(--copper);
  margin: 0 0 1rem;
  text-transform: uppercase; letter-spacing: 0.22em;
}
.site-footer p { margin: 0 0 0.75rem; max-width: 36ch; color: var(--cream-2); font-size: 0.9375rem; line-height: 1.6; }
.site-footer .address { color: var(--cream-2); font-size: 0.9375rem; line-height: 1.7; }
.footer-contact {
  margin: 0.875rem 0 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(197, 142, 80, 0.22);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cream-2);
}
.footer-contact a {
  color: var(--cream-2);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  transition: color 160ms ease;
}
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--copper);
}
.footer-contact a:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-list a {
  color: var(--cream-2); text-decoration: none;
  font-size: var(--fs-small); display: inline-block;
  padding: 0.25rem 0; min-height: 28px;
  transition: color 160ms ease;
}
.footer-list a:hover, .footer-list a:focus-visible { color: var(--copper); }
.footer-list a:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; border-radius: 1px; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 0.875rem; padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-small); color: var(--cream-2);
}

[id] { scroll-margin-top: 6rem; }

.prose a {
  color: var(--cream); text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 1px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.prose a:hover, .prose a:focus-visible { color: var(--copper); text-decoration-color: var(--copper); }
.prose a:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; border-radius: 1px; }

/* Legal pages */
.legal-page main { padding: 7rem 0 5rem; }
.legal-page h1.display { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1rem; }
.legal-page h2 {
  font-family: var(--serif); font-weight: 500;
  font-variation-settings: "opsz" 60;
  font-size: 1.375rem; color: var(--cream);
  margin-top: 2.5rem; margin-bottom: 0.75rem;
}
.legal-page p { max-width: 68ch; margin: 0 0 1rem; color: var(--cream-2); }
.legal-page .meta { color: var(--brass); font-size: var(--fs-small); margin-bottom: 2.5rem; text-transform: uppercase; letter-spacing: 0.12em; }
.legal-page main .container { max-width: 800px; }

/* 404 */
.notfound-main { padding: 9rem 0 6rem; text-align: center; }
.notfound-main h1 { margin-bottom: 0.875rem; }
.notfound-main p { max-width: 50ch; margin: 0 auto 2rem; color: var(--cream-2); }

/* ----------------------------------------------------------
   Image-band accent treatments — frames, motion, captions
   Layered on top of the base .image-band rules above.
   ---------------------------------------------------------- */
.image-band { isolation: isolate; }
.image-band-tall { height: clamp(380px, 56vw, 620px); }

/* Ken Burns slow drift on the photo. Disabled when reduced motion is set. */
.image-band-img {
  transform: scale(1.04);
  animation: slh-ken-burns 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes slh-ken-burns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.13) translate3d(-1.6%, -0.9%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .image-band-img { animation: none; transform: scale(1); }
}

/* Per-band slight variation so adjacent photos don't move in lockstep */
.image-band[data-band="library"] .image-band-img { animation-direction: alternate-reverse; animation-duration: 36s; }
.image-band[data-band="hall"]    .image-band-img { animation-duration: 40s; }
.image-band[data-band="desk"]    .image-band-img { animation-direction: alternate-reverse; animation-duration: 30s; }

/* Replace the flat dark gradient with a richer cinematic stack:
   warm radial vignette + slightly heavier top/bottom shadows. */
.image-band::after {
  background:
    linear-gradient(180deg,
      rgba(15, 11, 7, 0.55) 0%,
      rgba(15, 11, 7, 0.10) 22%,
      rgba(15, 11, 7, 0.10) 78%,
      rgba(15, 11, 7, 0.78) 100%),
    radial-gradient(ellipse 110% 80% at 50% 50%,
      transparent 55%,
      rgba(15, 11, 7, 0.55) 100%);
}

/* Inner corner-brackets removed in v8.
   The thick 6px copper border on .image-band now carries the framing. */
.image-band > .image-band-frame { display: none; }

/* Museum-label caption */
.image-band-caption {
  position: absolute;
  left:  clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 0.875rem;
  padding: 0.625rem 1rem 0.625rem 0.9375rem;
  background: rgba(15, 11, 7, 0.55);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(197, 142, 80, 0.30);
  border-left: 2px solid var(--copper);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.image-band-num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1.0625rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--copper);
  line-height: 1;
}
.image-band-label { color: var(--cream); }
@media (max-width: 720px) {
  .image-band-caption { font-size: 0.6875rem; gap: 0.625rem; padding: 0.5rem 0.875rem; letter-spacing: 0.18em; }
  .image-band-num { font-size: 1rem; }
}

/* ==========================================================
   v5: Premium polish — caption frame, stability strip,
   ornamental section dividers. Lender-facing accent layer.
   ========================================================== */

/* Caption — uppercase Roman with drop shadow + true double frame.
   We use a single border + outline pair so the two copper lines
   are each crisp (1.5–2px) with a clear gap between them, instead
   of CSS `double` which collapses to 1px-1px-1px at thin widths. */
.image-band-caption {
  border: 2px solid var(--copper);
  outline: 2px solid var(--copper);
  outline-offset: 5px;
  padding: 0.875rem 1.25rem 0.875rem 1.125rem;
  background: rgba(15, 11, 7, 0.78);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.65),
    0 0 0 5px rgba(15, 11, 7, 0.7),
    0 0 32px rgba(197, 142, 80, 0.22);
  margin: 8px;
}
.image-band-num {
  /* uppercase Roman numerals with a drop shadow that reads on photo */
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--copper);
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.85),
    0 2px 8px rgba(0, 0, 0, 0.7),
    0 0 18px rgba(197, 142, 80, 0.35);
  padding-right: 0.625rem;
  border-right: 1px solid rgba(197, 142, 80, 0.45);
}
.image-band-label {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.24em;
}
@media (max-width: 720px) {
  .image-band-caption { padding: 0.625rem 1rem 0.625rem 0.875rem; }
  .image-band-num { font-size: 1.0625rem; padding-right: 0.5rem; }
}

/* ----------------------------------------------------------
   Stability strip — slim lender-facing band of standing facts.
   ---------------------------------------------------------- */
.stability-strip {
  position: relative;
  background:
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(2rem, 3.5vw, 3rem);
  overflow: hidden;
}
.stability-strip::before,
.stability-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 30vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper) 50%, transparent);
  opacity: 0.7;
}
.stability-strip::before { top: 0; }
.stability-strip::after  { bottom: 0; }

.stability-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 1.75rem;
  color: var(--copper);
}
.stability-divider::before,
.stability-divider::after {
  content: "";
  display: block;
  height: 1px;
  width: clamp(48px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, rgba(197, 142, 80, 0.6));
}
.stability-divider::after {
  background: linear-gradient(90deg, rgba(197, 142, 80, 0.6), transparent);
}
.stability-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 0.8125rem;
  letter-spacing: 0.32em;
  color: var(--copper);
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--copper);
  border-radius: 1px;
  background: rgba(15, 11, 7, 0.5);
}

.stability-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  text-align: center;
}
@media (min-width: 720px) {
  .stability-row { grid-template-columns: repeat(5, 1fr); gap: 0; }
  .stability-item + .stability-item {
    border-left: 1px solid var(--rule);
  }
}
.stability-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
}
.stability-eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--copper);
  opacity: 0.9;
}
.stability-value {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--cream);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ----------------------------------------------------------
   Ornamental section divider — the SLH "sun" between sections.
   Two parallel copper rules + sun medallion. Visible, not subtle.
   ---------------------------------------------------------- */
.section-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(2rem, 3.5vw, 3rem) var(--gutter);
  background: var(--ink);
  color: var(--copper);
  isolation: isolate;
}
.section-divider-band { background: var(--ink); }

/* Closing divider before the footer needs extra breathing room so
   the medallion sits visually centered between the Inquiry block
   above and the footer top rule below. Use margin-bottom (not
   padding-bottom) so the divider's internal rules stay centered
   on the medallion. */
main > .section-divider:last-child {
  margin-bottom: clamp(4rem, 7.5vw, 6rem);
}

/* Per-divider vertical fine-tuning so each medallion sits visually
   centered between the visible content above and below it. Uses
   margin (not padding) to preserve medallion + rule alignment. */
.section-hero + .section-divider {
  margin-top: -4.5rem;
}
.section-mandate + .section-divider {
  margin-top: 2.25rem;
}
.section-record-coda + .section-divider {
  margin-top: 1rem;
}

/* Two stacked horizontal rules running across the divider behind the medallion.
   left/right inset matches the outer site-frame so they never cross it. */
.section-divider::before,
.section-divider::after {
  content: "";
  position: absolute;
  left: var(--frame-inset);
  right: var(--frame-inset);
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(197, 142, 80, 0.0) 8%,
    rgba(197, 142, 80, 0.55) 30%,
    var(--copper) 50%,
    rgba(197, 142, 80, 0.55) 70%,
    rgba(197, 142, 80, 0.0) 92%,
    transparent 100%);
}
.section-divider::before { top: calc(50% - 5px); }
.section-divider::after  { top: calc(50% + 4px); }

.section-divider-rule {
  flex: 1 1 auto;
  max-width: clamp(180px, 34vw, 380px);
  height: 0;
  visibility: hidden;
}

.section-divider-mark {
  width: clamp(34px, 4.6vw, 48px);
  height: clamp(34px, 4.6vw, 48px);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  background: var(--ink);
  padding: 6px;
  border-radius: 50%;
  filter:
    drop-shadow(0 2px 0 rgba(0,0,0,0.4))
    drop-shadow(0 8px 22px rgba(197, 142, 80, 0.45));
  transition:
    transform 700ms cubic-bezier(0.22, 0.68, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 0.68, 0.36, 1);
}
.section-divider:hover .section-divider-mark,
.section-divider:focus-within .section-divider-mark {
  transform: rotate(45deg) scale(1.08);
  filter:
    drop-shadow(0 2px 0 rgba(0,0,0,0.4))
    drop-shadow(0 10px 28px rgba(197, 142, 80, 0.7))
    drop-shadow(0 0 36px rgba(197, 142, 80, 0.45));
}

/* ==========================================================
   v6 — Premium polish: outer site frame, mandate cards with
   inline photo, pull quote, drop caps, section markers.
   ========================================================== */

/* Outer site frame — vertical copper hairlines only.
   No top or bottom edge so nothing cuts the scroll. */
.site-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  border: none;
}
.site-frame::before,
.site-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(197, 142, 80, 0.18) 6%,
    rgba(197, 142, 80, 0.32) 50%,
    rgba(197, 142, 80, 0.18) 94%,
    transparent 100%
  );
}
.site-frame::before { left: var(--frame-inset); }
.site-frame::after  { right: var(--frame-inset); }
.site-frame > .site-frame-corner { display: none; }
@media (max-width: 720px) {
  .site-frame { display: none; }
}

/* Subtle eyebrow section marker (§ I., § II., …) */
.eyebrow .eyebrow-mark {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 60;
  font-size: 1.0625rem;
  color: var(--copper);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 0.25rem;
  line-height: 1;
  transform: translateY(0.05em);
  display: inline-block;
}

/* ----------------------------------------------------------
   Mandate cards — vertical with photo inset at the bottom.
   ---------------------------------------------------------- */
.cards-mandate {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.card-mandate {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--ink-3);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: border-color 320ms ease, transform 320ms ease, box-shadow 320ms ease;
  isolation: isolate;
}
/* Copper corner brackets on each mandate card */
.card-mandate::before,
.card-mandate::after {
  content: "";
  position: absolute;
  width: 28px; height: 28px;
  z-index: 3;
  pointer-events: none;
  transition: border-color 320ms ease;
}
.card-mandate::before {
  top: -1px; left: -1px;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
}
.card-mandate::after {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
}
.card-mandate:hover {
  border-color: var(--copper);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 40px rgba(197, 142, 80, 0.12);
}
.card-mandate:hover .card-photo img { transform: scale(1.06); }

.card-mandate-body {
  padding: clamp(1.75rem, 2.5vw, 2.5rem) clamp(1.75rem, 2.5vw, 2.5rem) clamp(1.5rem, 2.25vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  position: relative;
}
.card-mandate-body .seal-num {
  margin-bottom: 1.25rem;
}
.card-mandate-body h3 { margin-bottom: 0.875rem; }
.card-mandate-body p { margin: 0 0 1rem; color: var(--cream-2); font-size: 0.9375rem; line-height: 1.7; }
.card-mandate-body p:last-child { margin-bottom: 0; }

.card-mandate-body .card-mandate-tag {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.85;
  border-top: 1px solid rgba(197, 142, 80, 0.22);
}

.card-photo {
  position: relative;
  margin: 0;
  height: clamp(180px, 22vw, 260px);
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(197, 142, 80, 0.35);
}
.card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 1200ms ease;
  filter: saturate(1.05) contrast(1.04);
}
.card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(15,11,7,0.45) 0%,
      rgba(15,11,7,0.05) 30%,
      rgba(15,11,7,0.05) 70%,
      rgba(15,11,7,0.55) 100%),
    radial-gradient(ellipse 110% 90% at 50% 50%,
      transparent 60%,
      rgba(15, 11, 7, 0.45) 100%);
}
.card-photo::after {
  /* tiny copper hairline frame inset 8px on photo */
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(197, 142, 80, 0.4);
  box-shadow:
    inset 16px 16px 0 -15px var(--copper),
    inset -16px 16px 0 -15px var(--copper),
    inset 16px -16px 0 -15px var(--copper),
    inset -16px -16px 0 -15px var(--copper);
}

/* ----------------------------------------------------------
   Pull quote — Sub Sole charter excerpt. Designer accent.
   ---------------------------------------------------------- */
.section-quote {
  background: var(--ink);
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}
.section-quote::before,
.section-quote::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 30vw, 320px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper) 50%, transparent);
  opacity: 0.55;
}
.section-quote::before { top: 0; }
.section-quote::after  { bottom: 0; }

.pull-quote {
  margin: 0 auto;
  max-width: 56rem;
  padding: 0 var(--gutter);
  text-align: center;
  color: var(--cream);
  position: relative;
}
.pull-quote-mark {
  width: clamp(38px, 4.6vw, 52px);
  height: clamp(38px, 4.6vw, 52px);
  color: var(--copper);
  display: block;
  margin: 0 auto clamp(1.25rem, 2.5vw, 2rem);
  filter: drop-shadow(0 6px 18px rgba(197, 142, 80, 0.45));
}
.pull-quote-text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.3;
  color: var(--cream);
  margin: 0 auto;
  max-width: 36ch;
  letter-spacing: -0.005em;
}
.pull-quote-text em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
}
.pull-quote-attr {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--copper);
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.pull-quote-attr::before,
.pull-quote-attr::after {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1px;
  background: var(--copper);
  opacity: 0.6;
}

/* ----------------------------------------------------------
   Drop cap on the overview lede — magazine touch.
   ---------------------------------------------------------- */
.section-band#overview .prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  float: left;
  font-size: 3.5rem;
  line-height: 0.9;
  padding: 0.25rem 0.75rem 0 0;
  color: var(--copper);
}

/* Hero corner watermark removed in v8 — was visual noise. */

/* ==========================================================
   v7 — Editorial mandate layout (Article I / II / III).
   Alternating photo + text rows, oversized chapter numerals,
   thin charter rules. Plain-talk pull quote.
   ========================================================== */

.section-mandate {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.mandate-header {
  max-width: 60rem;
  margin: 0 0 clamp(3rem, 6vw, 5.5rem);
}
.mandate-header h2 { max-width: 18ch; }

.mandate-articles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 6rem);
}
.mandate-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
}
.mandate-article + .mandate-article {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--rule);
}

@media (min-width: 880px) {
  .mandate-article { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
  .mandate-article[data-orientation="right"] .mandate-photo { order: 2; }
  .mandate-article[data-orientation="right"] .mandate-text  { order: 1; }
}

.mandate-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  border: 6px solid var(--copper);
  box-shadow:
    inset 0 0 0 1px rgba(15, 11, 7, 0.85),
    0 18px 44px rgba(0, 0, 0, 0.6),
    0 0 36px rgba(197, 142, 80, 0.12);
  transition:
    transform 600ms cubic-bezier(0.22, 0.68, 0.36, 1),
    box-shadow 600ms cubic-bezier(0.22, 0.68, 0.36, 1);
}
.mandate-article:hover .mandate-photo {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(15, 11, 7, 0.85),
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(197, 142, 80, 0.32);
}
.mandate-article:hover .mandate-photo-numeral {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.98),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(15, 11, 7, 0.85),
    0 0 36px rgba(197, 142, 80, 0.55),
    0 0 60px rgba(197, 142, 80, 0.35);
}
.mandate-photo-numeral {
  transition: text-shadow 500ms cubic-bezier(0.22, 0.68, 0.36, 1);
}
/* Inner gallery rule. Pseudo-element so the transformed image
   inside cannot stack above it (which a plain outline would). */
.mandate-photo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--copper);
  pointer-events: none;
  z-index: 5;
}
@media (min-width: 880px) {
  .mandate-photo { aspect-ratio: 5 / 6; min-height: 460px; max-height: 620px; }
}
.mandate-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1400ms ease;
  filter: saturate(1.05) contrast(1.04);
}
.mandate-article:hover .mandate-photo img { transform: scale(1.06); }
/* Subtle bottom-shadow gradient and a single hairline copper rule
   running along the bottom edge — restrained, not ornamental. */
.mandate-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15,11,7,0) 50%, rgba(15,11,7,0.45) 100%);
  border-bottom: 1px solid rgba(197, 142, 80, 0.55);
}

.mandate-text { max-width: 38rem; }

.mandate-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--copper);
}
.mandate-numeral {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 0.9;
  color: var(--copper);
  letter-spacing: 0.005em;
  text-transform: none;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
  flex: 0 0 auto;
}
.mandate-rule {
  flex: 0 0 auto;
  width: clamp(2rem, 4vw, 3rem);
  height: 1px;
  background: var(--copper);
  display: inline-block;
}
.mandate-meta { color: var(--copper); opacity: 0.85; font-weight: 500; }

/* ----------------------------------------------------------
   Mandate articles — 3-column horizontal grid variant.
   Photo on top with Roman numeral overlay (drop shadow),
   text below. Used on the homepage Mandate section.
   ---------------------------------------------------------- */
.mandate-articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  flex-direction: initial;
}
@media (min-width: 880px) {
  .mandate-articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.25rem);
  }
}
.mandate-articles-grid-solo {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
@media (min-width: 880px) {
  .mandate-articles-grid-solo {
    grid-template-columns: minmax(0, 560px);
  }
}

/* ----------------------------------------------------------
   Article IV (Record) coda section. Sits below the pull
   quote as a quiet, formal addendum to the mandate.
   ---------------------------------------------------------- */
.section-record-coda {
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  background: var(--ink);
  position: relative;
}
/* Cancel the default section padding-top of the inquiry block when it
   immediately follows the coda — the coda already supplies vertical
   breathing room. */
.section-record-coda + #inquiry.section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}
.section-record-coda::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.45) 30%,
    rgba(197, 142, 80, 0.45) 70%,
    rgba(197, 142, 80, 0) 100%
  );
}
.record-coda-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.875rem, 2vw, 1.5rem);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}
.record-coda-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.55) 50%,
    rgba(197, 142, 80, 0) 100%
  );
}
.record-coda-eyebrow {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--copper);
  white-space: nowrap;
}

/* ----------------------------------------------------------
   Article IV postscript: full-width horizontal layout. Photo
   left, prose + thresholds right. Visually distinct from the
   I/II/III card row above so it reads as a different kind of
   object — an addendum, not a fourth card.
   ---------------------------------------------------------- */
.record-postscript {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
  margin: 0;
}
@media (min-width: 880px) {
  .record-postscript {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }
}
.record-postscript-photo {
  position: relative;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  overflow: hidden;
  background: var(--ink);
  border: 6px solid var(--copper);
  box-shadow:
    inset 0 0 0 1px rgba(15, 11, 7, 0.85),
    0 22px 56px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(197, 142, 80, 0.12);
}
.record-postscript-photo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--copper);
  pointer-events: none;
  z-index: 5;
}
.record-postscript-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 1400ms ease;
  filter: saturate(1.05) contrast(1.04);
}
.record-postscript:hover .record-postscript-photo img {
  transform: scale(1.05);
}
.record-postscript-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15,11,7,0) 50%, rgba(15,11,7,0.45) 100%);
  border-bottom: 1px solid rgba(197, 142, 80, 0.55);
}
.record-postscript-numeral {
  position: absolute;
  bottom: clamp(0.875rem, 1.8vw, 1.25rem);
  left: clamp(1rem, 2.2vw, 1.5rem);
  z-index: 4;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 600;
  font-size: clamp(2rem, 3.4vw, 2.875rem);
  line-height: 1;
  color: var(--copper);
  letter-spacing: 0.005em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.98),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(15, 11, 7, 0.85),
    0 0 36px rgba(15, 11, 7, 0.6);
  pointer-events: none;
}
.record-postscript-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.record-postscript-text .mandate-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.875rem;
}
.record-postscript-text .mandate-title {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  margin: 0 0 1.25rem;
  line-height: 1.05;
}
.record-postscript-body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream-2);
  margin: 0 0 1.25rem;
  max-width: none;
}
.record-postscript .mandate-rider {
  font-size: 1rem;
  margin: 0 0 1.25rem;
  padding: 0.625rem 0 0.5rem 1.125rem;
  border-left: 2px solid var(--copper);
  max-width: none;
}
/* Thresholds strip on Article IV — three cells across instead of
   two so it can carry one more metric (retention horizon). */
.record-postscript-floor {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.125rem;
  padding-top: 1.25rem;
}
@media (max-width: 540px) {
  .record-postscript-floor {
    grid-template-columns: 1fr 1fr;
  }
}
.mandate-articles-grid .mandate-article {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 0 !important;
  border-top: none !important;
  height: 100%;
}
.mandate-articles-grid .mandate-photo {
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: none;
  position: relative;
}
@media (min-width: 880px) {
  .mandate-articles-grid .mandate-photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: none;
  }
}
.mandate-photo-numeral {
  position: absolute;
  bottom: clamp(0.75rem, 1.6vw, 1rem);
  left: clamp(0.875rem, 2vw, 1.25rem);
  z-index: 4;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 600;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1;
  color: var(--copper);
  letter-spacing: 0.005em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.98),
    0 3px 8px rgba(0, 0, 0, 0.9),
    0 0 16px rgba(15, 11, 7, 0.85),
    0 0 36px rgba(15, 11, 7, 0.6);
  pointer-events: none;
}
.mandate-articles-grid .mandate-text {
  max-width: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mandate-articles-grid .mandate-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.75rem;
}
.mandate-articles-grid .mandate-title {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  margin: 0 0 0.875rem;
  line-height: 1.1;
}
.mandate-articles-grid .mandate-body {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.125rem;
  max-width: none;
}
.mandate-articles-grid .mandate-rider {
  font-size: 0.9375rem;
  margin: auto 0 0;
  padding: 0.625rem 0 0.5rem 1rem;
  border-left: 2px solid var(--copper);
  max-width: none;
}

/* Operational thresholds — concrete numbers a lender can underwrite
   against. Sits at the very bottom of each mandate card as a small
   metric strip, copper labels above cream values. */
.mandate-floor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1rem;
  margin: 1.125rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(197, 142, 80, 0.25);
}
.mandate-floor > div {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.mandate-floor dt {
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  opacity: 0.92;
}
.mandate-floor dd {
  margin: 0;
  font-family: var(--serif);
  font-style: normal;
  font-variation-settings: "opsz" 60, "SOFT" 30, "wght" 500;
  font-size: 1.0625rem;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--cream);
}

.mandate-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 1.25rem;
}
.mandate-body {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--cream-2);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}
.mandate-rider {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--cream);
  margin: 0;
  padding: 1rem 0 0 1.25rem;
  border-left: 2px solid var(--copper);
  max-width: 36ch;
}

/* ----------------------------------------------------------
   Pull quote — plain-talk house view. Bigger, calmer, no sun.
   ---------------------------------------------------------- */
.section-quote {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(15, 11, 7, 0.94), rgba(15, 11, 7, 0.94)),
    url("linen.webp");
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.pull-quote { padding: 0 var(--gutter); }
.pull-quote-mark { display: none; }
.pull-quote-text {
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 30, "wght" 500;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 auto;
  max-width: 16ch;
}
.pull-quote-text em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 400;
  color: var(--copper);
}
.pull-quote-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.55;
  color: var(--cream-2);
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  max-width: 44ch;
}
.pull-quote-attr {
  font-family: var(--sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--copper);
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  opacity: 0.85;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.pull-quote-attr::before,
.pull-quote-attr::after {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: var(--copper);
  opacity: 0.7;
}

/* Tone down the older mandate card hover bracket noise. Those
   elements no longer exist, but if they linger we hide them. */
.cards-mandate, .card-mandate, .card-mandate-body, .card-mandate-tag, .card-photo { display: none !important; }

/* ----------------------------------------------------------
   Asset focus — what the trust holds + what it avoids.
   Two-column ledger: Holds on the left, Avoids on the right.
   ---------------------------------------------------------- */
.section-focus {
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.two-col-focus {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 880px) {
  .two-col-focus {
    grid-template-columns: 1.1fr 1.4fr;
    gap: clamp(3rem, 6vw, 5rem);
  }
}
.section-focus .display { max-width: 16ch; }
.section-focus .prose p { max-width: 50ch; }

.focus-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 720px) {
  .focus-cards { grid-template-columns: 1fr 1fr; }
}
.focus-card {
  background: var(--ink-3);
  border: 1px solid var(--rule);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
}
.focus-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 22px; height: 22px;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
}
.focus-card::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 22px; height: 22px;
  border-bottom: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
}
.focus-heading {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--rule);
}
.focus-card-avoid .focus-heading { color: var(--cream-2); }
.focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.focus-list li {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.5rem;
  color: var(--cream);
  font-size: 0.9375rem;
  line-height: 1.55;
  border-bottom: 1px solid var(--rule);
}
.focus-list li:last-child { border-bottom: none; padding-bottom: 0; }
.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.0625rem;
  width: 0.625rem;
  height: 1px;
  background: var(--copper);
}
.focus-card-avoid .focus-list li::before {
  background: var(--cream-2);
  opacity: 0.6;
}
.focus-card-avoid .focus-list li {
  color: var(--cream-2);
}

/* ----------------------------------------------------------
   The Trustee — founder bio, photo, sole-principal statement.
   Designed to read like the back page of a private placement.
   ---------------------------------------------------------- */
.section-founder {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--ink);
  position: relative;
}
.section-founder::before,
.section-founder::after,
.section-counterparties::before,
.section-counterparties::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 26vw, 280px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper) 50%, transparent);
  opacity: 0.5;
}
.section-founder::before { top: 0; }
.section-founder::after  { bottom: 0; }
.section-counterparties::before  { top: 0; }
.section-counterparties::after   { bottom: 0; }
/* Add scroll-margin so the in-section anchor sits below the
   sticky-ish header rather than directly under it. */
#counterparties { scroll-margin-top: 5rem; }

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 880px) {
  .founder-grid {
    grid-template-columns: minmax(280px, 1fr) 1.4fr;
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: center;
  }
}

.founder-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 6px solid var(--copper);
  box-shadow:
    inset 0 0 0 1px rgba(15, 11, 7, 0.85),
    0 22px 56px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(197, 142, 80, 0.12);
  align-self: start;
}
/* Inner gallery rule on the founder photo. */
.founder-photo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--copper);
  pointer-events: none;
  z-index: 5;
}
.founder-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-text { max-width: 44rem; }
.founder-text .display {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.founder-role {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 2rem;
  padding: 0.625rem 0;
  border-top: 1px solid rgba(197, 142, 80, 0.4);
  border-bottom: 1px solid rgba(197, 142, 80, 0.4);
  display: inline-block;
  min-width: min(20rem, 100%);
}
.founder-text > p {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--cream-2);
  margin: 0 0 1.25rem;
  max-width: 52ch;
}
.founder-pull {
  font-family: var(--serif) !important;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important;
  line-height: 1.4 !important;
  color: var(--cream) !important;
  padding: 0.25rem 0 0.25rem 1.5rem !important;
  border-left: 2px solid var(--copper);
  margin: 1.75rem 0 2rem !important;
  max-width: 36ch !important;
}
.founder-signature {
  margin: 2.25rem 0 0;
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.founder-signature-rule {
  display: block;
  width: 7rem;
  height: 1px;
  background: var(--copper);
  opacity: 0.7;
  margin-bottom: 0.5rem;
}
.founder-signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 500;
  font-size: 1.625rem;
  color: var(--copper);
  line-height: 1.15;
}
.founder-signature-title {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.85;
  margin-top: 0.125rem;
}

/* Ornamental sun under the founder photo */
.founder-portrait {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}
/* "About the principal" link below the signature */
.founder-text > .founder-more { margin: 1.25rem 0 0; max-width: none; }

/* ----------------------------------------------------------
   Principal page (principal.html)
   ---------------------------------------------------------- */
.principal-main {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}
.principal-hero {
  padding: 0 0 1rem;
}
.principal-hero h1 {
  margin: 0.5rem 0 0.75rem;
  max-width: 18ch;
}
.principal-role {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}

.principal-portrait-section {
  padding: 0 0 1rem !important;
}
/* Override section default padding so portrait + bio don't double up */
.principal-main .section.principal-portrait-section,
.principal-main .section.principal-bio {
  padding-top: 0;
}
.principal-main .section.principal-bio {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.principal-portrait {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  border: 6px solid var(--copper);
  background: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(15, 11, 7, 0.85),
    0 26px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(197, 142, 80, 0.14);
  overflow: hidden;
}
.principal-portrait::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid var(--copper);
  pointer-events: none;
  z-index: 5;
}
.principal-portrait img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.principal-bio {
  padding-top: 0;
}
.principal-bio-grid {
  max-width: 720px;
  margin: 0 auto;
}
.principal-bio-grid > article + article {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: none;
  position: relative;
}
/* Fading copper rule with a soft halo behind it. Brightest in the
   middle, transparent at the edges. Replaces the flat hairline so
   the bio reads like the home-page section dividers do. */
.principal-bio-grid > article + article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(197, 142, 80, 0) 0%,
    rgba(197, 142, 80, 0.4) 22%,
    rgba(197, 142, 80, 0.85) 50%,
    rgba(197, 142, 80, 0.4) 78%,
    rgba(197, 142, 80, 0) 100%
  );
  pointer-events: none;
}
.principal-bio-grid > article + article::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 12%;
  right: 12%;
  height: 15px;
  background: radial-gradient(
    ellipse at center,
    rgba(197, 142, 80, 0.18) 0%,
    rgba(197, 142, 80, 0.08) 40%,
    rgba(197, 142, 80, 0) 75%
  );
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}
.principal-bio-grid > article > * { position: relative; z-index: 1; }
.legal-page main h2.principal-section-head,
.principal-bio-grid h2.principal-section-head,
.principal-section-head {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1.25rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(197, 142, 80, 0.45);
  border-bottom: 1px solid rgba(197, 142, 80, 0.45);
  display: inline-block;
  min-width: min(18rem, 100%);
}
.principal-bio-grid p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  margin: 0 0 1.125rem;
  max-width: 64ch;
}
.principal-bio-grid p:last-child { margin-bottom: 0; }

.principal-cta {
  margin-top: clamp(2.75rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--copper);
  text-align: center;
}
/* CTA buttons row. Inline-flex with gap so they always have
   breathing room whether they sit side-by-side on desktop or
   stack vertically on mobile. */
.principal-cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem 1rem;
  margin: 0;
}
.principal-cta .founder-pull {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--cream);
  border-left: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 32ch;
}
.founder-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.875rem, 2vw, 1.5rem);
  color: var(--copper);
  margin-top: 0.5rem;
}
.founder-ornament-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 142, 80, 0.55) 50%, transparent);
  max-width: clamp(48px, 12vw, 120px);
}
.founder-ornament-mark {
  width: clamp(28px, 3.5vw, 36px);
  height: clamp(28px, 3.5vw, 36px);
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 12px rgba(197, 142, 80, 0.35));
}

/* ----------------------------------------------------------
   Inquiry channel as a real DL — bank-readable, no mystery.
   ---------------------------------------------------------- */
.channel-list {
  margin: 0;
  padding: 0;
}
.channel-list > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--rule);
}
.channel-list > div:first-child { padding-top: 0; }
.channel-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.channel-list dt {
  font-size: 0.6875rem;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
}
.channel-list dd {
  margin: 0;
  color: var(--cream);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.channel-list dd a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 1px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.channel-list dd a:hover,
.channel-list dd a:focus-visible {
  color: var(--copper);
  text-decoration-color: var(--copper);
}
.channel-note-inline {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--cream-2);
  opacity: 0.75;
  letter-spacing: 0;
  text-transform: none;
}

/* Allow links inside the Entity Record (e.g. SOS filing) to inherit the
   underlined cream-on-brass treatment that prose links use. */
.record-list dd a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 1px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.record-list dd a:hover,
.record-list dd a:focus-visible {
  color: var(--copper);
  text-decoration-color: var(--copper);
}

/* ----------------------------------------------------------
   Underwriting package availability tags
   ---------------------------------------------------------- */
.package-list li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.package-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 0.4375rem 0.5rem;
  border: 1px solid rgba(197, 142, 80, 0.4);
  border-radius: 1px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}
.package-tag-nda {
  color: var(--cream);
  background: rgba(197, 142, 80, 0.18);
  border-color: var(--copper);
}

/* ----------------------------------------------------------
   Inquiry "What happens next" 3-step sequence
   ---------------------------------------------------------- */
.inquiry-steps {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: none;
}
.inquiry-steps li {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  background: var(--ink-3);
  border: 1px solid var(--rule);
  border-left: 2px solid var(--copper);
  position: relative;
}
.inquiry-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
  color: var(--copper);
  flex-shrink: 0;
  letter-spacing: -0.01em;
  padding-top: 0.125rem;
}
.inquiry-step-title {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 0.375rem;
  letter-spacing: 0.01em;
}
.inquiry-step-body {
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--cream-2);
  margin: 0;
  max-width: 52ch;
}

/* ----------------------------------------------------------
   Return-to-top floating button
   ---------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem 0.625rem 0.75rem;
  background: rgba(15, 11, 7, 0.85);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, color 160ms ease, background 160ms ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--copper);
  color: var(--ink);
  outline: none;
}
.back-to-top-arrow {
  font-size: 0.875rem;
  line-height: 1;
}

/* ----------------------------------------------------------
   PRINT STYLESHEET
   When a banker prints the page, deliver a clean letterhead-
   style document. Strip animation, gradients, fixed elements.
   ---------------------------------------------------------- */
@media print {
  :root {
    --ink: #FFFFFF;
    --ink-2: #FFFFFF;
    --ink-3: #FFFFFF;
    --rule: #1A1A1A;
    --cream: #0F0B07;
    --cream-2: #2C2620;
    --copper: #6F4A1F;
    --copper-2: #6F4A1F;
    --brass: #6F4A1F;
  }
  body {
    background: #FFFFFF;
    color: #0F0B07;
    font-size: 10.5pt;
    line-height: 1.45;
  }
  .site-frame,
  .site-header,
  .nav-toggle,
  .primary-nav,
  .skip-link,
  .back-to-top,
  .section-divider,
  .image-band,
  .hero-photo,
  .section-quote,
  .section-hero::before,
  .section-hero::after,
  .section-closing.has-linen::before,
  .section-closing.has-linen::after,
  .section-founder::before,
  .section-founder::after,
  .stability-strip { display: none !important; }
  .section-hero {
    min-height: 0;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #1A1A1A;
    page-break-inside: avoid;
  }
  .hero-grid { display: block; }
  .hero-seal-wrap { display: none; }
  .section { padding: 1.25rem 0; page-break-inside: avoid; }
  main, .container { max-width: 100%; padding: 0; }
  .display, h1, h2, h3 { color: #0F0B07; }
  .display em, em { color: #6F4A1F; font-style: italic; }
  .eyebrow, .eyebrow-mark, .mandate-meta, .mandate-numeral,
  .stability-eyebrow, .package-tag, .focus-heading, .footer-heading,
  .channel-list dt, .founder-role, .founder-signature-title,
  .pull-quote-attr { color: #6F4A1F !important; }
  .mandate-photo, .founder-photo {
    border-width: 1px;
    border-color: #6F4A1F;
    box-shadow: none !important;
    aspect-ratio: auto;
    min-height: 0 !important;
    max-height: none !important;
    height: 200px;
    page-break-inside: avoid;
  }
  .mandate-photo::before,
  .founder-photo::before { display: none; }
  .mandate-photo img, .founder-photo img { filter: grayscale(0.3) contrast(0.95) !important; }
  .record, .package, .channel, .focus-card {
    background: #FFFFFF;
    border: 1px solid #1A1A1A;
    color: #0F0B07;
    page-break-inside: avoid;
  }
  .record::before, .record::after,
  .package::before, .package::after,
  .channel::before, .channel::after,
  .focus-card::before, .focus-card::after { display: none; }
  .pull-quote-text, .pull-quote-text em { color: #0F0B07; }
  .pull-quote-text em { color: #6F4A1F; }
  .btn { display: none; }
  a { color: #0F0B07; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; color: #6F4A1F; }
  .site-footer {
    border-top: 1px solid #1A1A1A;
    padding-top: 1rem;
    page-break-inside: avoid;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .site-footer p, .footer-list a, .address { color: #0F0B07 !important; }
  .footer-brand-mark { display: none; }
  .image-band-img, .mandate-photo img, .founder-photo img {
    animation: none !important;
    transform: none !important;
  }
}

/* ==========================================================
   Counterparty kit access modal.
   Position: fixed; zero document-flow impact. Display: none
   until the trigger button is clicked. The card matches the
   site's underwriting-package aesthetic — corner brackets,
   copper accents, dark ink-3 background.
   ========================================================== */
.kit-modal[hidden] { display: none !important; }
.kit-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  isolation: isolate;
}
.kit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 11, 7, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.kit-modal-card {
  position: relative;
  z-index: 1;
  background: var(--ink-3);
  border: 1px solid var(--rule);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 28rem;
  width: 100%;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(197, 142, 80, 0.15);
}
.kit-modal-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
}
.kit-modal-card::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 1px solid var(--copper);
  border-right: 1px solid var(--copper);
}
.kit-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--cream-2);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 160ms ease;
}
.kit-modal-close:hover, .kit-modal-close:focus-visible {
  color: var(--copper);
  outline: none;
}
.kit-modal-eyebrow {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.5rem;
}
.kit-modal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 1rem;
}
.kit-modal-body {
  font-family: var(--sans);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--cream-2);
  margin: 0 0 1.5rem;
}
.kit-modal-form { margin: 0; }
.kit-modal-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin: 0 0 0.5rem;
}
.kit-modal-input {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid rgba(197, 142, 80, 0.35);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9375rem;
  padding: 0.625rem 0.875rem;
  border-radius: 1px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  box-sizing: border-box;
}
.kit-modal-input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px rgba(197, 142, 80, 0.4);
}
.kit-modal-input.is-error {
  border-color: rgba(180, 60, 60, 0.6);
  animation: kit-shake 250ms ease-in-out;
}
@keyframes kit-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.kit-modal-error {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: rgba(220, 130, 110, 0.95);
  margin: 0.5rem 0 0;
}
.kit-modal-error[hidden] { display: none; }
.kit-modal-submit {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}
.kit-modal-divider {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 1.25rem 0;
}
.kit-modal-divider-rule {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(197, 142, 80, 0.25);
}
.kit-modal-divider-or {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-2);
  opacity: 0.7;
}
.kit-modal-request {
  font-family: var(--sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--cream-2);
  margin: 0;
  text-align: center;
}
.kit-modal-request a {
  color: var(--copper);
  text-decoration: none;
  border-bottom: 1px solid rgba(197, 142, 80, 0.5);
  padding-bottom: 1px;
  transition: color 160ms ease, border-bottom-color 160ms ease;
}
.kit-modal-request a:hover, .kit-modal-request a:focus-visible {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
body.kit-modal-open { overflow: hidden; }
