:root {
  --bg: #fff7e8;
  --ink: #3f2419;
  --muted: #7a594a;
  --brick: #b94d32;
  --brick-dark: #86341f;
  --clay: #d5754b;
  --sand: #f0c985;
  --gold: #e7a84d;
  --cream: #fffdf6;
  --line: rgba(92, 49, 31, 0.16);
  --shadow: rgba(112, 54, 30, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  background:
    linear-gradient(90deg, rgba(185, 77, 50, 0.08) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(185, 77, 50, 0.06) 1px, transparent 1px) 0 0 / 64px 64px,
    radial-gradient(circle at 14% 18%, rgba(231, 168, 77, 0.28), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 52%, #f7dfb7 100%);
}

a {
  color: inherit;
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  align-items: center;
  padding: 72px clamp(20px, 7vw, 96px);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  display: block;
  content: "";
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 44%),
    var(--brick);
  box-shadow:
    0 0 0 1px rgba(70, 31, 21, 0.08) inset,
    0 18px 38px var(--shadow);
}

.hero::before {
  width: 142px;
  height: 52px;
  right: 8vw;
  bottom: 7vh;
  transform: rotate(-7deg);
}

.hero::after {
  width: 92px;
  height: 48px;
  right: 22vw;
  top: 13vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 44%),
    var(--sand);
  transform: rotate(9deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--brick-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: clamp(56px, 13vw, 164px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.35;
}

.store-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid var(--brick-dark);
  border-radius: 6px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--brick);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.store-link:hover,
.store-link:focus-visible {
  background: #ffe3b4;
  box-shadow: 3px 3px 0 var(--brick);
  transform: translate(3px, 3px);
}

.store-link:focus-visible {
  outline: 3px solid rgba(134, 52, 31, 0.32);
  outline-offset: 5px;
}

.brick-scene {
  position: absolute;
  right: clamp(-80px, 3vw, 56px);
  bottom: clamp(26px, 10vh, 112px);
  z-index: 1;
  display: grid;
  width: min(44vw, 520px);
  min-width: 300px;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  transform: rotate(-6deg);
}

.brick {
  min-height: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(70, 31, 21, 0.08);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 45%),
    var(--brick);
  box-shadow: 0 12px 22px var(--shadow);
}

.brick--wide {
  grid-column: span 2;
}

.brick--red {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 45%),
    var(--brick);
}

.brick--clay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 45%),
    var(--clay);
}

.brick--sand {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 45%),
    var(--sand);
}

.brick--gold {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 45%),
    var(--gold);
}

.features {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: 72px clamp(20px, 7vw, 96px) 88px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 246, 0.62);
}

.features h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-height: 56px;
  padding: 17px 18px 17px 62px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.45;
}

.feature-list li::before {
  position: absolute;
  top: 19px;
  left: 4px;
  width: 38px;
  height: 20px;
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 50%),
    var(--brick);
  box-shadow: 18px 18px 0 var(--sand);
  content: "";
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 320px;
  }

  .hero::before {
    right: 18px;
    bottom: 32px;
  }

  .hero::after {
    top: auto;
    right: 176px;
    bottom: 112px;
  }

  .brick-scene {
    right: 22px;
    bottom: 76px;
    width: min(78vw, 420px);
    min-width: 260px;
    gap: 8px;
  }

  .features {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-right: 18px;
    padding-bottom: 264px;
    padding-left: 18px;
  }

  .lead {
    margin-bottom: 26px;
  }

  .store-link {
    width: 100%;
  }

  .brick-scene {
    right: -18px;
    bottom: 62px;
    min-width: 250px;
  }

  .features {
    padding-right: 18px;
    padding-bottom: 64px;
    padding-left: 18px;
  }

  .feature-list li {
    padding-right: 0;
  }
}
