@import url("https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --ink: #243235;
  --action: #bf5540;
  --action-hover: #a84735;
  --coral: #eb7d68;
  --support: #407b67;
  --cream: #faf5ea;
  --topbar: #fff9f0;
  --white: #ffffff;
  --body: #4d5a5e;
  --muted: #8a8273;
  --muted-cool: #6b7578;
  --border: #ede4d2;
  --border-strong: #d8cfbe;
  --light-text: #c9d2d0;
  --warm-white: #fff9f0;
  --yellow: #f4c95d;
  --soft-green: #8fbf9f;
  --shadow: 0 2px 12px rgba(36, 50, 53, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 50px;
  line-height: 1.16;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.2vw, 36px);
  line-height: 1.22;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.3;
}

p {
  margin-bottom: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 14px 40px;
  background: var(--topbar);
  border-bottom: 1px solid #f0e8d8;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 28px;
  height: 38px;
}

.brand-lockup {
  display: grid;
  gap: 1px;
}

.brand-lockup strong {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 17.5px;
  line-height: 1;
}

.brand-lockup small {
  color: var(--action);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.topbar nav a {
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.topbar nav a:hover,
.footer a:hover {
  color: var(--action);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--action);
  border: 1.5px solid var(--action);
}

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

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border-strong);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.button.full {
  width: 100%;
}

.nav-cta {
  min-height: 40px;
  padding: 11px 22px;
  font-size: 13.5px;
}

.hero {
  display: grid;
  grid-template-columns: 11fr 9fr;
  min-height: 650px;
  background: var(--cream);
}

.hero-copy {
  align-self: center;
  width: 100%;
  max-width: 640px;
  padding: 84px 40px 84px max(40px, calc((100vw - 1100px) / 2 + 40px));
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--support);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 560px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 26px;
  color: var(--muted-cool);
  font-size: 12.5px;
  font-weight: 700;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.trust-row i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--action);
}

.hero-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.hero-photo::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 14%;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(250, 245, 234, 0) 100%);
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.section {
  padding: 88px 40px;
}

.scene-real,
.inside,
.kit-stack,
.ideal,
.testimonials,
.final-cta {
  background: var(--white);
}

.before-after,
.process,
.bncc,
.bonus,
.plans,
.faq {
  background: var(--cream);
}

.container {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

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

.chip-grid span {
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.ideal .chip-grid span {
  background: var(--cream);
  font-size: 13.5px;
}

.section-head {
  max-width: 710px;
  margin-bottom: 34px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.narrow {
  max-width: 760px;
}

.section-head p:not(.eyebrow) {
  color: var(--body);
  font-size: 16px;
}

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

.photo-card {
  position: relative;
  margin: 0;
  padding: 12px 12px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 4px 0;
  color: var(--body);
  font-size: 14px;
}

.photo-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 99px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-badge.danger {
  background: var(--action);
}

.photo-badge.calm {
  background: var(--support);
}

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

.preview-card {
  overflow: hidden;
  min-height: 100%;
  padding: 0 18px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream);
}

.preview-card.tall {
  grid-row: span 2;
}

.preview-card img {
  width: calc(100% + 36px);
  height: 170px;
  margin: 0 -18px 16px;
  object-fit: cover;
  object-position: top center;
}

.preview-card.tall img {
  height: 430px;
}

.preview-card h3 {
  font-size: 20px;
}

.preview-card p,
.bonus-card span,
.step-card p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 12px;
  object-fit: cover;
}

.step-card h3 {
  font-size: 19px;
}

.stack-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 58px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--support);
  font-weight: 800;
  content: "✓";
}

.check-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 18px 0 0;
}

.check-list.compact li {
  font-size: 14px;
}

.micro-copy {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}

.stack-image,
.bncc-grid img,
.ideal figure img {
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.bncc-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: center;
}

.bncc-grid p {
  max-width: 610px;
  font-size: 16px;
}

.bncc-seal {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 15px;
  border-radius: 99px;
  background: var(--support);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 800;
}

.ideal-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}

.ideal figure {
  margin: 0;
}

.receive-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 22px;
}

.mega-bundle-showcase {
  width: min(100%, 1040px);
  margin: 0 auto 30px;
  padding: 8px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(36, 50, 53, 0.14);
}

.mega-bundle-showcase img {
  width: 100%;
  border-radius: 12px;
}

.main-kit-card,
.sum-card {
  padding: 28px;
  border-radius: 16px;
}

.main-kit-card {
  background: var(--white);
  box-shadow: var(--shadow);
}

.sum-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--light-text);
}

.sum-card h3 {
  color: var(--cream);
}

.sum-card strong {
  color: var(--warm-white);
}

.sum-card mark {
  color: var(--coral);
  background: transparent;
  font-weight: 800;
}

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

.bonus-card {
  overflow: hidden;
  padding: 0 16px 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.bonus-card img {
  width: calc(100% + 32px);
  height: 180px;
  margin: 0 -16px 15px;
  object-fit: cover;
  object-position: top center;
}

.bonus-card p {
  margin-bottom: 7px;
  color: var(--action);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bonus-card s,
.plan-heading s {
  color: var(--muted);
}

.bonus-card h3 {
  font-size: 17px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  width: min(100%, 880px);
  margin: 0 auto;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 16px;
}

.plan-card.essential {
  border: 1px solid var(--border);
  background: var(--cream);
}

.plan-card.complete {
  border: 2px solid var(--ink);
  background: var(--white);
}

.plan-stack {
  width: 100%;
  height: 190px;
  margin-bottom: 20px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--cream);
}

.plan-heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 4px;
}

.plan-heading h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.plan-heading strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  white-space: nowrap;
}

.complete .plan-heading strong {
  color: var(--action);
}

.plan-heading s {
  margin-right: 6px;
  font-size: 13.5px;
  font-weight: 700;
}

.plan-card .button {
  margin-top: auto;
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 99px;
  background: var(--action);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.guarantee,
.footer {
  background: var(--ink);
}

.guarantee {
  padding-top: 72px;
  padding-bottom: 72px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 44px;
  align-items: center;
}

.guarantee-cta-row {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 12px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  padding: 26px 28px 22px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 52px;
  color: var(--action);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.28;
}

.testimonial-card blockquote {
  margin: 0 0 14px;
  padding-top: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.testimonial-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--body);
}

.guarantee .eyebrow,
.guarantee h2,
.guarantee p {
  color: var(--coral);
}

.guarantee h2 {
  color: var(--cream);
}

.guarantee p:not(.eyebrow) {
  max-width: 540px;
  color: var(--light-text);
}

.guarantee-seal {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 3px solid var(--warm-white);
  border-radius: 50%;
  color: var(--cream);
}

.guarantee-seal strong {
  font-family: "Lora", Georgia, serif;
  font-size: 36px;
  line-height: 1;
}

.guarantee-seal span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  color: var(--light-text);
  font-size: 13.5px;
  font-weight: 700;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: center;
}

.timeline span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.timeline li:nth-child(1) span {
  background: var(--coral);
}

.timeline li:nth-child(2) span {
  background: var(--yellow);
}

.timeline li:nth-child(3) span {
  background: var(--soft-green);
}

.faq-container,
.final-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

details {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(36, 50, 53, 0.05);
}

details + details {
  margin-top: 10px;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

details p {
  margin-top: 12px;
  color: var(--body);
  font-size: 14.5px;
}

.final-cta {
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}

.final-inner img {
  width: 42px;
  height: 56px;
  margin: 0 auto 22px;
}

.final-inner h2 {
  font-size: 38px;
}

.centered-actions {
  justify-content: center;
}

.footer {
  padding: 34px 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100%, 1100px);
  margin: 0 auto;
}

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

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer strong {
  color: var(--cream);
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
}

.footer p {
  margin-top: 3px;
  color: #93a2a0;
  font-size: 13px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer a {
  color: var(--light-text);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer a:hover {
  color: var(--warm-white);
}

@media (max-width: 920px) {
  .topbar {
    gap: 18px;
    padding: 12px 18px;
  }

  .topbar nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
    padding: 56px 22px 32px;
  }

  h1 {
    max-width: 420px;
    font-size: 34px;
    line-height: 1.12;
  }

  h2 {
    font-size: 27px;
  }

  .hero-sub {
    max-width: 560px;
    font-size: 16px;
  }

  .hero-photo {
    min-height: 280px;
  }

  .hero-photo::before {
    inset: 0 0 auto;
    width: auto;
    height: 24%;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(250, 245, 234, 0) 100%);
  }

  .hero-photo img {
    min-height: 280px;
    height: 280px;
  }

  .section {
    padding: 56px 22px;
  }

  .split-grid,
  .compare-grid,
  .step-row,
  .stack-layout,
  .bncc-grid,
  .ideal-grid,
  .receive-grid,
  .guarantee-grid {
    grid-template-columns: 1fr;
  }

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

  .preview-card.tall {
    grid-row: auto;
  }

  .preview-card.tall img {
    height: 250px;
  }

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

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

  .plan-card.complete {
    order: -1;
    margin-top: 13px;
  }

  .guarantee-grid {
    justify-items: center;
    text-align: center;
  }

  .timeline {
    justify-self: center;
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand-lockup strong {
    font-size: 16px;
  }

  .nav-cta {
    padding-right: 15px;
    padding-left: 15px;
  }

  .button {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .topbar .button {
    width: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .chip-grid,
  .preview-grid,
  .bonus-grid,
  .check-list.compact,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .preview-card img,
  .preview-card.tall img {
    height: 220px;
  }

  .plan-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .final-inner h2 {
    font-size: 30px;
  }
}
