:root {
  --dark: #281815;
  --dark-deep: #1b100e;
  --cream: #f7eee4;
  --soft: #fffdf9;
  --card: #fff9f3;
  --gold: #f0b95b;
  --terracotta: #c65d3a;
  --button: #be5635;
  --terracotta-hover: #ad4d30;
  --ink: #38231e;
  --body: #4a332d;
  --light: #fff8f0;
  --muted: #d8c9c4;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(56, 35, 30, .09);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--body);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

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

h1, h2, h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
}

h1 { font-size: clamp(2rem, 10vw, 3rem); }
h2 { font-size: clamp(1.65rem, 7.6vw, 2.5rem); text-align: center; }
h3 { font-size: 1.1rem; }

p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

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

.container--narrow { max-width: 760px; }
.container--legal-copy { max-width: 720px; text-align: center; }
.container--faq { max-width: 960px; }

.section { padding: 52px 0; }
.section--dark { background: var(--dark); color: var(--light); }
.section--cream { background: var(--cream); }
.section--soft { background: var(--soft); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--light); }
.section--dark h2, .hero h1 { color: var(--gold); }

.section-heading { margin-bottom: 28px; text-align: center; }
.lead { font-size: 1.05rem; line-height: 1.48; text-align: center; }

.button {
  display: flex;
  width: min(100%, 430px);
  min-height: 54px;
  margin: 26px auto 0;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.15;
  transition: background-color .15s ease, transform .15s ease;
}

.button--primary { background: var(--button); color: #fff; }
.button--primary:hover { background: var(--terracotta-hover); transform: translateY(-1px); }
.button:focus-visible, .site-footer a:focus-visible, .legal-header a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.hero { padding-top: 34px; text-align: center; }
.hero__grid { display: grid; grid-template-areas: "header" "visual" "action"; }
.hero__header { grid-area: header; }
.hero__header h1 { margin-bottom: 20px; }
.hero__kicker {
  margin-bottom: 20px;
  color: var(--light);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}
.hero__visual { grid-area: visual; margin: 0 -8px 8px; }
.hero__visual img { width: 100%; }
.hero__action { grid-area: action; }
.hero__action > p { font-size: 1.05rem; }
.hero small, .offer small, .final-cta small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}

.content-card {
  margin-top: 30px;
  padding: 26px 22px;
  border: 1px solid rgba(56, 35, 30, .08);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.content-card h3 { margin-bottom: 20px; text-align: center; }

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 15px;
  padding-left: 25px;
}

.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--terracotta);
  content: "✓";
  font-weight: 900;
}

.bonus-grid { display: grid; gap: 22px; }
.bonus-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 24px;
  overflow: hidden;
  border: 1px solid rgba(240, 185, 91, .2);
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--light);
  text-align: center;
  box-shadow: var(--shadow);
}

.bonus-card__label {
  color: var(--gold);
  font-size: 1.12rem;
  font-weight: 800;
}

.bonus-card h3 {
  margin: 5px 0 8px;
  color: var(--light);
  font-size: 1.28rem;
}

.bonus-card img {
  width: 100%;
  margin: 2px auto 10px;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.bonus-card p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.45;
}

.feature-grid, .audience-grid { display: grid; gap: 18px; margin-top: 28px; }
.feature-card, .audience-card {
  padding: 22px 20px;
  border: 1px solid rgba(56, 35, 30, .08);
  border-radius: 14px;
  background: var(--card);
  color: var(--body);
  box-shadow: var(--shadow);
}

.feature-card h3, .audience-card h3 { margin-bottom: 10px; text-align: center; }
.section--dark .audience-card h3 { color: var(--ink); }
.feature-card p, .audience-card p { margin: 0; text-align: center; }

.media-section { display: grid; gap: 24px; align-items: center; }
.media-section__copy { text-align: center; }
.media-section__copy h3 { margin: 28px 0 10px; font-size: 1.25rem; }
.media-section__visual { margin: 0; }

.offer { display: grid; gap: 22px; }
.offer__header { text-align: center; }
.offer__header h2 { margin-bottom: 10px; }
.offer__header > p:not(.price) { margin-bottom: 3px; font-size: 1.08rem; }
.price {
  margin: 2px 0 0;
  color: var(--gold);
  font-size: clamp(2.7rem, 14vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.offer__visual { margin: 0; align-self: center; }
.offer__details h3 { margin-bottom: 20px; color: var(--light); text-align: center; }
.check-list--light li { color: var(--light); }
.check-list--light li::before { color: var(--gold); }

.accent-heading {
  margin: 18px 0;
  color: var(--terracotta);
  font-size: 1.1rem;
  text-align: center;
}
.container--legal-copy > p { font-size: 1rem; }
.microcopy { margin-top: 18px; font-size: .88rem !important; }

.faq-grid { display: grid; gap: 0 28px; margin-top: 30px; }
.faq-item { padding: 21px 0; border-top: 1px solid rgba(56, 35, 30, .18); }
.faq-item h3 { margin-bottom: 10px; font-size: 1.04rem; }
.faq-item p { margin: 0; font-size: .96rem; }

.final-cta { text-align: center; }
.final-cta p { font-size: 1.05rem; }

.site-footer {
  padding: 28px 0;
  background: var(--dark-deep);
  color: var(--muted);
  text-align: center;
}
.site-footer strong { color: var(--gold); font-size: 1rem; }
.site-footer p { margin: 10px 0 0; font-size: .78rem; }
.site-footer nav { display: grid; gap: 7px; margin-top: 18px; }
.site-footer nav a { color: var(--light); font-size: .82rem; text-decoration: underline; text-underline-offset: 3px; }
.site-footer .copyright { margin-top: 18px; color: #aa9c96; font-size: .72rem; }

/* Legal pages */
.legal-page { background: var(--soft); }
.legal-header { padding: 18px 0; background: var(--dark); color: var(--light); }
.legal-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.legal-header strong { color: var(--gold); font-size: .92rem; line-height: 1.2; }
.legal-header a { font-size: .82rem; font-weight: 700; }
.legal-main { width: min(820px, calc(100% - 32px)); margin: 0 auto; padding: 42px 0 56px; }
.legal-main h1 { margin-bottom: 8px; color: var(--ink); font-size: clamp(2rem, 9vw, 3rem); }
.legal-main .updated { margin-bottom: 28px; color: #75615a; font-size: .84rem; }
.legal-main h2 { margin: 32px 0 10px; font-size: 1.25rem; text-align: left; }
.legal-main h3 { margin: 22px 0 8px; font-size: 1.05rem; }
.legal-main p, .legal-main li { font-size: .97rem; line-height: 1.65; }
.legal-main ul, .legal-main ol { padding-left: 22px; }
.legal-main a { color: #8f3f29; font-weight: 700; }
.legal-note {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 10px 10px 0;
  background: var(--cream);
}
.contact-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 14px;
  background: var(--cream);
}

@media (min-width: 700px) {
  .section { padding: 72px 0; }
  .container { width: min(1120px, calc(100% - 56px)); }
  .bonus-grid, .feature-grid, .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-card { padding: 26px 24px 28px; }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-item--last { grid-column: 1 / -1; max-width: calc(50% - 14px); }
  .site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
  .mobile-only { display: none; }
}

@media (min-width: 900px) {
  .hero { padding: 72px 0; text-align: left; }
  .hero__grid {
    grid-template: "header visual" auto "action visual" 1fr / minmax(0, .95fr) minmax(460px, 1.05fr);
    column-gap: 42px;
    align-items: center;
  }
  .hero__header h1 { font-size: clamp(3rem, 5.1vw, 4.35rem); }
  .hero__kicker { max-width: 620px; font-size: 1.18rem; }
  .hero__visual { margin: 0; }
  .hero__action > p { max-width: 610px; }
  .hero__action .button { margin-left: 0; }
  .hero small { max-width: 430px; }
  .media-section { grid-template-columns: .95fr 1.05fr; gap: 44px; }
  .media-section__copy { text-align: left; }
  .media-section__copy h2 { text-align: left; }
  .media-section__copy .lead { text-align: left; }
  .offer { grid-template: "header header" auto "visual details" auto / minmax(0, 1fr) minmax(0, 1fr); column-gap: 50px; }
  .offer__header { grid-area: header; }
  .offer__visual { grid-area: visual; }
  .offer__details { grid-area: details; align-self: center; }
  .offer__details h3 { text-align: left; }
  .offer__details .button { margin-left: 0; }
  .offer__details small { max-width: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
