:root {
  --navy-950: #032d54;
  --navy-ink: #031f3a;
  --navy-900: #123f67;
  --navy-800: #23486a;
  --gold-800: #6f4615;
  --gold-700: #8f5c1a;
  --gold-600: #a06a24;
  --gold-500: #9b651e;
  --gold-200: #f2dfb9;
  --page-bg: #ffffff;
  --surface-alt: #f2f4f6;
  --stone-100: #f4f4f2;
  --stone-300: #d9d3c7;
  --charcoal: #1b1a17;
  --muted: #5e5b54;
  --white: #fff;
  --shadow: 0 24px 60px rgba(3, 31, 58, .14);
  --radius: 8px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-inline-size: 20rem;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-inline-size: 100%;
  display: block;
}

a {
  color: inherit;
}

a:hover {
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset-block-start: .75rem;
  inset-inline-start: .75rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-block-end: 1px solid rgba(3, 31, 58, .1);
  backdrop-filter: blur(16px);
}

.topbar {
  color: var(--white);
  background: var(--navy-950);
  font-size: .875rem;
}

.topbar__inner,
.header__inner,
.container {
  inline-size: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .45rem;
}

.topbar a {
  text-decoration: none;
}

.header__inner {
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-block-size: 5.5rem;
  padding-block: .55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand img {
  inline-size: 8.4rem;
  block-size: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(3, 31, 58, .2);
  padding: .65rem .85rem;
  color: var(--navy-950);
  background: transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-950);
}

.site-nav a.button {
  color: var(--white);
}

.site-nav a:not(.button)[aria-current="page"]::after,
.site-nav a:not(.button):hover::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -.35rem;
  block-size: 2px;
  background: var(--gold-600);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-block-size: 2.85rem;
  padding: .78rem 1rem;
  border: 1px solid var(--gold-600);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--gold-600);
  font-size: .85rem;
  font-weight: 850;
  letter-spacing: .06em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover {
  color: var(--white);
  background: var(--gold-500);
  border-color: var(--gold-800);
  text-decoration: none;
}

.button:active {
  background: var(--gold-600);
}

.button--light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
}

.button--light:hover {
  color: var(--white);
  background: var(--gold-600);
  border-color: var(--gold-600);
}

.button--ghost {
  color: var(--navy-950);
  background: transparent;
  border-color: rgba(3, 31, 58, .25);
}

.button--ghost:hover {
  color: var(--white);
  background: var(--gold-600);
  border-color: var(--gold-600);
}

.hero {
  position: relative;
  display: grid;
  min-block-size: clamp(36rem, 72vh, 48rem);
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 31, 58, .92), rgba(3, 31, 58, .66) 42%, rgba(3, 31, 58, .12));
}

.hero__image {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  inline-size: min(100% - 2rem, 72rem);
  margin-inline: auto;
  padding-block: 5rem;
}

.hero__copy .lead {
  max-inline-size: 42rem;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--gold-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.05rem);
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.65rem, 5.8vw, 4.85rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.4vw, 2.9rem);
}

h3 {
  margin: 0 0 .65rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero .lead {
  color: rgba(255, 255, 255, .86);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--navy .eyebrow,
.cta-band .eyebrow {
  color: var(--gold-200);
}

.section--navy .eyebrow {
  color: #f7d88d;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-block-start: 1.5rem;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--alt {
  background: var(--surface-alt);
}

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

.section--navy .lead,
.section--navy p,
.section--navy li {
  color: #f3f6fa;
}

.section--navy .split p {
  color: #f3f6fa;
}

.section--navy .button--light {
  color: var(--white);
  border-color: #e7edf4;
}

.section--navy .button--light:hover {
  color: var(--white);
  background: var(--gold-600);
  border-color: var(--gold-600);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 28rem);
  gap: 2rem;
  align-items: end;
  margin-block-end: 2rem;
}

.section-heading--center {
  display: block;
  max-inline-size: 52rem;
  margin-inline: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid rgba(3, 31, 58, .1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(3, 31, 58, .06);
}

.card--dark {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
}

.card__image {
  inline-size: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  margin-block-end: 1rem;
}

.card p,
.feature p,
.split p,
.detail-list li {
  color: var(--muted);
}

.card a:not(.button) {
  color: var(--navy-950);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(3, 31, 58, .12);
}

.stat {
  padding: 1.4rem;
  border-inline-end: 1px solid rgba(3, 31, 58, .12);
}

.stat:last-child {
  border-inline-end: 0;
}

.stat strong {
  display: block;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-block-start: .4rem;
  color: var(--muted);
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split__image {
  inline-size: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split--reverse .split__media {
  order: 2;
}

.list {
  display: grid;
  gap: .7rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-inline-start: 1.55rem;
}

.list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .72rem;
  inline-size: .55rem;
  block-size: .55rem;
  border-radius: 50%;
  background: var(--gold-600);
}

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

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero .lead {
  color: rgba(255, 255, 255, .82);
}

.page-hero img {
  inline-size: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.breadcrumb {
  margin-block-end: 1rem;
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
}

.breadcrumb a {
  text-decoration-color: rgba(255, 255, 255, .5);
}

.detail-list {
  columns: 2;
  column-gap: 2rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style-position: inside;
}

.feature {
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid rgba(3, 31, 58, .1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq {
  display: grid;
  gap: 1rem;
}

.faq details {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(3, 31, 58, .12);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq details[open] {
  border-color: rgba(146, 99, 36, .45);
  box-shadow: 0 14px 28px rgba(3, 31, 58, .07);
}

.faq summary {
  cursor: pointer;
  color: var(--navy-950);
  font-weight: 850;
}

.faq p {
  margin-block-start: .8rem;
  margin-block-end: 0;
  color: var(--muted);
}

.cta-band {
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius);
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.contact-panel {
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid rgba(3, 31, 58, .12);
  border-radius: var(--radius);
}

.contact-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.contact-panel address {
  font-style: normal;
}

.map-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(3, 31, 58, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.map-panel img {
  display: block;
  inline-size: 100%;
  block-size: auto;
}

.map-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(3, 31, 58, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  display: block;
  inline-size: 100%;
  block-size: clamp(20rem, 38vw, 28rem);
  border: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: .35rem;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy-950);
  font-weight: 800;
}

input,
select,
textarea {
  inline-size: 100%;
  border: 1px solid rgba(3, 31, 58, .22);
  border-radius: var(--radius);
  padding: .8rem .9rem;
  color: var(--charcoal);
  background: var(--white);
  font: inherit;
}

textarea {
  min-block-size: 9rem;
  resize: vertical;
}

.site-footer {
  color: var(--white);
  background: var(--navy-950);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-block: 3.75rem;
}

.footer__logo {
  inline-size: 9.5rem;
  margin-block-end: 1rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, .72);
}

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

.site-footer h2,
.site-footer h3 {
  margin-block-end: .75rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: .35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer__bottom {
  padding-block: 1.2rem;
  border-block-start: 1px solid rgba(255, 255, 255, .14);
  font-size: .9rem;
}

.sr-only {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .topbar__inner {
    flex-direction: column;
    gap: .1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset-block-start: 100%;
    inset-inline: 0;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-block-size: calc(100vh - 8rem);
    overflow-y: auto;
    padding: 1rem;
    background: var(--page-bg);
    border-block-end: 1px solid rgba(3, 31, 58, .12);
    box-shadow: var(--shadow);
    transform-origin: top;
  }

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

  .site-nav a {
    padding: .9rem;
    border-block-end: 1px solid rgba(3, 31, 58, .1);
  }

  .site-nav a:not(.button)[aria-current="page"]::after,
  .site-nav a:not(.button):hover::after {
    display: none;
  }

  .site-nav a.button {
    margin-top: 1rem;
  }

  .section-heading,
  .split,
  .page-hero__inner,
  .contact-grid,
  .footer__main {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .grid--3,
  .grid--4,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat:nth-child(2) {
    border-inline-end: 0;
  }
}

@media (max-width: 640px) {
  .header__inner {
    min-block-size: 4.8rem;
    padding-block: .4rem;
  }

  .brand img {
    inline-size: 6.8rem;
  }

  .hero {
    min-block-size: 36rem;
  }

  .hero__content {
    padding-block: 3.5rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.65rem);
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .section,
  .page-hero__inner {
    padding-block: 3.25rem;
  }

  .hero::before {
    background:
      radial-gradient(circle at 12% 32%, rgba(3, 31, 58, .94), rgba(3, 31, 58, .78) 48%, rgba(3, 31, 58, .58) 100%),
      linear-gradient(115deg, rgba(3, 31, 58, .9), rgba(3, 31, 58, .62));
  }

  .grid--3,
  .grid--4,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    border-inline-end: 0;
    border-block-end: 1px solid rgba(3, 31, 58, .12);
  }

  .stat:last-child {
    border-block-end: 0;
  }

  .detail-list {
    columns: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__image {
    animation: hero-settle 900ms ease-out both;
  }

  .hero__copy,
  .page-hero__inner > div:first-child {
    animation: content-rise 520ms ease-out both;
  }

  .page-hero img {
    animation: image-rise 620ms ease-out 80ms both;
  }

  .stats,
  .section-heading,
  .split,
  .grid,
  .cta-band,
  .contact-grid,
  .faq {
    animation: content-rise 520ms ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }

  .site-nav.is-open {
    animation: menu-drop 180ms ease-out both;
  }
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-settle {
  from {
    opacity: .86;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes menu-drop {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
