:root {
  --bg: #fff7ee;
  --paper: #fffef9;
  --ink: #26394a;
  --muted: #687486;
  --accent: #c97845;
  --accent-dark: #8f6246;
  --accent-soft: #faeadb;
  --leaf: #7b6f47;
  --line: rgba(38, 57, 74, 0.12);
  --shadow: 0 22px 70px rgba(43, 38, 30, 0.12);
  --small-shadow: 0 12px 32px rgba(143, 98, 70, 0.12);
  --radius: 30px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 9%, rgba(255, 232, 199, 0.82), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(250, 224, 203, 0.72), transparent 22rem),
    linear-gradient(180deg, #fff7ee 0%, #fffaf4 45%, #fff7ee 100%);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(circle, rgba(199, 120, 69, 0.13) 0 2px, transparent 2px),
    radial-gradient(circle, rgba(123, 111, 71, 0.11) 0 1.5px, transparent 1.5px);
  background-position: 0 0, 24px 36px;
  background-size: 88px 88px, 96px 96px;
}
a { color: var(--accent-dark); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
header, main, footer { max-width: 1200px; margin: 0 auto; padding: 22px; position: relative; z-index: 1; }
header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 247, 238, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--small-shadow);
  object-fit: cover;
}
.brand strong {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
}
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; font-size: 14px; }
nav a { color: var(--muted); text-decoration: none; font-weight: 650; }
nav a:hover { color: var(--accent-dark); }
main { padding-top: clamp(48px, 6vw, 70px); }
h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-grid h1 {
  grid-area: title;
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(32px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
h2, h3 { color: var(--ink); letter-spacing: -0.025em; line-height: 1.15; }
.slogan {
  display: inline-block;
  margin: 4px 0 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  border: 1px solid #f0d2bb;
  box-shadow: 0 10px 26px rgba(143, 98, 70, 0.08);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title title"
    "copy art";
  gap: 18px 48px;
  align-items: center;
  min-height: 650px;
  margin-bottom: 24px;
}
.hero-eyebrow-row {
  grid-area: eyebrow;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.hero-eyebrow-row .kicker,
.hero-eyebrow-row .slogan {
  margin: 0;
}
.hero-copy {
  grid-area: copy;
}
.hero-copy .lead {
  margin: 0;
  text-align: justify;
  text-align-last: left;
}
.hero-copy .lead + .lead {
  margin-top: 0.65em;
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  background: rgba(255, 248, 234, 0.86);
  border: 1px solid rgba(199, 120, 69, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  color: var(--leaf);
}
.lead { max-width: 700px; font-size: clamp(18px, 2vw, 22px); color: var(--muted); }
.hero-art {
  grid-area: art;
  min-height: 560px;
  position: relative;
}
.hero-collage {
  isolation: isolate;
}
.collage-piece {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: var(--shadow);
}
.collage-piece img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-piece-banner {
  left: 4%;
  top: 10%;
  width: 82%;
  aspect-ratio: 1200 / 670;
  border-radius: 34px;
  transform: rotate(-3deg);
}
.collage-piece-fox {
  right: 4%;
  top: 46%;
  width: 40%;
  aspect-ratio: 900 / 715;
  border-radius: 38px;
  transform: rotate(4deg);
}
.collage-piece-storybook {
  left: 0;
  bottom: 2%;
  width: 38%;
  aspect-ratio: 1;
  border-radius: 40px;
  transform: rotate(-8deg);
}
.card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  margin: 18px 0;
  box-shadow: var(--shadow);
}
.author-card {
  display: grid;
  grid-template-columns: minmax(160px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}
.author-media {
  display: grid;
  gap: 16px;
  max-width: 280px;
}
.author-photo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 22px;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 8px 11px 0 rgba(199, 120, 69, 0.12), var(--small-shadow);
}
.author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.social-button {
  min-width: 78px;
  padding: 10px 14px;
}
.author-text {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--ink);
}
.author-text p:first-child {
  margin-top: 0;
}
.paper-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}
a.paper-card,
.choice-card {
  box-shadow: 10px 14px 0 rgba(199, 120, 69, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.paper-card:hover,
.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 57, 74, 0.28);
  box-shadow: 12px 16px 0 rgba(123, 111, 71, 0.14);
}
a.paper-card:focus-visible,
.choice-card:focus-visible {
  outline: 3px solid rgba(38, 57, 74, 0.22);
  outline-offset: 4px;
}
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  margin: 30px 0 18px;
}
.section-heading-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}
.section-heading-row p {
  margin: 4px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.help-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.help-card {
  flex: 0 1 calc((100% - 36px) / 3);
  max-width: 368px;
  min-width: 260px;
}
.help-card img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  margin: 0 auto 18px;
  box-shadow: var(--small-shadow);
}
.help-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  text-align: center;
}
.help-card p {
  margin: 0;
  color: var(--muted);
  text-align: left;
}
.faq-section {
  margin-top: clamp(38px, 6vw, 74px);
}
.faq-section > h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--small-shadow);
}
.faq-item h3 {
  margin: 0;
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px 22px;
  text-align: left;
  font: inherit;
  font-size: 19px;
  font-weight: 850;
  cursor: pointer;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background: rgba(255, 248, 234, 0.74);
}
.faq-question:focus-visible {
  outline: 3px solid rgba(199, 120, 69, 0.25);
  outline-offset: -3px;
}
.faq-icon {
  display: inline-flex;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  animation: faq-slide-down 0.18s ease-out;
}
.faq-answer p {
  margin: 10px 0 0;
}
.faq-more {
  margin: 18px 0 0;
}
.faq-page-list {
  display: grid;
  gap: 12px;
}
.faq-page-list .faq-answer {
  padding-top: 0;
}
@keyframes faq-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.button, button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 13px 20px;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(38, 57, 74, 0.18);
}
.button.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.checkout-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 18px; }
.choice-card {
  display: block;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  color: var(--ink);
  text-decoration: none;
}
.choice-card h2 { margin-top: 10px; color: var(--ink); }
.choice-card .choice-action { display: inline-flex; margin-top: 12px; background: var(--ink); color: #fff; border-radius: 999px; padding: 10px 16px; font-weight: 800; }
.choice-card .choice-icon { font-size: 36px; line-height: 1; }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.step-number { display: block; color: var(--accent); font-size: 34px; font-weight: 900; line-height: 1; }
.offer-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
}
.offer-card h2 {
  margin: 0;
  font-size: 26px;
}
.offer-card-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}
.offer-card-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 57, 74, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 13px 20px;
  font-weight: 800;
  box-shadow: none;
}
.promo-placeholder {
  max-width: 880px;
}
.universe-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.universe-card {
  display: grid;
  grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.universe-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--small-shadow);
}
.universe-card h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}
.legal-document h2 { margin-top: 28px; }
.legal-document h3 { margin-top: 20px; }
.legal-document p { margin: 10px 0; }
.muted { color: var(--muted); }
.seller-requisites { border-top: 1px solid var(--line); margin-top: 16px; padding-top: 16px; }
dt { font-weight: 800; }
dd { margin: 0 0 12px; }
.contact-name { margin: 0 0 18px; font-size: 20px; font-weight: 850; color: var(--ink); }
label, legend { display: block; font-weight: 800; margin-top: 14px; }
fieldset { border: 1px solid var(--line); border-radius: 18px; padding: 14px 18px 18px; margin: 16px 0; background: rgba(255, 254, 249, 0.72); }
input, textarea { width: 100%; box-sizing: border-box; border: 1px solid #d7c6ad; border-radius: 14px; padding: 12px 13px; font: inherit; background: #fffdf8; }
input:focus, textarea:focus { outline: 3px solid rgba(199, 120, 69, 0.18); border-color: var(--accent); }
textarea { min-height: 110px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.checkbox input { width: auto; margin-top: 6px; }
.error { background: #fff3cd; border: 2px solid #d97706; color: #5f2500; border-radius: 14px; padding: 14px 16px; font-weight: 800; box-shadow: 0 8px 22px rgba(217, 119, 6, 0.18); }
.field-error { display: block; margin-top: 8px; background: #fff1f2; border: 2px solid #e11d48; color: #7f1d1d; border-radius: 12px; padding: 10px 12px; font-weight: 800; box-shadow: 0 8px 20px rgba(225, 29, 72, 0.16); }
.invalid-field { border-color: #e11d48 !important; box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.16); background: #fff7f7; }
footer { color: var(--muted); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 10px;
}
.footer-nav a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.footer-nav a:hover { text-decoration: underline; }
.cookie-banner {
  position: fixed;
  left: clamp(14px, 4vw, 40px);
  right: clamp(14px, 4vw, 40px);
  bottom: clamp(14px, 4vw, 32px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(38, 57, 74, 0.2);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; color: var(--ink); }
.cookie-banner a { color: var(--accent-dark); font-weight: 850; }
@media (max-width: 640px) {
  header { position: relative; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero-grid, .steps-grid, .universe-card-grid { grid-template-columns: 1fr; }
  .hero-grid {
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "art";
    gap: 16px;
  }
  .hero-eyebrow-row { align-items: flex-start; flex-direction: column; }
  .hero-grid,
  .hero-copy,
  .hero-art {
    max-width: 100%;
    min-width: 0;
  }
  .hero-grid h1 {
    max-width: 100%;
    font-size: clamp(31px, 9vw, 46px);
    white-space: normal;
    overflow-wrap: break-word;
  }
  .hero-copy .lead {
    max-width: 100%;
    text-align: left;
  }
  .offer-card-grid,
  .offer-card,
  .offer-card h2,
  .offer-card-actions {
    max-width: 100%;
    min-width: 0;
  }
  .offer-card-actions {
    width: 100%;
  }
  .universe-card { grid-template-columns: minmax(110px, 34%) minmax(0, 1fr); }
  .section-heading-row { grid-template-columns: 1fr; }
  .help-card { flex-basis: 100%; max-width: none; }
  .hero-grid { min-height: unset; }
  .hero-art { min-height: 360px; }
  .collage-piece-banner,
  .collage-piece-fox { display: none; }
  .collage-piece { border-width: 7px; }
  .collage-piece-storybook {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(100%, 360px);
    margin: 0 auto;
    transform: none;
  }
  .author-card { grid-template-columns: 1fr; }
  .author-media { max-width: 320px; }
  .author-photo { max-width: 320px; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}
