:root {
  --ink: #151716;
  --muted: #59605c;
  --line: #dfe3df;
  --paper: #f6f7f4;
  --white: #ffffff;
  --teal: #315f59;
  --wood: #ad815b;
  --shadow: 0 22px 70px rgba(21, 23, 22, 0.14);
}

* {
  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;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(21, 23, 22, 0.18);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand small,
.nav-link,
.eyebrow,
.info-card span,
footer {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  opacity: 0.78;
}

.nav-link {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(21, 23, 22, 0.16);
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  align-items: center;
  padding: 104px clamp(18px, 6vw, 78px) 72px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 23, 22, 0.72), rgba(21, 23, 22, 0.28) 43%, rgba(21, 23, 22, 0.05)),
    linear-gradient(0deg, rgba(21, 23, 22, 0.22), rgba(21, 23, 22, 0));
}

.hero-content {
  position: relative;
  display: grid;
  width: min(100%, 720px);
  gap: 22px;
  color: var(--white);
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.info-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100% - 36px, 1120px);
  margin: -38px auto 0;
  position: relative;
  z-index: 2;
}

.info-card {
  display: grid;
  min-height: 160px;
  align-content: end;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-card span {
  color: var(--teal);
}

.info-card strong {
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(100% - 36px, 1120px);
  margin: 54px auto 28px;
  color: var(--muted);
}

footer a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 82vh;
    padding: 96px 18px 72px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(21, 23, 22, 0.78), rgba(21, 23, 22, 0.36));
  }

  .info-band {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .info-card {
    min-height: 128px;
  }
}
