:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #efeee8;
  color: #11110f;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow-x: hidden;
  background-color: #efeee8;
  background-image:
    linear-gradient(rgba(17, 17, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: #11110f;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  border-color: #11110f;
  border-style: solid;
  border-width: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  border-bottom-width: 1px;
}

.wordmark {
  text-decoration: none;
  letter-spacing: -0.04em;
  text-transform: none;
  font-size: 1rem;
}

.wordmark strong {
  color: #f04a24;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: #f04a24;
  border-radius: 50%;
}

main {
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
}

.hero {
  min-width: 0;
  width: min(100%, 90rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(16rem, 0.7fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
}

.hero-copy,
.note {
  min-width: 0;
}

.kicker,
.note-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.kicker span {
  color: #f04a24;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(4rem, 11vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.intro {
  max-width: 42rem;
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.note {
  position: relative;
  min-height: 14rem;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  border: 1px solid #11110f;
  background: #f04a24;
}

.note-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.note-label {
  margin-bottom: 0.75rem;
}

.note p:last-child {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 650;
}

.site-footer {
  border-top-width: 1px;
}

::selection {
  background: #11110f;
  color: #ffffff;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    padding-inline: 1.25rem;
  }

  .status {
    font-size: 0;
  }

  .status-dot {
    width: 0.65rem;
    height: 0.65rem;
  }

  main {
    padding: 3rem 1.25rem 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .intro {
    margin-top: 2rem;
  }

  .note {
    min-height: 11rem;
  }
}
