:root {
  --bg: #fbf7f1;
  --paper: #fffdf8;
  --text: #25201d;
  --muted: #746b64;
  --line: #eadfd6;
  --rose: #b76e5f;
  --rose-dark: #9f5e52;
  --blush: #f6edea;
  --sage: #eef1ea;
  --shadow: 0 24px 70px rgba(75, 54, 44, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.68;
}

a {
  color: inherit;
}

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 12px;
}

.brand {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.section {
  padding: 76px 0;
}

.hero {
  padding-top: 86px;
  padding-bottom: 34px;
}

.first-story {
  padding-top: 34px;
}

.reader {
  width: min(680px, calc(100% - 40px));
  margin: 0 auto;
}

.wide {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.centered {
  text-align: center;
}

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 28px;
  max-width: 100%;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 860px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 10px;
}

p {
  margin: 0 0 19px;
  font-size: 18px;
  max-width: 100%;
  overflow-wrap: break-word;
}

blockquote {
  margin: 34px 0;
  padding: 30px;
  border-left: 4px solid var(--rose);
  background: var(--paper);
  border-radius: 8px;
  font-family: Newsreader, Georgia, serif;
  font-size: 34px;
  line-height: 1.15;
  box-shadow: var(--shadow);
}

.soft-band {
  background: linear-gradient(180deg, rgba(246, 237, 234, 0.84), rgba(238, 241, 234, 0.56));
}

.image-frame {
  margin: 38px 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.image-frame figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  background: rgba(255, 253, 249, 0.92);
  border-top: 1px solid var(--line);
}

.wide-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-image img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.portrait-image {
  max-width: 520px;
}

.chat-image {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: #f8f6f2;
}

.product-image {
  margin: 0;
}

.drafts {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.drafts span {
  display: block;
  padding: 14px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed #d8c9be;
  border-radius: 8px;
  text-decoration: line-through;
}

.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.advice-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.soft-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  margin: 12px 0;
  padding: 16px 18px;
  background: var(--paper);
  border-left: 3px solid var(--rose);
  border-radius: 8px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.product-copy {
  max-width: 620px;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.checklist article,
.columns article,
.fit-grid > div,
.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(75, 54, 44, 0.07);
}

.checklist article {
  padding: 24px;
}

.checklist article::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--rose);
}

.checklist p,
.columns p,
.fit-grid p {
  color: var(--muted);
  font-size: 16px;
}

.columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 36px 0 42px;
}

.columns article {
  padding: 26px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.fit-grid > div {
  padding: 34px;
}

.offer-card {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px;
  text-align: center;
}

.label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  font-family: Newsreader, Georgia, serif;
  font-size: 64px;
  line-height: 1;
  margin: 28px 0;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  width: min(480px, 100%);
  margin: 28px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.offer-card li {
  padding-left: 28px;
  position: relative;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.micro {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
}

summary {
  min-height: 58px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
}

details p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
}

.final .button {
  margin-top: 20px;
}

.footer {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 64px;
  color: var(--muted);
  text-align: center;
}

.footer p {
  font-size: 14px;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 18px;
  flex-wrap: wrap;
}

.footer a {
  font-size: 14px;
}

@media (max-width: 780px) {
  .site-header {
    width: min(330px, calc(100vw - 40px));
    padding-top: 22px;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 18px;
  }

  .first-story {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.1;
  }

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 16.5px;
    line-height: 1.64;
  }

  blockquote {
    font-size: 28px;
    padding: 22px;
  }

  .product-layout,
  .checklist,
  .columns,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 34px;
  }

  .portrait-image {
    max-width: none;
  }

  .offer-card {
    width: min(330px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
    padding: 34px 22px;
  }

  .reader,
  .wide,
  .footer {
    width: min(330px, calc(100vw - 40px));
    margin-left: auto;
    margin-right: auto;
  }

  .button {
    width: 100%;
  }
}
