:root {
  color-scheme: light;
  font-family: Tahoma, Arial, sans-serif;
  background: #fff7e9;
  color: #17243b;
  line-height: 1.8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, #e9e5ff 0, transparent 24rem),
    radial-gradient(circle at 92% 35%, #d9f1ec 0, transparent 26rem), #fff7e9;
}

main {
  width: min(1080px, calc(100% - 32px));
  margin: auto;
  padding: 32px 0 56px;
}

h1,
h2 {
  margin: 0;
  color: #17243b;
  line-height: 1.3;
}

h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

p {
  margin: 12px 0 0;
  font-size: 1.08rem;
}

a {
  color: #087d72;
}

.hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  min-height: 620px;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
  border: 2px solid #17243b;
  border-radius: 36px;
  background: #fffcf6;
  box-shadow: 12px 14px 0 #17243b;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.hero-art,
.store-art {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.hero-art {
  min-height: 470px;
  border: 2px solid #17243b;
}

.eyebrow {
  width: fit-content;
  padding: 5px 13px;
  border-radius: 999px;
  background: #fff0c6;
  color: #17243b;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid #17243b;
  border-radius: 16px;
  color: #17243b;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #17243b;
  color: #fff7e9;
}

.store-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  margin: 54px 0;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 30px;
  background: #087d72;
  color: #fff;
}

.store-panel h2 {
  margin-top: 12px;
  color: #fff;
}

.store-panel .eyebrow {
  background: #fff;
}

.store-art {
  aspect-ratio: 1.95;
  border: 2px solid #fff;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 44px;
  padding: 0;
  border: 0;
  background: none;
}

.link-card {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 12px;
  padding: 22px;
  border: 1.5px solid #d8d2c5;
  border-radius: 24px;
  background: #fffcf6;
  color: #17243b;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-4px);
  border-color: #087d72;
  outline: none;
}

.link-card span,
.link-card small,
.meta {
  color: #667085;
}

.link-card strong {
  font-size: 1.25rem;
}

section:not(.store-panel, .link-grid) {
  margin: 22px 0;
  padding: 24px;
  border: 1.5px solid #d8d2c5;
  border-radius: 22px;
  background: #fffcf6;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #d8d2c5;
  color: #667085;
}

footer strong {
  color: #17243b;
}

@media (max-width: 760px) {
  main {
    width: min(100% - 20px, 680px);
    padding-top: 10px;
  }

  .hero,
  .store-panel,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 20px;
    border-radius: 26px;
    box-shadow: 6px 7px 0 #17243b;
  }

  .hero-copy {
    order: 2;
  }

  .hero-art {
    min-height: 250px;
    max-height: 360px;
  }

  .store-panel {
    margin: 38px 0;
  }

  .link-card {
    min-height: 150px;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .link-card {
    transition: none;
  }
}
