:root {
  --endads-red: #e82328;
  --ink: #171717;
  --paper: #f7f1e6;
  --muted: #ece4d6;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--endads-red);
  color: var(--white);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--endads-red);
}

.hero {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: clamp(56px, 10vw, 120px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(rgba(23, 23, 23, 0.74), rgba(23, 23, 23, 0.74)),
    url("assets/hero-placeholder.svg") center / cover;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--endads-red);
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  font-size: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  background: var(--endads-red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  filter: brightness(1.08);
}

.section {
  padding: clamp(48px, 8vw, 84px) clamp(18px, 5vw, 64px);
}

.section-muted {
  background: var(--muted);
}

.section-inner {
  max-width: 920px;
  margin: 0 auto;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    flex-wrap: wrap;
  }
}
