@font-face {
  font-family: "Marine";
  src: url("/fonts/Marine-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Marine";
  src: url("/fonts/Marine-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --orange: #fba325;
  --charcoal: #4d4d4d;
  --black: #000;
  --white: #fff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(251, 163, 37, .13), transparent 28rem),
    var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  width: clamp(150px, 18vw, 240px);
  height: auto;
}

.content {
  align-self: center;
  max-width: 820px;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 800px;
  font-family: "Marine", "Inter", sans-serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.lead {
  max-width: 650px;
  margin: 36px 0;
  color: #c6c6c6;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  line-height: 1.55;
}

.contact {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 20px;
  align-items: center;
  border-radius: 4px;
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

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

.status {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #a9a9a9;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(251, 163, 37, .75);
}

@media (max-width: 600px) {
  .shell { width: min(100% - 32px, 1180px); padding: 28px 0; }
  .content { padding: 64px 0; }
  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
    letter-spacing: -.015em;
    line-height: 1.04;
  }
}
