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

:root {
  --pine: #3C4535;
  --pine-dark: #2d3528;
  --sand: #F8EDDD;
  --offwhite: #F0EDE8;
  --rock: #DDDFDE;
  --grass: #ADB76D;
  --gold: #c9a84c;
  --gold-light: #f7f0e0;
  --ink: #1a1a1a;
  --muted: #62675e;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(26, 26, 26, .08);
  --max: 1140px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: 6px;
  background: var(--sand);
  color: var(--pine);
  font-weight: 700;
}

.skip-link:focus { top: 1rem; }

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(60, 69, 53, .97);
  color: white;
  backdrop-filter: blur(12px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: white;
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  text-decoration: none;
}

.brand svg { flex: 0 0 auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links > a {
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links > a:hover,
.nav-links > a[aria-current='page'] { color: white; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: '';
}

.menu-bars { position: relative; }
.menu-bars::before { position: absolute; top: -6px; }
.menu-bars::after { position: absolute; top: 6px; }

.mobile-menu {
  display: none;
  padding: .5rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: var(--pine);
}

.mobile-menu.open { display: grid; gap: .35rem; }

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: .55rem .75rem;
  border-radius: 7px;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary { background: var(--gold); color: var(--pine-dark); }
.btn-primary:hover { background: #d9ba64; }
.btn-dark { background: var(--pine); color: white; }
.btn-dark:hover { background: var(--pine-dark); }
.btn-light { border-color: rgba(255, 255, 255, .32); background: transparent; color: white; }
.btn-light:hover { background: rgba(255, 255, 255, .08); }

.nav-cta { min-height: 40px; padding: .58rem .9rem; color: var(--pine-dark) !important; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--pine);
  color: white;
}

.hero::after {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  top: -190px;
  border-radius: 50%;
  background: rgba(173, 183, 109, .08);
  content: '';
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: '';
}

h1, h2, h3 {
  color: var(--pine);
  font-family: 'Lora', Georgia, serif;
  line-height: 1.15;
}

.hero h1 {
  max-width: 820px;
  color: white;
  font-size: clamp(2.55rem, 6vw, 5rem);
  letter-spacing: -.035em;
}

.hero h1 em { color: var(--grass); font-weight: 400; }

.hero-copy > p {
  max-width: 700px;
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.7rem;
}

.hero-note {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
}

.price-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.price-panel-head {
  padding: 1.5rem;
  background: var(--gold-light);
  border-bottom: 1px solid var(--rock);
}

.price-label {
  color: var(--pine);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: .45rem;
  margin-top: .35rem;
  color: var(--pine);
}

.price-amount strong {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 1;
}

.price-amount span { color: var(--muted); font-weight: 600; }

.price-panel-body { padding: 1.5rem; }

.check-list { display: grid; gap: .7rem; list-style: none; }

.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: #40443d;
  font-size: .91rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: .05rem;
  color: #65702f;
  font-weight: 800;
  content: '✓';
}

.price-panel .btn { width: 100%; margin-top: 1.25rem; }

.gold-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--grass), var(--gold));
}

.proof-strip {
  padding: 1.2rem 0;
  background: white;
  border-bottom: 1px solid var(--rock);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof-item { color: var(--muted); font-size: .86rem; text-align: center; }
.proof-item strong { display: block; color: var(--pine); font-size: 1rem; }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-white { background: white; }
.section-soft { background: var(--offwhite); }
.section-dark { background: var(--pine); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-dark .section-lead { color: rgba(255, 255, 255, .72); }

.section-heading { max-width: 820px; margin-bottom: 2rem; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -.025em;
}

.section-lead {
  max-width: 760px;
  margin-top: .9rem;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading.center .section-lead { margin-right: auto; margin-left: auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.card {
  padding: 1.4rem;
  border: 1px solid var(--rock);
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 35px rgba(26, 26, 26, .04);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: var(--gold-light);
  font-size: 1.2rem;
}

.card h3 { margin-bottom: .55rem; font-size: 1.2rem; }
.card p { color: var(--muted); font-size: .92rem; }
.card a { color: var(--pine); font-weight: 700; text-underline-offset: 3px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.feature-list { display: grid; gap: 1rem; list-style: none; }

.feature-list li {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, .08);
}

.feature-list strong { display: block; margin-bottom: .2rem; color: white; }
.feature-list span { color: rgba(255, 255, 255, .68); font-size: .9rem; }

.value-card {
  padding: 1.5rem;
  border: 1px solid var(--rock);
  border-radius: 16px;
  background: var(--pine);
  color: white;
}

.value-card h3 { color: white; font-size: 1.5rem; }
.value-card > p { margin-top: .55rem; color: rgba(255, 255, 255, .7); }

.value-list { display: grid; gap: .8rem; margin-top: 1.25rem; list-style: none; }
.value-list li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .8rem; border-bottom: 1px solid rgba(255, 255, 255, .13); font-size: .9rem; }
.value-list strong { color: var(--gold); white-space: nowrap; }

.offer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, .38);
  border-radius: 16px;
  background: var(--gold-light);
}

.offer-band h3 { font-size: 1.45rem; }
.offer-band p { max-width: 720px; margin-top: .4rem; color: var(--muted); }

.faq-list { display: grid; gap: .8rem; max-width: 880px; margin: 0 auto; }

.faq-item {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--rock);
  border-radius: 12px;
  background: white;
}

.faq-item h3 { font-size: 1.08rem; }
.faq-item p { margin-top: .45rem; color: var(--muted); font-size: .93rem; }
.faq-item a { color: var(--pine); font-weight: 700; text-underline-offset: 3px; }

.resource-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.resource-link {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3rem;
  border: 1px solid var(--rock);
  border-radius: 14px;
  background: white;
  color: var(--pine);
  text-decoration: none;
}

.resource-link span { color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.resource-link strong { font-family: 'Lora', Georgia, serif; font-size: 1.15rem; }
.resource-link small { color: var(--muted); font-weight: 700; }

.final-cta { padding: clamp(3.5rem, 7vw, 5.5rem) 0; background: var(--pine); color: white; text-align: center; }
.final-cta h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta p { max-width: 700px; margin: .8rem auto 0; color: rgba(255, 255, 255, .72); }
.final-cta .hero-actions { justify-content: center; }

.site-footer { padding: 2rem 0; background: var(--pine-dark); color: rgba(255, 255, 255, .65); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-meta { font-size: .8rem; text-align: right; }
.footer-meta a { color: var(--gold); text-decoration: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.5rem; }
  .price-panel { max-width: 560px; }
  .card-grid, .resource-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .brand span { font-size: .93rem; }
  .hero { padding: 3.8rem 0; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .proof-grid, .card-grid, .card-grid.two, .resource-links { grid-template-columns: 1fr; }
  .proof-item { text-align: left; }
  .offer-band, .footer-inner { align-items: flex-start; flex-direction: column; }
  .offer-band .btn { width: 100%; }
  .footer-meta { text-align: left; }
}

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