:root {
  --ink: #0d1514;
  --ink-soft: #21302e;
  --paper: #f7f5ee;
  --mist: #dfe9e3;
  --teal: #1b5b56;
  --teal-deep: #103c39;
  --brass: #b89154;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 104px clamp(22px, 5vw, 80px) 96px;
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 17, 16, 0.91) 0%, rgba(9, 17, 16, 0.74) 36%, rgba(9, 17, 16, 0.18) 78%),
    linear-gradient(180deg, rgba(9, 17, 16, 0.2) 0%, rgba(9, 17, 16, 0.46) 100%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 80px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  height: 42px;
  width: auto;
  display: block;
}

.header-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.hero__content {
  width: min(650px, 100%);
  margin-top: 28px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 11ch;
  font-size: clamp(4rem, 10vw, 9.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 700;
}

.button--primary {
  background: var(--paper);
  color: var(--ink);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.overview {
  background: var(--paper);
  padding: clamp(44px, 8vw, 86px) clamp(22px, 5vw, 80px);
}

.overview__inner {
  width: min(860px, 100%);
}

.overview h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.overview p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.75;
}

@media (max-width: 720px) {
  .hero {
    min-height: 62svh;
    align-items: end;
    padding-top: 84px;
    padding-bottom: 42px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(9, 17, 16, 0.92), rgba(9, 17, 16, 0.44)),
      linear-gradient(180deg, rgba(9, 17, 16, 0.18), rgba(9, 17, 16, 0.82));
  }

  .site-header {
    padding-top: 20px;
  }

  .brand__logo {
    height: 34px;
  }

  h1 {
    font-size: clamp(3.45rem, 18vw, 5.2rem);
  }

  .button {
    flex: 1 1 160px;
  }
}
