:root {
  --ink: #211a1f;
  --muted: #6f5f68;
  --paper: #fff8f6;
  --panel: #ffffff;
  --rose: #b81f4b;
  --rose-dark: #7c1432;
  --gold: #d7a85a;
  --teal: #0f6b68;
  --line: #eadbd8;
  --shadow: 0 18px 50px rgba(65, 25, 39, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 248, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--teal));
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-weight: 700;
  color: #55454b;
}

.nav a {
  text-decoration: none;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(184, 31, 75, 0.22);
}

.button.secondary {
  background: #fff;
  color: var(--rose-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--rose-dark);
  border-color: rgba(184, 31, 75, 0.25);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #211a1f;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 13, 16, 0.84), rgba(20, 13, 16, 0.52) 42%, rgba(20, 13, 16, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto 70px clamp(18px, 7vw, 110px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffd79a;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 82px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  min-height: 52px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.store-badge svg {
  flex: 0 0 auto;
}

.store-badge small,
.store-badge strong {
  display: block;
  line-height: 1.1;
}

.store-badge small {
  font-size: 10px;
  color: #d9d9d9;
}

.store-badge strong {
  font-size: 17px;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.section.alt {
  background: #fff;
}

.section.dark {
  color: #fff;
  background: #211a1f;
}

.section-head {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

.dark .section-head p,
.dark p {
  color: #e8dadd;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card > img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
  background: #f6ece9;
}

.card-body {
  padding: 24px;
}

.feature-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card .num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(15, 107, 104, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.profile-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.profile-card img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
  background: #f6ece9;
}

.feature-image > img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center top;
}

.article-image {
  width: 100%;
  margin: 26px 0 8px;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: center top;
  background: #f6ece9;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(184, 31, 75, 0.09);
  color: var(--rose-dark);
  font-weight: 700;
  font-size: 14px;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding-left: 30px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
  color: var(--teal);
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  color: #ffd79a;
  font-size: 32px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 42px;
  align-items: start;
}

.article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 52px);
}

.article h1 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
}

.article h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

.article p, .article li {
  color: #46383e;
  font-size: 18px;
}

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

.answer-box {
  margin: 26px 0;
  padding: 22px;
  border-left: 4px solid var(--rose);
  background: #fff3f1;
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.source-list {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.source-list a {
  color: var(--rose-dark);
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  padding: 42px clamp(18px, 5vw, 72px);
  color: #eee;
  background: #161113;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #f6dce4;
  text-decoration: none;
}

.fine {
  color: #c9b7bd;
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav, .actions {
    width: 100%;
    overflow-x: auto;
  }

  .hero-content {
    margin: 0 18px 46px;
  }

  .grid.three,
  .grid.two,
  .profile-strip,
  .stats,
  .article-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}
