@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #080A0C;
  --navy-deep: #050607;
  --navy-soft: #1B1E22;
  --navy-line: #31363B;

  --gold: #B29A5B;
  --gold-soft: #8F7A46;
  --gold-pale: #A7ADB3;

  --paper: #F3F1EA;
  --paper-deep: #ECE9E0;
  --stone: #E2DED4;

  --ink: #080A0C;
  --charcoal: #25282B;
  --charcoal-mute: #656C72;
  --steel: #A7ADB3;
  --rule: #D4D0C6;
  --rule-dark: rgba(167, 173, 179, 0.28);

  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --tr-eyebrow: 0.2em;
  --tr-wordmark: 0.24em;

  --container: 1240px;
  --container-narrow: 880px;
  --measure: 620px;

  --ease-out: cubic-bezier(.2, .6, .2, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease-out); cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; text-align: center; }

/* ================ Type ================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.dark { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: 0;
}
.h-1 { font-size: clamp(34px, 3.6vw, 48px); line-height: 1.1; letter-spacing: 0; }
.h-2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; }

p { margin: 0; line-height: 1.72; color: var(--charcoal); text-wrap: pretty; }

/* ================ Buttons ================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--dur-fast) var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gold-soft);
}
.btn-gold-outline:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn-gold {
  background: var(--navy);
  color: var(--paper);
  border: 1px solid var(--navy);
}
.btn-gold:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
}
.btn-arrow {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(178, 154, 91, 0.7);
  padding-bottom: 6px;
  transition: all var(--dur-fast) var(--ease-out);
}
.text-link:hover { color: var(--gold-soft); }
.text-link.light { color: rgba(243, 241, 234, 0.88); border-bottom-color: rgba(178, 154, 91, 0.55); }
.text-link.light:hover { color: var(--paper); }
.text-link.secondary {
  color: rgba(243, 241, 234, 0.66);
  border-bottom-color: rgba(167, 173, 179, 0.34);
}

.inline-arrow {
  position: relative;
  width: 18px;
  height: 10px;
  display: inline-block;
  flex: 0 0 18px;
  font-size: 0;
  line-height: 0;
}
.inline-arrow::before,
.inline-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  background: currentColor;
}
.inline-arrow::before {
  top: 5px;
  width: 18px;
  height: 1px;
}
.inline-arrow::after {
  top: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}
.btn-arrow {
  position: relative;
  width: 18px;
  height: 10px;
  display: inline-block;
  flex: 0 0 18px;
  font-size: 0;
  line-height: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn-arrow::before,
.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  background: currentColor;
}
.btn-arrow::before {
  top: 5px;
  width: 18px;
  height: 1px;
}
.btn-arrow::after {
  top: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

/* ================ Wordmark ================ */
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wordmark-text {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: var(--tr-wordmark);
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1;
}
.wordmark-llc {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: rgba(243, 241, 234, 0.56);
  margin-top: 7px;
  text-transform: uppercase;
}
.wordmark.light .wordmark-text { color: var(--paper); }

/* ================ Nav ================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--dur-base) var(--ease-out);
  background: var(--navy);
  border-bottom: 1px solid rgba(167, 173, 179, 0.12);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(8, 10, 12, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(167, 173, 179, 0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-brand { min-width: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 241, 234, 0.72);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-soft);
}

/* ================ Hero ================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(167, 173, 179, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 173, 179, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  z-index: 1;
}
.hero-skyline {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 75%;
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-narrow {
  max-width: 780px;
}
.hero h1 {
  color: var(--paper);
  margin-bottom: 32px;
  font-weight: 400;
}
.hero h1 em {
  color: var(--paper);
  font-style: normal;
  font-weight: 400;
}
.hero-subhead {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  color: rgba(243, 241, 234, 0.72);
  margin-bottom: 36px;
  max-width: 640px;
}
.hero-body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 244, 240, 0.82);
  max-width: 620px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.5);
  z-index: 3;
}
.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--steel));
  animation: scrollPulse 2.4s infinite var(--ease-out);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ================ Mission ================ */
.mission {
  background: var(--paper);
  padding: 120px 0;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.mission-text {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.mission-attr {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ================ Trust Stats ================ */
.trust {
  background: var(--stone);
  padding: 120px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-card {
  background: var(--paper);
  border-left: 3px solid var(--navy);
  padding: 56px 48px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.trust-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(8, 10, 12, 0.07);
}
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(72px, 7vw, 104px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.trust-sup {
  font-size: 0.5em;
  vertical-align: top;
  margin-left: 4px;
  color: var(--gold-soft);
}
.trust-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}
.trust-label {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 400;
  max-width: 220px;
}

/* ================ Who We Are ================ */
.who { background: var(--paper); padding: 128px 0; }
.who-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
.who-text .eyebrow { margin-bottom: 20px; }
.who-text h2 { color: var(--navy); }
.who-text p { font-size: 16px; line-height: 1.8; color: var(--charcoal); }
.who-text strong { color: var(--navy); font-weight: 600; }

.who-principals {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.who-principal-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 4px;
}
.who-principal-title {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 13px;
  color: var(--gold-soft);
  line-height: 1.4;
}

.who-graphic {
  position: relative;
  aspect-ratio: 5 / 6;
  background: var(--navy);
  overflow: hidden;
  border: 1px solid var(--rule-dark);
  outline: 8px solid var(--paper);
  outline-offset: -1px;
  box-shadow: 0 24px 60px rgba(8, 10, 12, 0.14);
}
.who-graphic svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.who-graphic-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--steel);
  z-index: 2;
}

/* ================ Services ================ */
.services { background: var(--paper-deep); padding: 128px 0; }
.section-head-center {
  text-align: center;
  margin-bottom: 80px;
}
.section-head-center .eyebrow { margin-bottom: 20px; display: inline-block; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--navy);
  color: var(--paper);
  padding: 48px 36px;
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--dur-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(8, 10, 12, 0.2);
}
.service-card:hover::before { width: 100%; }
.service-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--rule-dark);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition: background var(--dur-fast) var(--ease-out);
}
.service-card:hover .service-card-icon { background: rgba(167, 173, 179, 0.08); }
.svc-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-num {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
  color: rgba(167, 173, 179, 0.55);
  letter-spacing: 0.05em;
}
.service-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.service-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 244, 240, 0.72);
}

/* ================ Asset Classes ================ */
.asset-classes {
  background: var(--navy);
  color: var(--paper);
  padding: 128px 0;
  position: relative;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}
.asset-classes h2 { color: var(--paper); }
.asset-class-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 24px;
}
.asset-class {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--rule-dark);
  transition: background var(--dur-base) var(--ease-out);
  cursor: default;
}
.asset-class:last-child { border-right: none; }
.asset-class:hover { background: rgba(167, 173, 179, 0.04); }
.asset-class:hover .ac-icon { color: var(--gold-pale); transform: translateY(-3px); }
.asset-class-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
}
.ac-icon {
  width: 48px;
  height: 48px;
  color: var(--steel);
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all var(--dur-base) var(--ease-out);
}
.asset-class-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.5;
}

/* ================ Completed (Tombstones) ================ */
.completed { background: var(--paper); padding: 128px 0; }
.tombstones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tomb {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px 36px;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tomb::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.4;
  transition: opacity var(--dur-base) var(--ease-out);
}
.tomb:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(8, 10, 12, 0.08);
  border-color: var(--gold-soft);
}
.tomb:hover::after { opacity: 1; }
.tomb-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 32px;
}
.tomb-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.tomb-rule-top { display: none; }
.tomb-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: 0;
  margin-bottom: 24px;
  min-height: 100px;
}
.tomb-divider {
  height: 1px;
  background: var(--rule);
  margin-bottom: 24px;
}
.tomb-rows {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  flex: 1;
}
.tomb-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
}
.tomb-row .k {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
}
.tomb-row .v {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.tomb-foot {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-mute);
}
.tomb-foot .court { font-weight: 600; color: var(--gold-soft); }

/* ================ Footer ================ */
.footer {
  background: var(--navy-deep);
  color: rgba(243, 241, 234, 0.66);
  padding: 96px 0 32px;
  border-top: 1px solid var(--rule-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(167, 173, 179, 0.18);
}
.footer-brand-block { display: flex; flex-direction: column; gap: 24px; }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(243, 241, 234, 0.74);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
.footer-tagline em { font-style: normal; }
.footer-blurb { color: rgba(243, 241, 234, 0.58); font-size: 14px; line-height: 1.7; max-width: 360px; margin: 0; }
.footer h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 24px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a, .footer ul li {
  font-size: 13px;
  color: rgba(243, 241, 234, 0.7);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer ul a:hover { color: var(--paper); }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
}
.footer-icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--steel);
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.footer-meta {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(243, 241, 234, 0.42);
}
.footer-meta-license {
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--steel);
  font-weight: 500;
}

/* ================ Responsive ================ */
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10px; }
}
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: 1fr; gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .tombstones { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .asset-class-strip { grid-template-columns: repeat(3, 1fr); }
  .asset-class { border-bottom: 1px solid var(--rule-dark); }
  .asset-class:nth-child(3n) { border-right: none; }
  .nav-links { display: none; }
}
@media (max-width: 720px) {
  .nav,
  main,
  footer,
  section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .nav-inner { gap: 16px; }
  .nav-brand { max-width: calc(100% - 60px); }
  .wordmark-text {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 0.12em;
    white-space: normal;
    line-height: 1.35;
  }
  .wordmark-llc {
    max-width: 100%;
    font-size: 8px;
    letter-spacing: 0.12em;
    white-space: normal;
  }
  section, .mission, .trust, .who, .services, .asset-classes, .completed { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .who-principals { grid-template-columns: 1fr; }
  .asset-class-strip { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
}
