:root {
  --felt: #123f32;
  --felt-deep: #08231d;
  --ink: #171712;
  --muted: #6e695c;
  --paper: #f7f1e2;
  --line: rgba(23, 23, 18, 0.14);
  --red: #b92e2a;
  --gold: #d5a24a;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(8, 35, 29, 0.82), rgba(8, 35, 29, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

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

nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 250, 240, 0.82);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--felt-deep);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 29, 0.92), rgba(8, 35, 29, 0.58) 42%, rgba(8, 35, 29, 0.12)),
    linear-gradient(0deg, rgba(8, 35, 29, 0.88), rgba(8, 35, 29, 0.08) 44%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 10vh, 120px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(64px, 11vw, 148px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 240, 0.32);
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 250, 240, 0.12);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.experience {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy p,
.status-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.feature-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
}

.feature-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-weight: 900;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.status {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #ede2cc;
}

.status-image {
  width: 100%;
  aspect-ratio: 1688 / 780;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(23, 23, 18, 0.2);
}

ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #2d2b24;
  font-weight: 750;
}

@media (max-width: 860px) {
  .topbar {
    padding: 14px 18px;
  }

  nav {
    gap: 14px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(8, 35, 29, 0.94), rgba(8, 35, 29, 0.42) 72%),
      linear-gradient(90deg, rgba(8, 35, 29, 0.58), rgba(8, 35, 29, 0.12));
  }

  .hero-copy {
    padding: 0 20px 54px;
  }

  .experience,
  .status {
    grid-template-columns: 1fr;
  }

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

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid span {
    margin-bottom: 28px;
  }
}
