:root {
  --ink: #03070b;
  --navy: #071522;
  --navy-2: #0a1b2b;
  --navy-3: #10283b;
  --ivory: #f5eddb;
  --muted: #c9c0ac;
  --gold: #d6aa4f;
  --gold-2: #f0cc78;
  --gold-3: #8b6126;
  --line: rgba(214, 170, 79, .28);
  --panel: rgba(7, 21, 34, .78);
  --shadow: 0 28px 70px rgba(0, 0, 0, .45);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.is-hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #03070b;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(214, 170, 79, .34);
  background:
    linear-gradient(180deg, rgba(2, 6, 12, .96), rgba(2, 6, 12, .86));
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto;
  padding: .65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 14rem;
}

.brand img {
  width: 13.8rem;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--gold-2);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .28rem;
  flex-wrap: wrap;
}

.nav-links a {
  position: relative;
  border: 1px solid rgba(214, 170, 79, .12);
  color: rgba(245, 237, 219, .76);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .07rem;
  padding: .58rem .62rem;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: .6rem;
  bottom: .28rem;
  left: .6rem;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: rgba(214, 170, 79, .52);
  background: rgba(214, 170, 79, .1);
  color: var(--gold-2);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  opacity: .85;
}

.hero {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 5, 10, .97), rgba(3, 12, 21, .9)),
    #03070b;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 72%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(22rem, .82fr);
  align-items: center;
  gap: 3.5rem;
  width: min(1180px, calc(100% - 2rem));
  min-height: 0;
  margin: 0 auto;
  padding: 4.2rem 0 4rem;
}

.hero-reverse .hero-copy {
  order: 2;
}

.hero-reverse .hero-media {
  order: 1;
}

.hero-background {
  min-height: 590px;
}

.hero-background::before {
  background:
    linear-gradient(90deg, rgba(1, 5, 10, .94) 0%, rgba(3, 12, 21, .82) 42%, rgba(3, 8, 14, .42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .78)),
    var(--page-hero-image) center / cover no-repeat;
}

.hero-background .hero-inner {
  grid-template-columns: minmax(0, 680px);
  min-height: 590px;
}

.hero-background .hero-copy {
  max-width: 680px;
  padding: 2rem;
  border-left: 1px solid rgba(214, 170, 79, .5);
  background: rgba(2, 6, 12, .42);
}

.hero-background .hero-media {
  display: none;
}

.hero-panorama .hero-inner {
  grid-template-columns: 1fr;
  gap: 2.2rem;
}

.hero-panorama .hero-copy {
  max-width: 860px;
}

.hero-panorama .hero-media img {
  aspect-ratio: 1672 / 941;
}

.hero-overlay .hero-inner {
  position: relative;
  grid-template-columns: minmax(0, 680px);
  min-height: 560px;
  overflow: hidden;
}

.hero-overlay .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 2rem;
  border: 1px solid rgba(214, 170, 79, .34);
  background: rgba(2, 6, 12, .72);
}

.hero-overlay .hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  max-width: none;
  border: 0;
}

.hero-overlay .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 12, .9), rgba(2, 6, 12, .42));
}

.hero-overlay .hero-media img {
  height: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

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

.hero-media {
  margin: 0;
  border: 1px solid rgba(214, 170, 79, .32);
  background: #050c14;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  opacity: .96;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--gold-2);
  font-size: .73rem;
  font-weight: 760;
  letter-spacing: .18rem;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 3.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h1,
h2,
h3,
.metric-value {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--ivory);
  font-size: 2.85rem;
}

.hero-body {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: rgba(245, 237, 219, .82);
  font-size: 1rem;
}

.hero-feature {
  margin: 1rem 0 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3rem;
  border: 1px solid rgba(214, 170, 79, .56);
  padding: .8rem 1.05rem;
  color: var(--ivory);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .12rem;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease;
}

.button:hover {
  border-color: var(--gold-2);
  background: rgba(214, 170, 79, .08);
}

.button.primary {
  background: #c59b45;
  border-color: #c59b45;
  color: #05080d;
}

.button svg {
  width: 1rem;
  height: 1rem;
}

.section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 170, 79, .16);
  background: #06111b;
}

.section.alt {
  background: #03070b;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.25rem;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ivory);
  font-size: 2.1rem;
}

h3 {
  margin: 0 0 .75rem;
  color: var(--gold-2);
  font-size: 1.5rem;
}

p {
  margin: 0;
  color: rgba(245, 237, 219, .78);
}

p + p {
  margin-top: 1.1rem;
}

.lead {
  max-width: 820px;
  color: rgba(245, 237, 219, .84);
  font-size: 1rem;
}

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

.grid.five {
  grid-template-columns: repeat(5, 1fr);
}

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

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.metric-card,
.authority-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(214, 170, 79, .25);
  background: rgba(4, 12, 20, .82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.card {
  padding: 1.5rem;
}

.card::before,
.metric-card::before,
.authority-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .72;
}

.authority-strip .section-inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.authority-strip {
  background: rgba(2, 6, 12, .96);
}

.carousel-wrapper {
  position: relative;
}

.authority-carousel {
  overflow: hidden;
  position: relative;
  margin-right: -4rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.authority-card {
  flex: 0 0 calc(28% - 0.75rem);
  min-width: 260px;
  padding: 1.25rem;
}

.card-carousel {
  overflow: hidden;
  position: relative;
  margin-right: -4rem;
}

.card-carousel .carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.card-carousel .card {
  flex: 0 0 calc(28% - 0.75rem);
  min-width: 280px;
}

@media (max-width: 900px) {
  .card-carousel {
    margin-right: -3rem;
  }

  .card-carousel .card {
    flex: 0 0 calc(42% - 0.5rem);
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .card-carousel {
    margin-right: -2rem;
  }

  .card-carousel .card {
    flex: 0 0 85%;
    min-width: auto;
  }
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(214, 170, 79, .5);
  background: rgba(214, 170, 79, .08);
  color: var(--gold-2);
  cursor: pointer;
  transition: all .2s ease;
}

.carousel-btn:hover {
  background: rgba(214, 170, 79, .2);
  border-color: var(--gold-2);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(214, 170, 79, .5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .2s ease;
}

.carousel-dot:hover {
  border-color: var(--gold-2);
}

.carousel-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .authority-carousel {
    margin-right: -3rem;
  }

  .authority-card {
    flex: 0 0 calc(42% - 0.5rem);
    min-width: 240px;
  }
}

@media (max-width: 640px) {
  .authority-carousel {
    margin-right: -2rem;
  }

  .authority-card {
    flex: 0 0 85%;
    min-width: auto;
  }
}

.authority-icon,
.division-icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: .95rem;
  border: 1px solid rgba(214, 170, 79, .35);
  color: var(--gold-2);
}

.authority-icon svg,
.division-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.subsidiary-logo {
  width: 100%;
  margin: 0 0 1rem;
  border: 1px solid rgba(214, 170, 79, .24);
  background: #020814;
}

.subsidiary-logo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.authority-card h3,
.card h3 {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 780;
  letter-spacing: .1rem;
  line-height: 1.32;
  text-transform: uppercase;
}

.authority-card p,
.card p {
  font-size: .94rem;
}

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

.split-reverse {
  grid-template-columns: minmax(18rem, .7fr) minmax(0, 1.05fr);
}

.split-reverse > *:first-child {
  order: 2;
}

.split-reverse > *:last-child {
  order: 1;
}

@media (max-width: 800px) {
  .split-reverse > *:first-child,
  .split-reverse > *:last-child {
    order: unset;
  }
}

.crest-panel {
  display: grid;
  place-items: center;
  min-height: 24rem;
  border: 1px solid rgba(214, 170, 79, .26);
  background: #050c14;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3);
}

.crest-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .96;
}

.metric-card {
  padding: 1.35rem;
}

.metric-value {
  color: var(--gold-2);
  font-size: 3rem;
}

.metric-label {
  margin-top: .35rem;
  color: rgba(245, 237, 219, .82);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .12rem;
  text-transform: uppercase;
}

.metric-card p {
  margin-top: .75rem;
  font-size: .92rem;
}

.division-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.division-card .button {
  width: fit-content;
  margin-top: auto;
}

.image-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.image-tile {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(214, 170, 79, .25);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}

.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 11, .95) 0%, rgba(3, 7, 11, .7) 40%, rgba(3, 7, 11, .3) 100%);
  z-index: 1;
  transition: background .3s ease;
}

.image-tile:hover::before {
  background: linear-gradient(to top, rgba(3, 7, 11, .98) 0%, rgba(3, 7, 11, .8) 50%, rgba(3, 7, 11, .5) 100%);
}

.image-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .4s ease, opacity .3s ease;
}

.image-tile:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.image-tile-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.5rem;
}

.image-tile h3 {
  margin: 0 0 .5rem;
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 780;
  letter-spacing: .1rem;
  text-transform: uppercase;
}

.image-tile p {
  margin: 0;
  font-size: .94rem;
  color: rgba(245, 237, 219, .85);
}

.image-tile.full-width {
  grid-column: 1 / -1;
  min-height: 320px;
}

.image-tile.full-width .image-tile-content {
  max-width: 680px;
}

@media (max-width: 1080px) {
  .image-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-tile.full-width {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .image-tile-grid {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 240px;
  }
}

.text-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.text-list li {
  border-left: 1px solid var(--gold);
  padding-left: 1rem;
  color: rgba(245, 237, 219, .78);
}

.contact-grid {
  align-items: start;
}

.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 7, 11, .92), rgba(3, 7, 11, .85), rgba(3, 7, 11, .92));
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 4rem 2rem;
}

.cta-content .eyebrow {
  justify-content: center;
}

.cta-content .eyebrow::after {
  content: "";
  width: 3.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.05rem;
  color: rgba(245, 237, 219, .8);
  margin-bottom: 2rem;
}

.cta-content .button {
  min-width: 220px;
}

@media (max-width: 640px) {
  .cta-section {
    min-height: 350px;
  }

  .cta-content h2 {
    font-size: 1.85rem;
  }

  .cta-content {
    padding: 3rem 1.5rem;
  }
}

.legacy-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.legacy-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.legacy-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 7, 11, .95) 0%, rgba(3, 7, 11, .85) 50%, rgba(3, 7, 11, .6) 100%);
}

.legacy-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: .9;
}

.legacy-hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 4rem 2rem 4rem;
  margin-left: calc((100% - min(1180px, calc(100% - 2rem))) / 2);
}

.legacy-hero-content .eyebrow {
  margin-bottom: 1rem;
}

.legacy-hero-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.legacy-hero-content > p {
  font-size: 1.02rem;
  color: rgba(245, 237, 219, .82);
  margin-bottom: 1rem;
}

.legacy-hero-content > p:last-of-type {
  margin-bottom: 2rem;
}

.legacy-hero-content .button {
  min-width: 180px;
}

@media (max-width: 900px) {
  .legacy-hero {
    min-height: 450px;
  }

  .legacy-hero-content {
    margin-left: 1rem;
    padding: 3rem 1.5rem;
  }

  .legacy-hero-background::after {
    background: linear-gradient(to right, rgba(3, 7, 11, .95) 0%, rgba(3, 7, 11, .9) 60%, rgba(3, 7, 11, .75) 100%);
  }
}

@media (max-width: 640px) {
  .legacy-hero {
    min-height: auto;
  }

  .legacy-hero-content {
    max-width: 100%;
    margin-left: 0;
    padding: 3rem 1rem;
  }

  .legacy-hero-content h2 {
    font-size: 1.85rem;
  }

  .legacy-hero-background::after {
    background: rgba(3, 7, 11, .88);
  }
}

.alternating-blocks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 320px;
  border: 1px solid rgba(214, 170, 79, .2);
  background: rgba(4, 12, 20, .6);
  overflow: hidden;
}

.alt-block:nth-child(even) .alt-block-image {
  order: 2;
}

.alt-block:nth-child(even) .alt-block-content {
  order: 1;
}

.alt-block-image {
  position: relative;
  overflow: hidden;
}

.alt-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .4s ease, opacity .3s ease;
}

.alt-block:hover .alt-block-image img {
  transform: scale(1.03);
  opacity: 1;
}

.alt-block-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.alt-block-content .block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(214, 170, 79, .4);
  color: var(--gold-2);
}

.alt-block-content .block-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.alt-block-content h3 {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

.alt-block-content p {
  font-size: 1rem;
  color: rgba(245, 237, 219, .8);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .alt-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .alt-block-image {
    height: 220px;
    order: 1 !important;
  }

  .alt-block-content {
    order: 2 !important;
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .alt-block-image {
    height: 180px;
  }

  .alt-block-content {
    padding: 1.5rem;
  }

  .alt-block-content h3 {
    font-size: 1.25rem;
  }
}

.section-hero {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.section-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(3, 7, 11, .75) 0%, rgba(3, 7, 11, .92) 100%);
}

.section-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.section-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 4rem 2rem;
}

.section-hero-content .eyebrow {
  justify-content: center;
}

.section-hero-content .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-hero-content .eyebrow::after {
  content: "";
  width: 3.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-hero-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.section-hero-content .lead {
  max-width: 720px;
  margin: 0 auto;
}

.section-hero-content .lead p {
  font-size: 1.05rem;
  color: rgba(245, 237, 219, .85);
}

.section-hero-content > p {
  font-size: 1.05rem;
  color: rgba(245, 237, 219, .85);
  max-width: 720px;
  margin: 0 auto 1rem;
}

.section-hero-content > p:last-of-type {
  margin-bottom: 2rem;
}

.closing-hero {
  min-height: 400px;
}

.closing-hero .section-hero-background::after {
  background: linear-gradient(to right, rgba(3, 7, 11, .92) 0%, rgba(3, 7, 11, .8) 50%, rgba(3, 7, 11, .5) 100%);
}

.closing-hero .section-hero-content {
  text-align: left;
  max-width: min(1180px, calc(100% - 2rem));
  width: 100%;
  padding: 4rem 0;
}

.closing-hero .section-hero-content .eyebrow {
  justify-content: flex-start;
}

.closing-hero .section-hero-content .eyebrow::before {
  display: none;
}

.closing-hero .section-hero-content .eyebrow::after {
  display: none;
}

.closing-hero .section-hero-content .lead {
  max-width: 600px;
  margin: 0 0 2rem;
}

.closing-hero .section-hero-content > p {
  max-width: 600px;
  margin: 0 0 1rem;
}

.closing-hero .section-hero-content > p:last-of-type {
  margin-bottom: 2rem;
}

.closing-hero .section-hero-content .button {
  min-width: 200px;
}

@media (max-width: 900px) {
  .section-hero {
    min-height: 380px;
  }

  .section-hero-content h2 {
    font-size: 1.9rem;
  }

  .closing-hero .section-hero-content {
    padding: 3rem 1rem;
  }
}

@media (max-width: 640px) {
  .section-hero {
    min-height: 320px;
  }

  .section-hero-content {
    padding: 3rem 1.5rem;
  }

  .section-hero-content h2 {
    font-size: 1.7rem;
  }

  .closing-hero {
    min-height: auto;
  }

  .closing-hero .section-hero-background::after {
    background: rgba(3, 7, 11, .88);
  }
}

/* Closing CTA Section */
.closing-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.closing-cta-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0;
}

.closing-cta-content .eyebrow {
  justify-content: center;
}

.closing-cta-content .eyebrow::before {
  background: linear-gradient(90deg, transparent, var(--gold));
}

.closing-cta-content .eyebrow::after {
  content: "";
  width: 3.8rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.closing-cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.closing-cta-content > p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.closing-cta-content .button {
  min-width: 200px;
}

@media (max-width: 640px) {
  .closing-cta-content h2 {
    font-size: 1.7rem;
  }

  .closing-cta-content > p {
    font-size: 1rem;
  }
}

.contact-form {
  display: grid;
  gap: .85rem;
}

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

.field label {
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .13rem;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(214, 170, 79, .25);
  border-radius: 0;
  background: rgba(255, 255, 255, .04);
  color: var(--ivory);
  font: inherit;
  padding: .85rem .9rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(214, 170, 79, .45);
  background: rgba(255, 255, 255, .06);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
  background: rgba(214, 170, 79, .08);
  box-shadow: 0 0 0 3px rgba(214, 170, 79, .15), 0 0 20px rgba(214, 170, 79, .1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 237, 219, .35);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d6aa4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 1.2rem;
  padding-right: 2.8rem;
  cursor: pointer;
}

.field select option {
  background: var(--navy);
  color: var(--ivory);
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.chip {
  padding: .55rem .9rem;
  border: 1px solid rgba(214, 170, 79, .35);
  background: rgba(255, 255, 255, .03);
  color: rgba(245, 237, 219, .75);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05rem;
  cursor: pointer;
  transition: all .2s ease;
}

.chip:hover {
  border-color: rgba(214, 170, 79, .6);
  background: rgba(214, 170, 79, .1);
  color: var(--ivory);
}

.chip.selected {
  border-color: var(--gold);
  background: rgba(214, 170, 79, .2);
  color: var(--gold-2);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.site-footer {
  background: #020509;
  border-top: 1px solid rgba(214, 170, 79, .24);
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(17rem, 1.3fr) repeat(4, minmax(8rem, .7fr));
  gap: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 16rem;
}

.footer-text {
  max-width: 35rem;
  color: rgba(245, 237, 219, .7);
  font-size: .95rem;
}

.footer-col h3 {
  color: var(--gold-2);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 780;
  letter-spacing: .13rem;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: .45rem;
  padding: 0;
  margin: .8rem 0 0;
  list-style: none;
}

.footer-col a,
.footer-col li {
  color: rgba(245, 237, 219, .68);
  font-size: .92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(214, 170, 79, .16);
  color: rgba(245, 237, 219, .5);
  font-size: .82rem;
}

.reveal {
  opacity: 0;
  transition: opacity .5s ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (max-width: 1080px) {
  .grid.five,
  .grid.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-reverse .hero-copy,
  .hero-reverse .hero-media {
    order: initial;
  }

  .hero-media {
    max-width: 42rem;
  }

  .hero-background .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    top: 5.4rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    max-height: calc(100vh - 6rem);
    overflow: auto;
    padding: 1rem;
    border: 1px solid rgba(214, 170, 79, .32);
    background: rgba(2, 6, 12, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.8rem);
    transition: opacity .2s ease, transform .2s ease;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: .9rem;
  }

  .split,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    align-items: center;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .metric-value {
    font-size: 2.65rem;
  }

  .hero-background .hero-copy {
    padding: 1.4rem;
  }

  .hero-panorama .hero-media img,
  .hero-media img {
    aspect-ratio: 1672 / 941;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: auto;
  }

  .brand img {
    width: 10.5rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner,
  .section-inner,
  .footer-inner,
  .nav-shell {
    width: min(100% - 1.2rem, 1180px);
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-body,
  .lead {
    font-size: 1rem;
  }

  .metric-value {
    font-size: 2.25rem;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .grid.five,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

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