* {
  box-sizing: border-box;
}

:root {
  --ink: #1d2530;
  --muted: #6c7581;
  --ivory: #fbf7ed;
  --linen: #efe2cf;
  --rose: #d7a3a9;
  --berry: #853c52;
  --plum: #2f243a;
  --mint: #c8ddd1;
  --line: rgba(47, 36, 58, 0.16);
  --white: #fffdf8;
  --shadow: 0 26px 64px rgba(47, 36, 58, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 163, 169, 0.45), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(200, 221, 209, 0.6), transparent 24%),
    var(--ivory);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page,
.site-header,
.footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.page {
  width: min(1160px, calc(100% - 40px));
}

.site-header,
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.site-header {
  padding: 26px 0;
}

.brand {
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}

.nav,
.footer nav,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a,
.footer a {
  color: var(--muted);
}

.nav a:hover,
.footer a:hover,
.hero-card a:hover,
.legal-card a:hover,
.thanks-card a:hover {
  color: var(--berry);
}

main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  min-height: 560px;
}

.hero-copy,
.hero-card,
.summary-section,
.guides-section,
.benefits-section,
.process-section,
.delivery-section,
.faq-section,
.request-section,
.disclaimer,
.legal-card,
.thanks-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-copy {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(215, 163, 169, 0.36)),
    var(--white);
  padding: clamp(32px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card {
  background: var(--plum);
  color: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-label,
.tag {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 900;
}

.card-label {
  color: rgba(255, 253, 248, 0.72);
}

.tag {
  color: var(--berry);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 5.25rem);
  line-height: 0.96;
  max-width: 10ch;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  margin-bottom: 14px;
}

h3 {
  margin-bottom: 8px;
}

.lead,
.summary-section p,
.benefit-list p,
.delivery-section p,
.faq-grid p,
.request-copy p,
.legal-card p,
.thanks-card p {
  color: var(--muted);
}

.hero-card p {
  color: rgba(255, 253, 248, 0.78);
}

.button {
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--berry);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--berry);
  color: var(--white);
}

.button.primary:hover {
  background: var(--plum);
  border-color: var(--plum);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.74);
  color: var(--berry);
}

.summary-section,
.delivery-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  padding: 34px;
}

.guides-section,
.benefits-section,
.process-section,
.faq-section,
.request-section,
.disclaimer,
.legal-card,
.thanks-card {
  background: var(--white);
  padding: 34px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: #f6ecdf;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.price-card.raised {
  background: var(--mint);
  transform: translateY(-12px);
}

.number {
  color: var(--berry);
  font-weight: 900;
  margin-bottom: 28px;
}

.price-card strong {
  margin-top: auto;
  color: var(--berry);
  font-size: 1.55rem;
}

.benefits-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.benefit-list article,
.faq-grid article,
.process-list li,
.thanks-grid div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: #f8f0e6;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-list span {
  display: block;
  color: var(--berry);
  font-weight: 900;
  margin-bottom: 10px;
}

.process-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.request-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
}

.request-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8f0e6;
  color: var(--ink);
  padding: 14px 16px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(133, 60, 82, 0.22);
  border-color: var(--berry);
}

textarea {
  resize: vertical;
}

.disclaimer {
  background: var(--plum);
}

.disclaimer p {
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
  margin-bottom: 0;
}

.footer {
  padding: 34px 0 44px;
  color: var(--muted);
}

.footer p {
  margin: 6px 0 0;
}

.legal-main,
.thanks-main {
  padding: 38px 0;
}

.legal-card,
.thanks-card {
  width: min(860px, 100%);
  margin: 0 auto;
}

.legal-card h1,
.thanks-card h1 {
  max-width: 12ch;
}

.legal-card h2 {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  font-size: 1.22rem;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.thanks-grid strong,
.thanks-grid span {
  display: block;
}

.thanks-grid span {
  color: var(--muted);
  margin-top: 6px;
}

@media (max-width: 980px) {
  .hero-section,
  .summary-section,
  .delivery-section,
  .benefits-section,
  .request-section,
  .pricing-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .price-card.raised {
    transform: none;
  }
}

@media (max-width: 720px) {
  .page,
  .site-header,
  .footer {
    width: min(100% - 24px, 1160px);
  }

  .site-header,
  .footer {
    flex-direction: column;
  }

  .benefit-list,
  .faq-grid,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card,
  .summary-section,
  .guides-section,
  .benefits-section,
  .process-section,
  .delivery-section,
  .faq-section,
  .request-section,
  .legal-card,
  .thanks-card {
    padding: 24px;
  }

  h1 {
    max-width: none;
  }
}
