:root {
  color-scheme: light;
  --ink: #231f20;
  --muted: #676061;
  --line: #ddd5d2;
  --paper: #f6f1ee;
  --white: #ffffff;
  --red: #b92524;
  --red-dark: #8f1c1d;
  --smoke: #e9e2df;
  --shadow: 0 24px 70px rgba(35, 31, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

.site-shell {
  min-height: 100vh;
  padding: clamp(18px, 3vw, 36px);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - clamp(18px, 3vw, 36px) * 2);
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.1);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0 47%, rgba(255, 255, 255, 0.72) 47%),
    radial-gradient(circle at 78% 18%, rgba(185, 37, 36, 0.26), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6f1ee 48%, #231f20 100%);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.hero__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signal {
  position: absolute;
  border: 1px solid rgba(185, 37, 36, 0.22);
  background: rgba(255, 255, 255, 0.2);
}

.signal--one {
  right: 9%;
  bottom: 13%;
  width: min(32vw, 390px);
  aspect-ratio: 1;
}

.signal--two {
  right: 22%;
  top: 12%;
  width: min(18vw, 210px);
  aspect-ratio: 1.45;
}

.signal--three {
  right: 4%;
  top: 28%;
  width: min(14vw, 160px);
  aspect-ratio: 1;
  border-color: rgba(35, 31, 32, 0.2);
}

.hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100%, 720px);
  padding: clamp(34px, 7vw, 92px);
}

.brand-logo {
  display: block;
  width: min(100%, 440px);
  height: auto;
  margin-bottom: 28px;
}

.hero-mark {
  position: absolute;
  right: clamp(-160px, -7vw, -70px);
  bottom: clamp(-72px, -4vw, -32px);
  width: min(48vw, 620px);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
}

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

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

h1 {
  margin-bottom: 16px;
  max-width: 680px;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

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

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.button:focus-visible {
  outline: 3px solid rgba(185, 37, 36, 0.3);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .site-shell {
    padding: 12px;
  }

  .hero {
    min-height: calc(100vh - 24px);
    background:
      linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
      radial-gradient(circle at 78% 18%, rgba(185, 37, 36, 0.22), transparent 36%),
      linear-gradient(135deg, #ffffff 0%, #f6f1ee 54%, #231f20 100%);
    background-position: center;
    background-size: cover;
  }

  .hero__content {
    align-self: end;
    padding: 34px 22px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .brand-logo {
    width: min(100%, 330px);
    margin-bottom: 22px;
  }

  .hero-mark {
    width: 560px;
    opacity: 0.05;
  }

  .signal {
    display: none;
  }
}
