:root {
  --green: #123f2d;
  --green-2: #1f5a40;
  --sage: #cfe5c8;
  --cream: #fff8ec;
  --cream-2: #f6ead8;
  --gold: #b46d2d;
  --gold-2: #d99a52;
  --ink: #173227;
  --muted: #637468;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(18, 63, 45, .16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(207, 229, 200, .9), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(217, 154, 82, .22), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #fffdf8 45%, var(--cream-2) 100%);
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 236, .78);
  border-bottom: 1px solid rgba(18, 63, 45, .08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--green);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(18, 63, 45, .18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--green);
  font-weight: 650;
  font-size: 14px;
}

.nav-links a:not(.nav-cta) { opacity: .84; }
.nav-links a:hover { opacity: 1; }

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(18, 63, 45, .18);
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  background: rgba(18, 63, 45, .08);
  color: var(--green);
  font-size: 22px;
  width: 44px;
  height: 44px;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 82px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .18em;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--green);
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  margin-bottom: 24px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 66px);
  margin-bottom: 18px;
}

h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(18, 63, 45, .22);
}
.btn.secondary {
  background: rgba(255,255,255,.72);
  color: var(--green);
  border: 1px solid rgba(18, 63, 45, .12);
}

.hero-card {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255,255,255,.8), rgba(246,234,216,.8)),
    radial-gradient(circle at 50% 42%, rgba(207, 229, 200, .95), transparent 48%);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(18, 63, 45, .09);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(180, 109, 45, .26);
  border-radius: 28px;
}

.hero-card img {
  position: relative;
  width: min(82%, 470px);
  border-radius: 999px;
  box-shadow: 0 24px 70px rgba(18, 63, 45, .22);
}

.glow {
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: rgba(217, 154, 82, .28);
  filter: blur(48px);
  transform: translate(70px, 50px);
}

.intro-band {
  max-width: calc(var(--max) - 48px);
  margin: -30px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: 26px;
  background: rgba(18, 63, 45, .96);
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(18, 63, 45, .18);
}

.intro-band div {
  padding: 12px 18px;
  border-left: 1px solid rgba(255, 248, 236, .18);
}
.intro-band div:first-child { border-left: 0; }
.intro-band strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
}
.intro-band span {
  color: rgba(255, 248, 236, .76);
  font-size: 14px;
}

.section-title { max-width: 760px; }
.section-title.centered {
  margin-inline: auto;
  text-align: center;
}
.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.origin-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 28px;
  margin-top: 34px;
}

.origin-text, .quote-card, .product-card, .benefit-list, .cta-panel {
  border: 1px solid rgba(18, 63, 45, .09);
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 18px 60px rgba(18, 63, 45, .09);
  backdrop-filter: blur(18px);
}

.origin-text {
  padding: 38px;
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}
.origin-text p:last-child { margin-bottom: 0; }

.quote-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--green), var(--green-2));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-card span {
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: .6;
}
.quote-card p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1.25;
}

.product-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(207, 229, 200, .78);
}
.product-card.featured {
  background: linear-gradient(150deg, rgba(18,63,45,.96), rgba(31,90,64,.95));
  color: var(--cream);
  transform: translateY(-14px);
}
.product-card.featured h3, .product-card.featured p { color: var(--cream); }
.product-card .icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(180, 109, 45, .12);
  font-size: 28px;
  margin-bottom: 26px;
}
.product-card.featured .icon { background: rgba(255, 248, 236, .16); }
.product-card h3, .product-card p { position: relative; z-index: 2; }
.product-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 17px;
}

.benefits {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 36px;
  align-items: start;
}
.benefits-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.benefit-list {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit-list div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(18, 63, 45, .08);
}
.benefit-list div:last-child { border-bottom: 0; }
.benefit-list span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
}
.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.instagram-cta { padding-top: 28px; }
.cta-panel {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 38px;
  align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(217,154,82,.20), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(207,229,200,.48));
}
.cta-panel img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(18, 63, 45, .13);
}
.cta-panel h2 { max-width: 650px; }

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 44px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(18, 63, 45, .10);
}
.footer p { margin: 0; }
.footer a { color: var(--green); font-weight: 850; }

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

@media (max-width: 900px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav { position: relative; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 248, 236, .96);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .hero, .origin-grid, .benefits, .cta-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero-card { min-height: 420px; }
  .intro-band, .product-grid { grid-template-columns: 1fr; }
  .intro-band div { border-left: 0; border-top: 1px solid rgba(255, 248, 236, .18); }
  .intro-band div:first-child { border-top: 0; }
  .product-card.featured { transform: none; }
  .cta-panel { padding: 24px; }
  .cta-panel img { max-width: 360px; }
}

@media (max-width: 560px) {
  .section-pad { padding: 64px 18px; }
  .nav { padding-inline: 18px; }
  .brand span { display: none; }
  .hero-card { min-height: 330px; border-radius: 24px; }
  .hero-card::before { inset: 14px; }
  .origin-text, .quote-card, .product-card { padding: 26px; }
  .quote-card p { font-size: 24px; }
  .benefit-list div { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .footer { flex-direction: column; }
}
