:root {
  --background: #e3d5be;
  --surface: #fcefd9;
  --navy: #173a4a;
  --charcoal: #172326;
  --slate: #5e6a68;
  --orange: #c86b3c;
  --gold: #b58438;
  --flight-blue: #2880a6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
}

.site-shell {
  width: min(100% - 3rem, 62rem);
  margin: auto;
  padding: 3rem 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: grid;
  flex: 0 0 7.5rem;
  place-items: center;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1rem;
  background: var(--surface);
}

.logo svg {
  width: 6rem;
  height: 6rem;
  overflow: visible;
}

.logo-arc,
.logo-vector {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-arc {
  stroke: var(--flight-blue);
  stroke-width: 5;
}

.logo-vector {
  stroke: var(--navy);
  stroke-width: 7;
}

.logo-launch {
  fill: var(--orange);
}

.logo-target {
  fill: var(--gold);
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 29rem;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 6vw, 4.6rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
}

.rule {
  width: 100%;
  height: 1px;
  margin: 4rem 0 1.5rem;
  background: var(--gold);
  opacity: 0.65;
}

.intro {
  max-width: 30rem;
  margin: 0 0 2rem;
  color: var(--slate);
  font-size: 1.2rem;
  line-height: 1.5;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border-radius: 0.75rem;
  background: var(--navy);
  color: var(--surface);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background-color 160ms ease, transform 160ms ease;
}

.contact:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.contact:focus-visible {
  outline: 3px solid var(--flight-blue);
  outline-offset: 4px;
}

.contact-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

footer {
  width: min(100% - 3rem, 62rem);
  margin: 0 auto 1.5rem;
  color: var(--slate);
  font-size: 0.8rem;
}

@media (max-width: 560px) {
  .site-shell {
    padding: 2rem 0;
  }

  .brand-lockup {
    display: block;
  }

  .logo {
    margin-bottom: 2rem;
  }

  .rule {
    margin-top: 3rem;
  }

  .contact {
    max-width: 100%;
  }
}
