:root {
  --obsidian: #07111f;
  --navy: #111c2b;
  --slate: #1f2c3a;
  --gold: #b08a3e;
  --gold-light: #d6b466;
  --ivory: #f4f0e7;
  --paper: #fbf9f4;
  --ink: #12171f;
  --muted: #5f6873;
  --white: #ffffff;
  --line-dark: rgba(17, 28, 43, 0.14);
  --line-gold: rgba(214, 180, 102, 0.28);
  --display: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
svg { display: block; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--obsidian);
  background: var(--gold-light);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(7, 17, 31, 0.97);
  border-bottom: 1px solid var(--line-gold);
}
.header-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark { width: 32px; color: var(--gold-light); }
.brand-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.brand-copy small {
  display: block;
  margin-top: 2px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 28%, rgba(176, 138, 62, 0.14), transparent 32%),
    linear-gradient(135deg, var(--obsidian), var(--navy) 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 calc(16.666% - 1px), rgba(214, 180, 102, 0.055) calc(16.666% - 1px) 16.666%);
}
.hero > .section-inner {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
  padding-block: 104px 88px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h1 {
  max-width: 10.5ch;
  margin-bottom: 26px;
  font-size: clamp(60px, 7.4vw, 106px);
  line-height: 0.96;
}
.hero-intro {
  max-width: 650px;
  margin-bottom: 34px;
  color: #d7dee7;
  font-size: clamp(17px, 1.7vw, 20px);
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0 20px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.button.primary { color: var(--obsidian); background: var(--gold-light); border-color: var(--gold-light); }
.button:hover,
.button:focus-visible { color: var(--white); border-color: var(--gold-light); outline: 2px solid transparent; }
.button.primary:hover,
.button.primary:focus-visible { color: var(--obsidian); background: var(--white); border-color: var(--white); }
.hero-seal {
  min-height: 410px;
  display: grid;
  place-items: center;
  padding: 42px;
  border: 1px solid var(--line-gold);
  background: rgba(255, 255, 255, 0.02);
}
.hero-seal svg { width: min(100%, 310px); color: var(--gold-light); }
.fact-rail {
  position: relative;
  z-index: 2;
  color: var(--white);
  background: rgba(3, 9, 17, 0.42);
  border-top: 1px solid var(--line-gold);
}
.fact-rail .section-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.fact {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px 24px;
}
.fact + .fact { border-left: 1px solid var(--line-gold); }
.fact span { color: var(--gold-light); font-size: 10px; font-weight: 750; letter-spacing: 0.16em; text-transform: uppercase; }
.fact strong { font-family: var(--display); font-size: 24px; font-weight: 550; }
.section { padding: 104px 0; border-bottom: 1px solid var(--line-dark); }
.section-grid { display: grid; grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr); gap: clamp(42px, 8vw, 110px); }
.section-index { color: var(--gold); font-size: 11px; font-weight: 750; letter-spacing: 0.18em; text-transform: uppercase; }
h2 { margin-bottom: 24px; color: var(--navy); font-size: clamp(44px, 5.4vw, 74px); line-height: 1.02; }
.lead { max-width: 720px; color: #49535e; font-size: 19px; }
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.principle { min-height: 210px; padding: 28px 24px; }
.principle + .principle { border-left: 1px solid var(--line-dark); }
.principle span { color: var(--gold); font-size: 10px; font-weight: 750; letter-spacing: 0.16em; }
.principle h3 { margin: 42px 0 10px; color: var(--navy); font-family: var(--display); font-size: 29px; font-weight: 550; }
.principle p { color: var(--muted); font-size: 14px; }
.section.navy { color: var(--white); background: var(--navy); border-bottom-color: var(--line-gold); }
.section.navy h2 { color: var(--white); }
.section.navy .lead { color: #c8d0da; }
.disclosure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 46px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
.disclosure article { min-height: 240px; padding: 34px; background: var(--slate); }
.disclosure h3 { margin-bottom: 16px; font-family: var(--display); font-size: 31px; font-weight: 550; }
.disclosure p { color: #cbd2db; }
.register {
  margin-top: 52px;
  border-top: 1px solid var(--line-dark);
}
.register-row {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.4fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}
.register-row strong { color: var(--navy); font-size: 15px; }
.register-row p { margin: 0; color: var(--muted); }
.register-row small { color: var(--gold); font-size: 10px; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.company-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.company-list li { min-width: 0; border-bottom: 1px solid var(--line-dark); }
.company-list li:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.company-list li:nth-last-child(-n + 2) { border-bottom: 0; }
.company-list a,
.company-entry {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 14px 18px;
  text-decoration: none;
}
.company-list span { color: var(--navy); font-size: 14px; font-weight: 700; }
.company-list small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
  text-transform: none;
}
.company-list a small { color: var(--gold); }
.company-list a:hover,
.company-list a:focus-visible { background: rgba(176, 138, 62, 0.08); outline: 1px solid var(--gold); outline-offset: -1px; }
.contact-band { color: var(--white); background: var(--obsidian); }
.contact-band .section-inner { min-height: 300px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: 72px; }
.contact-band h2 { max-width: 720px; margin: 0; color: var(--white); }
.contact-band p { max-width: 620px; margin: 16px 0 0; color: #cbd2db; }
.site-footer { color: rgba(255, 255, 255, 0.72); background: #030a13; border-top: 1px solid var(--line-gold); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 38px; padding-block: 48px; }
.site-footer strong { display: block; margin-bottom: 10px; color: var(--white); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer p,
.site-footer address { margin: 0; font-size: 13px; font-style: normal; }
.site-footer a { color: var(--gold-light); }
.source-note { margin-top: 14px !important; color: #98a3ad; font-size: 11px !important; }

@media (max-width: 1100px) {
  .principles { grid-template-columns: 1fr 1fr; }
  .principle:nth-child(3) { border-left: 0; border-top: 1px solid var(--line-dark); }
  .principle:nth-child(4) { border-top: 1px solid var(--line-dark); }
}

@media (max-width: 900px) {
  .hero > .section-inner,
  .section-grid { grid-template-columns: 1fr; }
  .hero-seal { min-height: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .header-inner,
  .section-inner,
  .footer-inner { width: min(100% - 40px, var(--max)); }
  .site-header { position: static; }
  .header-inner { min-height: auto; align-items: flex-start; flex-direction: column; padding-block: 18px; }
  .primary-nav { width: 100%; justify-content: space-between; gap: 12px; overflow-x: auto; }
  .primary-nav a { padding: 8px 0; font-size: 10px; }
  .primary-nav a::after { bottom: 3px; }
  .hero > .section-inner { min-height: auto; padding-block: 72px 58px; }
  h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-seal { min-height: 250px; padding: 30px; }
  .fact-rail .section-inner,
  .principles,
  .disclosure,
  .footer-inner { grid-template-columns: 1fr; }
  .fact + .fact,
  .principle + .principle { border-left: 0; border-top: 1px solid var(--line-gold); }
  .principle:nth-child(2) { border-top-color: var(--line-dark); }
  .section { padding: 72px 0; }
  .register-row { grid-template-columns: 1fr; gap: 8px; }
  .company-list { grid-template-columns: 1fr; }
  .company-list li:nth-child(odd) { border-right: 0; }
  .company-list li:nth-last-child(2) { border-bottom: 1px solid var(--line-dark); }
  .contact-band .section-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
