:root {
  --navy: #061a33;
  --navy-raised: #082343;
  --cream: #fff8e7;
  --cream-soft: #f6eedb;
  --brass: #c9963a;
  --brass-dark: #8b5f18;
  --ink: #061128;
  --slate: #34445a;
  --muted: #6f7785;
  --white: #ffffff;
  --border-warm: #d8c49a;
  --content-width: 1160px;
  --radius-small: 8px;
  --radius-medium: 12px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.hero {
  align-items: stretch;
  color: var(--cream);
  display: flex;
  height: min(760px, 78svh);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

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

.hero-photo {
  object-fit: cover;
  object-position: center 55%;
}

.hero-shade {
  background: rgba(6, 17, 40, 0.58);
}

.site-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 50%;
  max-width: var(--content-width);
  padding: 22px 24px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.nav-brand {
  display: block;
  width: 168px;
}

.nav-brand img {
  height: 66px;
  object-fit: contain;
  object-position: left center;
  width: 143px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  padding: 7px 0;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--brass);
}

.hero-content {
  align-self: center;
  margin: 42px auto 0;
  max-width: var(--content-width);
  padding: 52px 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-eyebrow,
.eyebrow-gold {
  color: var(--brass);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 900;
  margin-bottom: 20px;
  max-width: 760px;
}

h2 {
  color: var(--navy);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 22px;
}

h3 {
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-copy {
  color: var(--cream);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  max-width: 640px;
}

.location-line {
  color: var(--cream-soft);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  text-decoration: none;
}

.button-gold {
  background: var(--brass);
  color: var(--navy);
}

.button-light {
  border-color: rgba(255, 248, 231, 0.66);
  color: var(--cream);
}

.button:hover,
.button:focus-visible {
  outline: 3px solid rgba(201, 150, 58, 0.42);
  outline-offset: 3px;
}

.next-section {
  bottom: 22px;
  color: var(--cream-soft);
  font-size: 12px;
  font-weight: 900;
  left: 50%;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.next-section span {
  color: var(--brass);
  margin-left: 6px;
}

.section {
  padding: 96px 24px;
}

.section-inner {
  margin: 0 auto;
  max-width: var(--content-width);
}

.welcome {
  background: var(--cream);
}

.welcome-layout,
.visit-layout {
  align-items: center;
  display: grid;
  gap: clamp(48px, 8vw, 104px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.lead {
  color: var(--slate);
  font-size: 19px;
  font-weight: 500;
  margin: 0;
  max-width: 560px;
}

.small-detail {
  border-left: 3px solid var(--brass);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  margin: 30px 0 0;
  padding-left: 14px;
}

.welcome-image,
.visit-image {
  margin: 0;
}

.welcome-image img,
.visit-image img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-medium);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.welcome-image figcaption {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
}

.app-section {
  background: var(--navy);
  color: var(--cream);
}

.app-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.app-heading h2 {
  color: var(--cream);
  margin-bottom: 0;
}

.launch-label {
  border: 1px solid rgba(201, 150, 58, 0.68);
  border-radius: 999px;
  color: var(--cream-soft);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 8px;
  padding: 8px 12px;
  white-space: nowrap;
}

.app-intro {
  color: var(--cream-soft);
  font-size: 18px;
  margin: 24px 0 40px;
  max-width: 620px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-medium);
  color: var(--ink);
  min-height: 230px;
  padding: 24px;
}

.feature-card h3 {
  color: var(--navy);
}

.feature-card p:last-child {
  color: var(--slate);
  font-size: 15px;
  margin: 0;
}

.feature-number {
  color: var(--brass-dark);
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 44px;
}

.visit {
  background: var(--white);
}

.visit-layout {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

address {
  color: var(--slate);
  font-size: 18px;
  font-style: normal;
  margin-bottom: 26px;
}

address strong {
  color: var(--navy);
}

.email-link {
  color: var(--brass-dark);
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

.visit-image img {
  aspect-ratio: 4 / 3;
}

.site-footer {
  background: var(--navy);
  border-top: 2px solid var(--brass);
  color: var(--cream-soft);
  padding: 46px 24px;
}

.footer-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 160px 1fr auto;
}

.footer-logo {
  height: 68px;
  object-fit: contain;
  object-position: left center;
  width: 148px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.legal-links a {
  color: var(--cream-soft);
  font-size: 13px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-footer p {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 210px;
  }

  .footer-inner {
    grid-template-columns: 140px 1fr;
  }

  .site-footer p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .hero {
    height: min(680px, 82svh);
    min-height: 560px;
  }

  .site-nav {
    padding: 14px 18px;
  }

  .nav-brand {
    width: 112px;
  }

  .nav-brand img {
    height: 54px;
    width: 110px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero-content {
    padding: 68px 20px 48px;
  }

  h1 {
    font-size: 49px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .next-section {
    bottom: 14px;
  }

  .section {
    padding: 68px 20px;
  }

  .welcome-layout,
  .visit-layout {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .welcome-image,
  .visit-image {
    grid-row: auto;
  }

  .app-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .launch-label {
    white-space: normal;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 28px;
  }

  .footer-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .legal-links {
    flex-direction: column;
    justify-content: start;
  }

  .site-footer p {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 11px;
  }

  h1 {
    font-size: 43px;
  }

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

  .button {
    width: 100%;
  }
}

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