* {
  box-sizing: border-box;
}

:root {
  --paper: #fffaf2;
  --surface: #ffffff;
  --soft: #f1ece3;
  --line: #dfd9ce;
  --ink: #243029;
  --muted: #667266;
  --accent: #54973f;
  --accent-deep: #3f7a30;
  --warm: #d98544;
  --gold: #c49a4b;
  --deep: #1f2f29;
  --danger: #8f3528;
  --shadow: 0 22px 60px rgba(37, 42, 36, 0.14);
}

body.page-private {
  --accent: #f49d61;
  --accent-deep: #e88950;
  --warm: #f49d61;
  --gold: #c6a55e;
  --deep: #54973f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.checkout-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a.button {
  font: inherit;
}

.announcement {
  background: var(--deep);
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  padding: 10px 18px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 74px;
  padding: 0 24px;
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 42vw;
  width: 118px;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--accent-deep);
  box-shadow: 0 14px 28px rgba(31, 47, 41, 0.16);
  transform: translateY(-1px);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - 154px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background-image: var(--hero-image);
  background-position: var(--hero-position, center);
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(20, 28, 24, 0.88) 0%, rgba(20, 28, 24, 0.68) 45%, rgba(20, 28, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(20, 28, 24, 0.18), rgba(20, 28, 24, 0.18));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-inner {
  align-items: center;
  display: grid;
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100svh - 154px);
  padding: 38px 24px 40px;
}

.hero-content {
  color: #fff;
  max-width: 690px;
}

.eyebrow {
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 9px;
  margin: 0 0 18px;
}

.eyebrow::before {
  background: var(--warm);
  border-radius: 999px;
  content: "";
  height: 9px;
  width: 9px;
}

h1,
h2,
h3 {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: 56px;
  line-height: 1;
  margin: 0 0 18px;
  max-width: 820px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 660px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 0 0 18px;
}

.hero-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
}

.fact {
  border-left: 2px solid rgba(255, 255, 255, 0.38);
  padding-left: 14px;
}

.fact strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.fact span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 4px;
}

.section {
  padding: 82px 24px;
}

.section.alt {
  background: #fff;
}

.section.dark {
  background: var(--deep);
  color: #fff;
}

.wrap {
  margin: 0 auto;
  max-width: 1180px;
}

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

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

.section-kicker {
  color: var(--warm);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 8px;
}

h2 {
  font-size: 42px;
  line-height: 1.08;
  margin: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card li {
  padding-left: 22px;
  position: relative;
}

.card li::before {
  color: var(--accent);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.split {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.media-pair {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.9fr 1.1fr;
}

.media-pair img,
.single-media img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.media-pair img:nth-child(2) {
  margin-top: 42px;
}

.single-media img {
  aspect-ratio: 5 / 4;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  gap: 12px;
}

.check-list li::before {
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  content: "✓";
  display: grid;
  flex: 0 0 24px;
  font-size: 14px;
  font-weight: 800;
  height: 24px;
  place-items: center;
  width: 24px;
}

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

.step {
  border-top: 2px solid var(--line);
  padding-top: 18px;
}

.step-number {
  color: var(--accent);
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.step h3 {
  font-size: 21px;
  margin: 12px 0 8px;
}

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

.offer {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.offer-price {
  align-items: baseline;
  color: #fff;
  display: flex;
  gap: 10px;
  margin: 12px 0 10px;
}

.offer-price strong {
  font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  font-size: 62px;
  line-height: 1;
}

.offer-price span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.tax-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin: 0;
}

.faq {
  display: grid;
  gap: 10px;
  margin: 0 auto;
  max-width: 820px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.footer {
  background: #171f1a;
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 24px;
}

.footer .wrap {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .grid-3,
  .steps,
  .split,
  .offer {
    grid-template-columns: 1fr;
  }

  .offer {
    align-items: start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .announcement {
    font-size: 13px;
    padding: 9px 14px;
  }

  .nav {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 110px;
  }

  .site-header .button {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: calc(100svh - 220px);
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(20, 28, 24, 0.82) 0%, rgba(20, 28, 24, 0.56) 52%, rgba(20, 28, 24, 0.22) 100%),
      linear-gradient(90deg, rgba(20, 28, 24, 0.42), rgba(20, 28, 24, 0.42));
  }

  .hero-inner {
    align-items: end;
    padding: 42px 18px 38px;
  }

  .eyebrow {
    font-size: 13px;
    margin-bottom: 13px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.03;
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-note {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hero-facts {
    display: none;
  }

  .section {
    padding: 56px 18px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p {
    font-size: 16px;
  }

  h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .card {
    padding: 20px;
  }

  .media-pair {
    grid-template-columns: 1fr 1fr;
  }

  .media-pair img:nth-child(2) {
    margin-top: 24px;
  }

  .offer-price strong {
    font-size: 52px;
  }

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

  .mobile-sticky {
    align-items: center;
    background: rgba(31, 47, 41, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    bottom: 0;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    padding: 10px 14px;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-sticky span {
    color: #fff;
    display: block;
    font-size: 13px;
    line-height: 1.2;
  }

  .mobile-sticky strong {
    color: #fff;
    display: block;
    font-family: "Quicksand", ui-sans-serif, system-ui, sans-serif;
    font-size: 19px;
    line-height: 1.1;
  }

  .mobile-sticky .button {
    min-height: 46px;
    padding: 0 17px;
    white-space: nowrap;
  }
}
