.intro-page {
  background: #fffdf5;
}

.intro-article {
  overflow: hidden;
}

.intro-hero {
  min-height: calc(100vh - 69px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  padding: clamp(46px, 7vw, 96px) clamp(18px, 7vw, 104px);
  background:
    linear-gradient(135deg, rgba(247, 217, 74, 0.95), rgba(255, 253, 245, 0.7) 56%, rgba(168, 215, 161, 0.48)),
    var(--soft);
}

.intro-hero h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 8.5vw, 8.4rem);
}

.intro-lede {
  max-width: 710px;
  color: #47483f;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.58;
}

.intro-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.text-link {
  color: #3f3a20;
  font-weight: 850;
  border-bottom: 2px solid rgba(63, 58, 32, 0.28);
}

.intro-photo {
  width: min(540px, 86vw);
  margin: 0;
  justify-self: center;
  filter: drop-shadow(0 28px 64px rgba(60, 48, 15, 0.2));
  transform: rotate(3deg);
}

.intro-photo img,
.article-figure img,
.media-card img,
.split-section figure img,
.name-section figure img {
  width: 100%;
  height: auto;
}

.intro-photo img,
.article-figure img,
.media-card img,
.split-section figure img {
  border-radius: 8px;
}

figcaption {
  margin-top: 10px;
  color: rgba(71, 72, 63, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

figcaption a {
  border-bottom: 1px solid rgba(71, 72, 63, 0.32);
}

.intro-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 7vw, 104px);
}

.intro-section h2,
.intro-download h2 {
  max-width: 760px;
}

.intro-section p {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 6vw, 86px);
  background: #f1efdf;
}

.split-section.reverse {
  background: #fffdf5;
}

.split-section figure {
  width: min(560px, 88vw);
  margin: 0;
  justify-self: center;
  filter: drop-shadow(0 22px 58px rgba(55, 48, 25, 0.16));
}

.article-figure {
  max-width: 980px;
  margin: 36px 0 0;
  filter: drop-shadow(0 22px 58px rgba(55, 48, 25, 0.14));
}

.compact-figure {
  max-width: 520px;
}

.media-section {
  padding-top: 0;
  background: #f1efdf;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  margin-top: 34px;
}

.media-card {
  margin: 0;
  align-self: start;
  filter: drop-shadow(0 18px 48px rgba(55, 48, 25, 0.14));
}

.wide-media {
  align-self: center;
}

.feature-media-grid {
  margin-top: 42px;
}

.feature-summary {
  background: #fff8d7;
}

.name-section {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) minmax(240px, 420px);
  align-items: center;
  gap: clamp(18px, 4vw, 38px);
  background: linear-gradient(130deg, var(--green), #fff8c9 54%, var(--pink));
}

.name-section img {
  flex: 0 0 auto;
  border-radius: 22%;
  box-shadow: 0 8px 28px rgba(36, 29, 0, 0.16);
}

.name-section > img {
  width: 96px;
  height: 96px;
}

.name-section figure {
  margin: 0;
  filter: drop-shadow(0 16px 38px rgba(55, 48, 25, 0.12));
}

.name-section figure img {
  border-radius: 8px;
  box-shadow: none;
}

.intro-download {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(58px, 8vw, 106px) 18px;
  background: var(--ink);
  color: #fff;
}

.intro-download p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.intro-download .store-button {
  margin-top: 14px;
  color: #111;
  background: #fff;
}

@media (max-width: 860px) {
  .intro-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    transform: none;
  }

  .name-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .intro-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .intro-section p {
    font-size: 1rem;
  }

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