/* Chop Once, Cook Faster — landing page */

:root {
  --cream: #F7F3EB;
  --cream-dark: #EFE8DC;
  --forest: #1F3D2B;
  --forest-deep: #163022;
  --terracotta: #C45C26;
  --terracotta-hover: #A94C1E;
  --sage: #8FA88A;
  --sage-soft: #D4DFD0;
  --text: #1F3D2B;
  --text-muted: #4A5F50;
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(31, 61, 43, 0.12);
  --radius: 12px;
  --max: 1120px;
  --font-serif: "Libre Baskerville", "Georgia", "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--terracotta-hover);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--forest);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 36rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.85rem;
}

.section-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-on-dark {
  background: var(--terracotta);
  color: var(--white);
}

.btn-on-dark:hover {
  background: #d96a30;
  color: var(--white);
}

.btn-note {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.btn-note.on-dark {
  color: rgba(247, 243, 235, 0.78);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-copy .lead {
  margin: 1rem 0 1.75rem;
}

.hero-cta {
  margin-top: 0.25rem;
}

.cover-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
}

.cover-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 2px 8px rgba(31, 61, 43, 0.08);
  border: 1px solid rgba(31, 61, 43, 0.08);
  background: var(--white);
}

.cover-frame img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.cover-badge {
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* Sections */
.section {
  padding: 4rem 0;
}

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

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

.section-forest h2,
.section-forest h3 {
  color: var(--cream);
}

.section-forest .section-intro,
.section-forest p {
  color: rgba(247, 243, 235, 0.85);
}

.divider {
  width: 3rem;
  height: 3px;
  background: var(--terracotta);
  border: none;
  margin: 0 0 1.25rem;
}

.divider.centered {
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

/* Problem */
.pain-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pain-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--white);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--terracotta);
  box-shadow: 0 2px 10px rgba(31, 61, 43, 0.05);
}

.pain-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* Promise */
.promise-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--sage-soft);
  box-shadow: var(--shadow);
  max-width: 40rem;
}

.promise-box p + p {
  margin-top: 1rem;
}

.highlight {
  color: var(--terracotta);
  font-weight: 700;
}

/* What you get */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(31, 61, 43, 0.08);
  transition: border-color 0.2s ease;
}

.feature-card:hover {
  border-color: var(--sage);
}

.feature-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 40rem;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--terracotta);
  margin-top: 0.2rem;
}

/* How it works */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem 1.5rem;
  border-top: 3px solid var(--terracotta);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Trust */
.trust-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: rgba(247, 243, 235, 0.08);
  border: 1px solid rgba(247, 243, 235, 0.18);
  border-radius: var(--radius);
}

.trust-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--sage);
  margin: 0 auto 0.85rem;
}

.trust-item p {
  font-size: 0.95rem;
  color: rgba(247, 243, 235, 0.8);
  margin-top: 0.4rem;
}

/* Offer recap */
.offer-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.5rem;
  border: 1px solid var(--sage-soft);
  box-shadow: var(--shadow);
}

@media (min-width: 800px) {
  .offer-panel {
    grid-template-columns: 1fr auto;
    padding: 2.5rem;
  }
}

.offer-list {
  list-style: none;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.offer-list li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--text-muted);
}

.offer-list svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--terracotta);
  margin-top: 0.25rem;
}

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

.offer-cta .btn {
  width: 100%;
  min-width: 14rem;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 44rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 61, 43, 0.1);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-body {
  padding: 1rem 1.35rem 1.25rem;
  color: var(--text-muted);
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 4.5rem 0;
  background: var(--forest-deep);
  color: var(--cream);
}

.final-cta h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.final-cta .lead {
  margin: 0 auto 1.75rem;
  color: rgba(247, 243, 235, 0.8);
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: var(--forest);
  color: rgba(247, 243, 235, 0.65);
  font-size: 0.875rem;
  text-align: center;
}

.footer p + p {
  margin-top: 0.35rem;
}

.footer a {
  color: var(--sage);
}


/* Promo pricing */
.price-block {
  margin-top: 0.85rem;
  margin-bottom: 0.15rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  line-height: 1.1;
}

.price-promo {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: -0.01em;
}

.price-original {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.72;
}

.price-original s {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.price-label {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.offer-cta .price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta .price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.price-block-on-dark .price-promo {
  color: #e8a57a;
}

.price-block-on-dark .price-original {
  color: rgba(247, 243, 235, 0.55);
  opacity: 1;
}

.price-block-on-dark .price-label {
  color: rgba(247, 243, 235, 0.65);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mt-2 {
  margin-top: 2rem;
}
