:root {
  --bg: #f6f1e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf2;
  --text: #1f2937;
  --muted: #596579;
  --brand: #7a4f2b;
  --brand-2: #2d6a4f;
  --accent: #e7b86a;
  --ring: rgba(122, 79, 43, 0.18);
  --shadow: 0 24px 80px rgba(39, 25, 10, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 184, 106, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(45, 106, 79, 0.16), transparent 28%),
    linear-gradient(180deg, #faf6ef 0%, var(--bg) 40%, #f3ede3 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.75;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -110px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.18), transparent 72%);
}

.orb-b {
  width: 260px;
  height: 260px;
  bottom: 12vh;
  left: -90px;
  background: radial-gradient(circle, rgba(122, 79, 43, 0.14), transparent 72%);
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 10px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.top-nav a:hover {
  color: var(--text);
}

.section-grid,
.split-section,
.final-cta {
  display: grid;
  gap: 28px;
}

.hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 32px 0 44px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-2);
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  line-height: 0.96;
  margin: 0;
  color: #1d252d;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.5rem;
}

.lede,
.section p,
.hero-card__tagline,
.hero-card__footer,
.why-list p,
.feature-card p,
.steps-grid p,
.faq-panel,
.final-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

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

.hero-copy .lede {
  max-width: 56ch;
  margin: 22px 0 28px;
  font-size: 1.15rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), #8d6237);
  box-shadow: 0 16px 30px rgba(122, 79, 43, 0.28);
}

.btn-secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 79, 43, 0.18);
}

.btn-large {
  padding-inline: 28px;
  min-height: 58px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.trust-points li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 79, 43, 0.12);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.05);
}

.hero-card,
.feature-card,
.why-list article,
.steps-grid article,
.final-cta,
.faq-item,
.faq-panel {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(122, 79, 43, 0.12);
  box-shadow: var(--shadow);
}

.hero-card,
.feature-card,
.why-list article,
.steps-grid article,
.pack-card,
.final-cta,
.faq-item,
.faq-panel {
  padding: 28px;
}

.hero-card {
  border-radius: 30px;
  align-self: stretch;
}

.hero-card__badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(45, 106, 79, 0.11);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.84rem;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

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

.stat-grid article {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(122, 79, 43, 0.1);
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  font-family: Fraunces, Georgia, serif;
  color: var(--brand);
}

.stat-grid span {
  color: var(--muted);
}

.hero-card__footer {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(122, 79, 43, 0.1);
}

.section {
  padding: 48px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading.narrow {
  max-width: 620px;
}

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

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

.pack-card {
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 79, 43, 0.12);
  box-shadow: 0 18px 44px rgba(31, 41, 55, 0.06);
}

.pack-card h3,
.feature-card h3,
.why-list h3,
.steps-grid h3 {
  margin-bottom: 10px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pack-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pack-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pack-card li + li {
  margin-top: 6px;
}

.pack-card--gold .pack-tag { background: rgba(231, 184, 106, 0.25); color: #7a4f2b; }
.pack-card--green .pack-tag { background: rgba(45, 106, 79, 0.12); color: #2d6a4f; }
.pack-card--rust .pack-tag { background: rgba(122, 79, 43, 0.12); color: #7a4f2b; }



.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  align-items: start;
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-list article {
  background: rgba(255, 255, 255, 0.72);
}

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

.steps-grid article {
  min-height: 210px;
}

.steps-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(45, 106, 79, 0.1);
  color: var(--brand-2);
  font-weight: 800;
}

.faq-section {
  padding-top: 32px;
}

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

.faq-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  border-radius: 20px;
  padding: 18px 20px;
  font-size: 1rem;
  color: var(--text);
}

.faq-item strong {
  font-size: 1.3rem;
}

.faq-panel {
  display: none;
  margin-top: -4px;
  border-radius: 0 0 20px 20px;
  padding: 0 20px 18px;
  box-shadow: none;
}

.faq-item[aria-expanded="true"] + .faq-panel {
  display: block;
}

.final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin: 44px 0 56px;
  padding: 28px;
  border-radius: 28px;
}

.site-footer {
  padding: 0 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(122, 79, 43, 0.1);
}

@media (max-width: 960px) {
  .hero,
  .split-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 100%;
  }

  .pack-grid,
  .feature-grid,
  .steps-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 16px;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
