:root {
  color-scheme: light;
  --navy: #092f52;
  --ocean: #24577a;
  --teal: #72aaa8;
  --coral: #ee8068;
  --pearl: #fffaf0;
  --foam: #f1f5ee;
  --ink: #122434;
  --line: rgba(9, 47, 82, 0.18);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--ocean);
}

.site-header {
  background: var(--navy);
  color: var(--pearl);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1080px;
  padding: 18px 24px;
}

.brand {
  align-items: center;
  color: var(--pearl);
  display: inline-flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  height: 42px;
  width: 42px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--pearl);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.hero {
  align-items: center;
  background: var(--navy);
  color: var(--pearl);
  display: grid;
  min-height: 580px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: url("/assets/oyster-snob-icon.png") center / min(72vw, 680px) no-repeat;
  content: "";
  inset: 0;
  opacity: 0.19;
  position: absolute;
}

.hero-content {
  margin: 0 auto;
  max-width: 1080px;
  padding: 84px 24px 130px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: #a7d0c8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

.hero h1 {
  color: var(--pearl);
  font-size: clamp(48px, 9vw, 88px);
  margin: 12px 0 16px;
}

.hero p {
  font-size: 21px;
  max-width: 600px;
}

.button {
  background: var(--coral);
  border: 0;
  border-radius: 6px;
  color: #102b40;
  display: inline-block;
  font-weight: 800;
  margin-top: 18px;
  padding: 12px 18px;
  text-decoration: none;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 64px 24px;
}

.content {
  margin: 0 auto;
  max-width: 920px;
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.feature {
  border-left: 4px solid var(--teal);
  padding-left: 18px;
}

.feature h3 {
  margin: 0 0 8px;
}

.legal h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.legal h2 {
  font-size: 24px;
  margin-top: 36px;
}

.muted {
  color: #557080;
}

.contact {
  background: var(--pearl);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

footer {
  background: var(--navy);
  color: var(--pearl);
  padding: 28px 24px;
}

footer .content {
  align-items: center;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
}

footer a {
  color: var(--pearl);
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding-bottom: 92px;
    padding-top: 60px;
  }

  .hero p {
    font-size: 18px;
  }

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

  footer .content {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
