:root {
  color: #111111;
  background: #f4f1ea;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 241, 234, 0.8)),
    #f4f1ea;
}

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.brand-mark {
  width: clamp(136px, 18vw, 220px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #313131;
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 168px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: center;
  gap: 44px;
  padding: 58px 0 48px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #7a2d22;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: 72px;
  line-height: 0.97;
  letter-spacing: 0;
}

.lede {
  margin: 28px 0 0;
  max-width: 620px;
  color: #3a3a3a;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

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

.primary-action,
.secondary-action,
.contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

.primary-action {
  background: #111111;
  color: #ffffff;
}

.secondary-action,
.contact-link {
  background: transparent;
}

.shannon-visual {
  width: min(100%, 390px);
  justify-self: end;
}

.shannon-canvas {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.18);
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.metric {
  min-height: 148px;
  background: #f8f6f1;
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.metric span,
.metric small {
  color: #55514c;
  font-size: 13px;
  line-height: 1.35;
}

.metric strong {
  color: #111111;
  font-size: 30px;
  line-height: 1;
}

.brief {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0 0;
}

.brief h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.brief p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #3d3a35;
  line-height: 1.65;
}

html[data-api="offline"] .secondary-action {
  border-color: #9b3428;
  color: #9b3428;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 24px;
  }

  h1 {
    font-size: 58px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    min-height: 58px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 42px 0 36px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  .lede {
    font-size: 17px;
  }

  .shannon-visual {
    width: min(84%, 340px);
    justify-self: center;
    margin-top: 4px;
  }

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

  .brief {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav-actions {
    gap: 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 38px;
  }
}
