:root {
  --cream: #f5efe4;
  --cream-deep: #eee4d3;
  --green: #2f6f43;
  --green-dark: #173c27;
  --sage: #7c9676;
  --ink: #171722;
  --muted: #68655f;
  --line: #a6a39a;
  --gold: #d5a93a;
  --white: #fffaf1;
  --shadow: 0 22px 60px rgba(23, 23, 34, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(213,169,58,.20), transparent 34rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--cream) 42%, #f8f2e8 100%);
}

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

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(47,111,67,.22);
  border-radius: 999px;
  background: rgba(255,250,241,.78);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 12px;
  z-index: 10;
  box-shadow: 0 12px 38px rgba(23,23,34,.08);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { font-family: Cinzel, serif; color: var(--green); font-size: 1.1rem; letter-spacing: .04em; }
.site-nav { display: flex; gap: 22px; font-size: .92rem; color: var(--green-dark); }
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--green); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.4rem; }

.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 84px 0; }
.hero { min-height: 82vh; display: grid; grid-template-columns: 1.12fr .88fr; gap: 42px; align-items: center; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--green); }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1, h2 { font-family: Cinzel, serif; color: var(--green-dark); }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); max-width: 800px; }
h2 { font-size: clamp(2.2rem, 4.3vw, 4.25rem); }
h3 { font-size: 1.25rem; }
.mission { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.45; max-width: 680px; color: var(--ink); margin: 24px 0 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: white; box-shadow: 0 12px 28px rgba(47,111,67,.24); }
.button.secondary { border: 1px solid rgba(47,111,67,.36); color: var(--green-dark); background: rgba(255,255,255,.35); }

.hero-card, .contact-card, .about-card {
  border: 2px solid var(--line);
  border-radius: 38px;
  background: rgba(245,239,228,.82);
  box-shadow: var(--shadow);
}
.hero-card { padding: 42px; text-align: center; position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: 22px; border-radius: 28px; border: 1px solid rgba(47,111,67,.12); pointer-events: none; }
.hero-logo { width: 250px; margin: 0 auto 24px; }
.quote { font-size: 1.2rem; line-height: 1.55; color: var(--green-dark); margin: 0; }
.quote-author { color: var(--muted); margin: 12px 0 24px; }
.cta-small { color: var(--green); font-weight: 800; margin: 0; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: .98fr 1.02fr; gap: 38px; align-items: center; }
.product-image { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(23,23,34,.12); }
.product-copy { background: var(--white); border-radius: 32px; padding: 36px; border: 1px solid rgba(47,111,67,.16); }
.product-copy h3 { font-family: Cinzel, serif; color: var(--green-dark); font-size: 2rem; }
.product-copy p { color: var(--muted); line-height: 1.75; }
.check-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: "✦"; color: var(--green); position: absolute; left: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cards article, .bundle-list > div, .founders article {
  background: rgba(255,250,241,.72);
  border: 1px solid rgba(47,111,67,.18);
  border-radius: 28px;
  padding: 28px;
}
.cards h3, .bundle-list strong, .founders h3 { font-family: Cinzel, serif; color: var(--green-dark); }
.cards p, .bundle-list p, .founders p { color: var(--muted); line-height: 1.65; }

.bundle-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bundle-list span { color: var(--gold); font-weight: 800; display: block; margin-bottom: 16px; }
.bundle-list strong { display: block; font-size: 1.25rem; }

.about-card { padding: 42px; display: grid; gap: 28px; }
.about-card > div:first-child { text-align: center; max-width: 780px; margin: 0 auto; }
.about-card p { color: var(--muted); line-height: 1.7; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.role { color: var(--green) !important; font-weight: 700; margin: 8px 0; }

.contact-card { padding: 48px; text-align: center; max-width: 860px; margin: 0 auto; }
.contact-card p { color: var(--muted); line-height: 1.7; }
.contact-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.contact-links a { padding: 12px 16px; border-radius: 999px; background: var(--white); text-decoration: none; border: 1px solid rgba(47,111,67,.2); color: var(--green-dark); font-weight: 700; }
.note { font-size: .86rem; }
.site-footer { text-align: center; padding: 34px 16px 48px; color: var(--green-dark); font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 850px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 16px; right: 16px; top: 70px; padding: 18px; border-radius: 24px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; }
  .site-nav.open { display: flex; }
  .hero, .product-grid, .founders { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .hero-card { order: -1; }
  .cards, .bundle-list { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
}
