:root {
  color-scheme: light;
  --ink: #fff7ec;
  --muted: #f2d9b8;
  --accent: #f2bd55;
  --accent-strong: #0f7b5f;
  --button: #11100f;
  --button-line: rgba(255, 255, 255, .18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #17100c;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 64px clamp(20px, 6vw, 84px);
}

.hero-image,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 63% center;
}

.shade {
  background:
    linear-gradient(90deg, rgba(18, 12, 8, .92) 0%, rgba(18, 12, 8, .70) 36%, rgba(18, 12, 8, .14) 74%),
    linear-gradient(180deg, rgba(18, 12, 8, .16), rgba(18, 12, 8, .48));
}

.copy {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  padding-bottom: clamp(28px, 8vh, 84px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(56px, 10vw, 124px);
  line-height: .9;
  letter-spacing: 0;
}

.dek {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.48;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 10px 16px 10px 13px;
  border: 1px solid var(--button-line);
  border-radius: 8px;
  color: white;
  background: var(--button);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
}

.store-link:hover,
.store-link:focus-visible {
  border-color: rgba(242, 189, 85, .75);
  outline: none;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
}

.store-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-link span:last-child {
  display: grid;
  gap: 2px;
  font-size: 18px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}

.store-link small {
  font-size: 11px;
  font-weight: 650;
  color: rgba(255, 255, 255, .74);
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 32px 20px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(18, 12, 8, .06) 0%, rgba(18, 12, 8, .72) 48%, rgba(18, 12, 8, .96) 100%),
      linear-gradient(90deg, rgba(18, 12, 8, .18), rgba(18, 12, 8, .08));
  }

  .copy {
    padding-bottom: 8px;
  }

  .stores {
    gap: 10px;
  }

  .store-link {
    width: 100%;
    justify-content: center;
  }
}
