:root {
  --navy-950: #071426;
  --navy-900: #10233f;
  --navy-800: #173255;
  --navy-700: #21456f;
  --gold-600: #a4894f;
  --gold-500: #b99d60;
  --paper: #f7f8f6;
  --mist: #edf0f2;
  --line: #d8dee2;
  --text: #132033;
  --muted: #627084;
  --white: #ffffff;
  --shadow: 0 24px 70px rgb(7 20 38 / 0.13);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-position: inside;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 104px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
  background: rgb(7 20 38 / 0.91);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 62px;
  height: auto;
  border-radius: 8px;
  background: var(--white);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  color: rgb(255 255 255 / 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  font-size: 0.9rem;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 12px;
  color: rgb(255 255 255 / 0.8);
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgb(255 255 255 / 0.1);
  color: var(--white);
  outline: none;
}

.menu-toggle {
  display: none;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  min-width: 76px;
  min-height: 42px;
  font: inherit;
  font-weight: 700;
}

.hero {
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(110deg, rgb(7 20 38 / 0.94), rgb(16 35 63 / 0.86) 54%, rgb(244 246 247 / 0.92) 54%),
    var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.2rem);
  font-weight: 760;
}

h3 {
  font-size: 1.24rem;
  font-weight: 760;
}

.hero-lede {
  max-width: 580px;
  margin-top: 26px;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  background: var(--gold-600);
  color: var(--navy-950);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--gold-500);
  outline: none;
}

.btn.secondary {
  border-color: rgb(255 255 255 / 0.34);
  color: var(--white);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgb(255 255 255 / 0.1);
  outline: none;
}

.hero-card {
  border: 1px solid rgb(16 35 63 / 0.13);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-logo {
  width: min(440px, 100%);
  margin-inline: auto;
  border-radius: 10px;
}

.asset-summary {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.asset-summary div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.asset-summary span,
.focus-item span,
.service-card span,
.footer-grid span {
  color: var(--gold-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-summary strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.intro-band {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.focus-item {
  min-height: 150px;
  border-left: 1px solid var(--line);
  padding: 28px 24px;
}

.focus-item:last-child {
  border-right: 1px solid var(--line);
}

.focus-item p {
  margin-top: 18px;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.35;
}

.two-column,
.governance-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 80px;
}

.section-heading {
  color: var(--navy-950);
}

.section-heading.compact {
  max-width: 780px;
}

.prose {
  display: grid;
  gap: 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-section {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 42px rgb(7 20 38 / 0.06);
}

.service-card h3 {
  color: var(--navy-900);
  margin-top: 20px;
}

.service-card p {
  color: var(--muted);
  margin-top: 18px;
}

.strategy-section {
  background: var(--navy-950);
  color: var(--white);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.strategy-panel {
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgb(164 137 79 / 0.22), transparent 64%),
    var(--navy-900);
  padding: 38px;
}

.strategy-panel p:not(.eyebrow) {
  margin-top: 22px;
  color: rgb(255 255 255 / 0.74);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.14);
}

.principle {
  min-height: 180px;
  background: rgb(255 255 255 / 0.06);
  padding: 28px;
}

.principle strong,
.principle span {
  display: block;
}

.principle strong {
  color: var(--white);
  font-size: 1.1rem;
}

.principle span {
  margin-top: 14px;
  color: rgb(255 255 255 / 0.68);
}

.governance-list {
  display: grid;
  gap: 18px;
}

.governance-list article {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
}

.governance-list h3 {
  color: var(--navy-900);
}

.governance-list p {
  color: var(--muted);
  margin-top: 14px;
}

.governance-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 22px;
}

.governance-list li {
  color: var(--text);
}

.contact-section {
  background: var(--white);
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 20px;
  max-width: 580px;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--navy-900);
  font-style: normal;
}

address a {
  color: var(--navy-700);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #bfc8cf;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-600);
  outline: 3px solid rgb(164 137 79 / 0.24);
}

.hidden {
  display: none;
}

.form-submit {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: var(--navy-950);
  color: rgb(255 255 255 / 0.76);
  padding: 46px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.footer-grid img {
  width: 84px;
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 14px;
}

.footer-grid p {
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: var(--radius);
    background: var(--navy-950);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    background: var(--navy-950);
  }

  .hero-grid,
  .two-column,
  .strategy-grid,
  .governance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-grid {
    padding-top: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.85rem, 16vw, 4.6rem);
  }

  .focus-grid,
  .service-grid,
  .principles,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .focus-item {
    min-height: auto;
    border-right: 1px solid var(--line);
  }

  .governance-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 420px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    inset: 70px 12px auto;
  }

  .hero {
    min-height: calc(100dvh - 70px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .asset-summary div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-card,
  .service-card,
  .strategy-panel,
  .governance-list article,
  .contact-form {
    padding: 22px;
  }
}
