:root {
  color-scheme: dark;
  --ink: #f6f1e8;
  --muted: #cfc8b8;
  --dim: #8f968f;
  --line: rgba(246, 241, 232, 0.18);
  --panel: rgba(13, 17, 18, 0.78);
  --accent: #d7a85c;
  --accent-dark: #2a1a08;
  --field: #101617;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 4vw, 48px);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 9, 10, 0.9) 0%, rgba(6, 9, 10, 0.7) 42%, rgba(6, 9, 10, 0.2) 74%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.38) 0%, rgba(5, 7, 8, 0.82) 100%);
}

.nav {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--muted);
  background: rgba(8, 11, 12, 0.42);
  backdrop-filter: blur(14px);
}

.hero__content {
  width: min(760px, 100%);
  margin: clamp(92px, 17vh, 190px) auto 0;
  padding-right: clamp(0px, 7vw, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 10.8ch;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 18px;
  font-weight: 800;
}

.button--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.button--ghost {
  background: rgba(8, 11, 12, 0.54);
  color: var(--ink);
}

.focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--field);
}

.focus__item {
  min-height: 230px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

.focus__item:last-child {
  border-right: 0;
}

.focus__index {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.focus h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: 0;
}

.focus p {
  max-width: 34rem;
  margin: 0;
  color: var(--dim);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: 86svh;
    padding: 18px;
  }

  .nav {
    align-items: flex-start;
  }

  .nav__link {
    max-width: 52vw;
    min-height: 38px;
    padding: 0 12px;
    overflow-wrap: anywhere;
    font-size: 0.82rem;
  }

  .hero__content {
    margin-top: 84px;
    padding-right: 0;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.1rem);
  }

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

  .button {
    width: 100%;
  }

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

  .focus__item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .focus__item:last-child {
    border-bottom: 0;
  }
}
