:root {
  --bg: #f6f0e4;
  --ink: #2b2418;
  --muted: #6d5e4a;
  --accent: #c06b3e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 36px;
}

.hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: center;
}

.hero img {
  height: auto;
  border-radius: 12px;
  display: block;
}

.hero-art {
  width: 320px;
  max-width: 100%;
}

.mini-shot {
  width: 480px;
  max-width: 100%;
}

.mini-figure {
  margin: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

.mini-figure figcaption {
  margin: 0 0 2px;
  font-size: 12px;
  color: #4e3f2f;
  transform: translate(-34px, 17px);
}

.brand {
  margin: 0 0 6px;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

h2 {
  margin: 0 0 6px;
  font-size: 20px;
}

.subtitle {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--muted);
}

.tagline {
  margin: 0 0 10px;
  color: var(--muted);
}

.meta {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}

.screens {
  margin: 18px 0;
}

.why {
  margin: 14px 0 18px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 18px;
  align-items: start;
}

.why ul {
  margin: 6px 0 0;
  padding-left: 16px;
  color: var(--muted);
}

.screens ul {
  margin: 6px 0 0;
  padding-left: 16px;
  color: var(--muted);
}

.style-inline em {
  color: #4f86c6;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-variant: small-caps;
}

.screens ul ul {
  margin-top: 4px;
  padding-left: 16px;
}

.why ul ul {
  margin-top: 4px;
  padding-left: 16px;
}

.why li {
  margin: 4px 0;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.full-shot img {
  max-width: 760px;
  margin: 0 auto;
}

.full-shot figcaption {
  margin-bottom: 2px;
  font-size: 12px;
  color: #4e3f2f;
  text-align: center;
  transform: translateY(25px);
}

figcaption {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.download {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.download-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.download-icon {
  width: 52px;
  height:52px;
  border-radius: 10px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .mini-shot {
    width: 320px;
  }

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

@media (max-width: 600px) {
  .footer {
    flex-direction: column;
  }
}
