:root {
  --navy-950: #071d33;
  --navy-900: #0d233e;
  --navy-800: #123052;
  --navy-700: #17466e;
  --blue-600: #1f7fc4;
  --brass-600: #b8892f;
  --brass-500: #d5a642;
  --brass-300: #f0c969;
  --orange-500: #f47b20;
  --paper: #f6f1e6;
  --paper-2: #fffaf0;
  --white: #ffffff;
  --ink: #162033;
  --muted: #5f6d7d;
  --line: rgba(13, 35, 62, 0.16);
  --line-on-dark: rgba(240, 201, 105, 0.34);
  --shadow: 0 24px 70px rgba(7, 29, 51, 0.22);
  --display: "Roboto Slab", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

*, *::before, *::after {
  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.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--brass-300);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--brass-300);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 42px;
  color: var(--white);
}

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

.brand img {
  width: 58px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  color: #dbe5ef;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 9px 15px;
  background: rgba(7, 29, 51, 0.38);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.header-actions .header-email {
  border-color: rgba(240, 201, 105, 0.66);
  color: var(--brass-300);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 66% 50%;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 29, 51, 0.97) 0%, rgba(7, 29, 51, 0.88) 36%, rgba(7, 29, 51, 0.46) 64%, rgba(7, 29, 51, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 29, 51, 0.82) 0%, rgba(7, 29, 51, 0.1) 44%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 7px;
  background: linear-gradient(90deg, var(--brass-500), var(--orange-500), var(--brass-300));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, calc(100% - 48px));
  margin-left: clamp(24px, 7vw, 112px);
  padding-top: 188px;
  padding-bottom: 84px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  color: var(--white);
  font-size: 4.25rem;
  font-weight: 800;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.25);
}

.hero-copy {
  max-width: 46rem;
  margin: 24px 0 0;
  color: #d9e5ef;
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: var(--brass-300);
  color: var(--navy-950);
  box-shadow: 0 18px 38px rgba(7, 29, 51, 0.22);
}

.button-primary:hover {
  background: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 29, 51, 0.42);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: var(--brass-300);
  color: var(--brass-300);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.status-item {
  min-height: 132px;
  padding: 30px 42px;
  background: var(--paper-2);
}

.status-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-600);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-item strong {
  display: block;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.25;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: end;
  padding: 82px clamp(24px, 6vw, 96px);
}

.contact-copy {
  max-width: 720px;
}

.contact-copy .eyebrow {
  color: var(--brass-600);
}

h2 {
  color: var(--navy-900);
  font-size: 2.35rem;
  font-weight: 800;
}

.contact-copy p:last-child {
  max-width: 46rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-list a,
.contact-list span {
  overflow-wrap: anywhere;
  color: var(--navy-900);
  font-size: 1.06rem;
  font-weight: 900;
  text-decoration-color: rgba(184, 137, 47, 0.5);
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 42px;
  background: var(--navy-950);
  color: #c8d4df;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    padding: 18px 24px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(7, 29, 51, 0.96) 0%, rgba(7, 29, 51, 0.86) 44%, rgba(7, 29, 51, 0.48) 100%),
      linear-gradient(0deg, rgba(7, 29, 51, 0.72), rgba(7, 29, 51, 0));
  }

  .hero-media img {
    object-position: 72% 50%;
  }

  .hero-content {
    width: min(620px, calc(100% - 40px));
    margin-inline: auto;
    padding-top: 138px;
    padding-bottom: 62px;
  }

  h1 {
    max-width: 11ch;
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .status-strip,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .status-item {
    min-height: auto;
    padding: 24px;
  }

  .contact-section {
    gap: 28px;
    padding-block: 58px;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    padding: 14px 16px;
  }

  .brand img {
    width: 48px;
    height: 42px;
  }

  .header-actions a {
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .hero-content {
    width: min(100% - 32px, 520px);
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.42rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-links {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.92rem;
  }

  .contact-section {
    padding-inline: 16px;
  }

  .contact-list {
    padding: 20px;
  }

  h2 {
    font-size: 1.75rem;
  }

  .site-footer {
    display: grid;
    padding: 24px 16px;
  }
}

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