:root {
  color-scheme: light;
  --paper: #f7f4ed;
  --ink: #11100e;
  --muted: #706b62;
  --line: #ded7c9;
  --sand: #c2a878;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

main {
  min-height: 100vh;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(28px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
}

.product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product img {
  width: min(100%, 520px);
  max-height: 78vh;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.copy {
  max-width: 620px;
}

.kicker {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--muted);
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.88;
  font-weight: 650;
}

.claim {
  margin: 28px 0 34px;
  max-width: 480px;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.22;
  color: #2b2924;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 44vh;
  border-bottom: 1px solid var(--line);
}

.statement p {
  margin: 0;
  display: flex;
  align-items: center;
  padding: clamp(28px, 6vw, 80px);
  font-size: clamp(38px, 6vw, 92px);
  line-height: 0.95;
  font-weight: 620;
}

.statement p + p {
  border-left: 1px solid var(--line);
  color: var(--sand);
}

.specs {
  padding: clamp(32px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}

.specs h2 {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

dl div {
  min-height: 132px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

dd {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.note {
  min-height: 34vh;
  display: flex;
  align-items: center;
  padding: clamp(32px, 6vw, 84px);
}

.note p {
  margin: 0;
  max-width: 980px;
  font-size: clamp(34px, 6vw, 96px);
  line-height: 0.95;
}

@media (max-width: 820px) {
  .hero,
  .statement,
  dl {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 24px 20px 42px;
  }

  .product img {
    max-height: 48vh;
  }

  h1 {
    font-size: clamp(54px, 18vw, 84px);
  }

  .statement p + p,
  dl div {
    border-left: 0;
    border-right: 0;
  }
}
