:root {
  --ink: #121212;
  --muted: #5f625f;
  --ground: #fbf7ef;
  --panel: #ffffff;
  --rule: rgba(18, 18, 18, 0.14);
  --red: #b51f2a;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 18, 18, 0.035) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 58%, rgba(181, 31, 42, 0.07) 58% 59%, transparent 59%),
    var(--ground);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: clamp(9.5rem, 18vw, 14rem);
  height: auto;
}

.header-note {
  color: var(--muted);
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: clamp(32rem, 72vh, 48rem);
  align-items: center;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.ace-mark {
  position: absolute;
  right: clamp(-2rem, 3vw, 3rem);
  bottom: clamp(-4rem, -7vw, -1rem);
  color: rgba(18, 18, 18, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18rem, 45vw, 38rem);
  font-weight: 700;
  line-height: 0.78;
  pointer-events: none;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(4.4rem, 13.5vw, 11rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.25vw, 1.6rem);
  line-height: 1.35;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.statement {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: 31rem;
  align-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 255, 255, 0.68);
}

.statement + .statement {
  border-left: 1px solid var(--rule);
}

.section-copy {
  max-width: 560px;
}

.section-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.section-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem clamp(1.25rem, 4vw, 3rem);
  justify-content: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer span {
  position: relative;
}

.site-footer span + span::before {
  position: absolute;
  top: 0.42em;
  left: clamp(-1.65rem, -2.2vw, -0.7rem);
  width: 0.36rem;
  height: 0.36rem;
  background: var(--red);
  content: "";
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .header-note {
    max-width: 11rem;
  }

  .hero {
    min-height: 34rem;
  }

  .ace-mark {
    right: -2.25rem;
    bottom: -1.5rem;
  }

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

  .statement {
    min-height: auto;
    padding: 2rem 0;
    background: transparent;
  }

  .statement + .statement {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .site-footer {
    justify-content: flex-start;
  }

  .site-footer span + span::before {
    display: none;
  }
}
