:root {
  --cream: #FFF8EF;
  --cream-2: #FFFDF8;
  --peach: #FDEFE7;
  --peach-2: #F6C8B5;
  --coral: #EFA07A;
  --terracotta: #D9825B;
  --terracotta-dark: #C96F4B;
  --sage: #D8E7D2;
  --sage-dark: #7D956F;
  --brown: #3B2F2F;
  --muted: #7A6A64;
  --line: rgba(121, 96, 75, 0.16);
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(91, 64, 43, 0.12);
  --shadow-soft: 0 14px 38px rgba(91, 64, 43, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: "Quicksand", system-ui, sans-serif;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.section-pad {
  padding: clamp(76px, 10vw, 130px) 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(121, 96, 75, 0.12);
}

.nav {
  width: min(var(--container), calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brown);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--terracotta);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(217, 130, 91, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--terracotta-dark);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  background: var(--brown);
  color: white !important;
  box-shadow: 0 12px 30px rgba(59, 47, 47, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  padding-top: clamp(60px, 9vw, 110px);
}

.hero-grid,
.two-col,
.benefits-layout,
.buy-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
}

.hero-lead {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.28;
  font-weight: 800;
  color: var(--sage-dark);
  max-width: 720px;
  margin-top: 1.25rem;
}

.hero-copy > p:not(.eyebrow):not(.hero-lead):not(.microcopy) {
  max-width: 680px;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 2rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  box-shadow: 0 18px 38px rgba(217, 130, 91, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 24px 46px rgba(217, 130, 91, 0.34);
}

.btn-soft {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.btn-outline {
  color: var(--terracotta-dark);
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(201, 111, 75, 0.35);
}

.btn.full {
  width: 100%;
}

.microcopy {
  font-size: 0.96rem;
  color: var(--muted);
  font-weight: 700;
}

.guarantee-note {
  margin: -0.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(122, 106, 100, 0.86);
  font-weight: 700;
  text-align: center;
}

.hero-media,
.image-card,
.preview-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--white);
}

.hero-media {
  transform: rotate(1.2deg);
}

.hero-media::after,
.image-card::after,
.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.8;
  pointer-events: none;
}

.shape-one {
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  background: rgba(253, 239, 231, 0.9);
  right: -12vw;
  top: 8vw;
}

.shape-two {
  width: 18vw;
  height: 18vw;
  min-width: 180px;
  min-height: 180px;
  background: rgba(216, 231, 210, 0.7);
  left: -6vw;
  bottom: 4vw;
}

.intro-section,
.print-section,
.faq-section {
  background: var(--cream-2);
}

.section-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

blockquote {
  margin: 1.4rem 0;
  padding: 1.1rem 1.3rem;
  border-left: 4px solid var(--coral);
  background: rgba(253, 239, 231, 0.64);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--brown);
}

.peach {
  background: var(--peach);
}

.sage {
  background: var(--sage);
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 auto;
}

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

.feature-card {
  min-height: 228px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: var(--cream);
  color: var(--terracotta-dark);
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  border: 1px solid var(--line);
}

.center-note {
  max-width: 820px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 1.1rem;
  color: var(--muted);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 930px;
  margin: 0 auto;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(91, 64, 43, 0.07);
  font-weight: 900;
  color: var(--brown);
}

.quote-panel {
  max-width: 960px;
  text-align: center;
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 60px rgba(76, 95, 71, 0.10);
}

.quote-panel .eyebrow {
  justify-content: center;
}

.quote-panel p {
  color: rgba(59, 47, 47, 0.76);
  max-width: 760px;
  margin-inline: auto;
}

.big-quote {
  margin: clamp(20px, 4vw, 38px) auto;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.18;
  color: var(--terracotta-dark);
}

.big-quote.small {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  margin: 1.6rem auto 2rem;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 1.8rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(91, 64, 43, 0.06);
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--terracotta-dark);
  font-weight: 900;
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 0.3rem;
}

.step p {
  margin: 0;
  font-size: 0.98rem;
}

.preview-section {
  background: var(--cream);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 18px;
}

.preview-card {
  margin: 0;
  background: white;
}

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

.preview-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.preview-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  color: var(--brown);
  font-weight: 900;
  font-size: 0.9rem;
}

.benefits-section {
  background: var(--peach);
}

.benefits-layout {
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 17px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-weight: 800;
  color: var(--brown);
}

.benefit-list span {
  color: var(--terracotta-dark);
  font-weight: 1000;
}

.buy-section {
  background: var(--cream-2);
}

.buy-card {
  align-items: stretch;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.92), rgba(253, 239, 231, 0.78));
  border: 1px solid rgba(217, 130, 91, 0.18);
  box-shadow: var(--shadow);
}

.buy-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

.checkout-box {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(217, 130, 91, 0.20);
  box-shadow: var(--shadow-soft);
}

.checkout-box ul {
  display: grid;
  gap: 10px;
  margin: 1rem 0 1.35rem;
  padding: 0;
  list-style: none;
}

.checkout-box li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 700;
}

.checkout-box li::before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 900;
}

.price-box {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--peach);
  border: 1px dashed rgba(201, 111, 75, 0.34);
  margin-bottom: 1rem;
}

.price-box span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.price-box strong {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  color: var(--brown);
}

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

details {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(91, 64, 43, 0.055);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.35rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-weight: 900;
  color: var(--brown);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--terracotta-dark);
  font-weight: 1000;
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
}

.contact-section {
  background: var(--sage);
}

.contact-section .btn {
  margin-top: 0.6rem;
}

.final-cta {
  background: radial-gradient(circle at 20% 20%, rgba(216, 231, 210, 0.7), transparent 34%), var(--cream);
  text-align: center;
}

.final-cta p {
  color: var(--muted);
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.final-cta .eyebrow {
  justify-content: center;
}

.footer {
  padding: 28px 0;
  background: var(--brown);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .benefits-layout,
  .buy-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 720px;
    margin: 0 auto;
  }

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

  .preview-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

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

  .reverse-mobile .image-card {
    order: -1;
  }
}

@media (max-width: 760px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 70px 0;
  }

  .nav {
    min-height: 68px;
  }

  .brand span:last-child {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 60;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 248, 239, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: var(--peach);
    transform: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .feature-card {
    min-height: auto;
  }

  .pill-grid {
    justify-content: flex-start;
  }

  .pill-grid span {
    width: 100%;
    justify-content: center;
  }

  .quote-panel,
  .buy-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
