:root {
  --cream: #faf6ef;
  --green: #2d4a3e;
  --green-dark: #22382f;
  --terra: #c96f4a;
  --terra-dark: #b25c39;
  --ink: #2b2a26;
  --muted: #7a7468;
  --line: #e7dfd2;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Segoe UI", -apple-system, Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
h1, h2, h3, .logo { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 5vw; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--cream); z-index: 10;
}
.logo { font-size: 26px; color: var(--green); letter-spacing: -0.5px; }
.logo span { color: var(--terra); }
.top nav { display: flex; gap: 22px; flex-wrap: wrap; }
.top nav a { font-size: 14px; color: var(--muted); }
.top nav a:hover { color: var(--green); }

.hero { text-align: center; padding: 84px 6vw 56px; }
.hero h1 { font-size: clamp(34px, 6vw, 58px); color: var(--green); line-height: 1.12; }
.hero p { max-width: 560px; margin: 22px auto 34px; font-size: 17px; color: var(--muted); }
.cta {
  display: inline-block; background: var(--green); color: #fff;
  padding: 14px 34px; border-radius: 999px; font-size: 15px;
}
.cta:hover { background: var(--green-dark); }

.trust {
  display: flex; justify-content: center; gap: 5vw; flex-wrap: wrap;
  padding: 18px 5vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted); text-align: center;
}

.grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; padding: 56px 5vw; max-width: 1200px; margin: 0 auto;
}
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(45, 74, 62, 0.10); }
.card-img { aspect-ratio: 1; background: #fff; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px 20px 20px; }
.card-body h3 { font-size: 20px; color: var(--green); }
.card-body p { font-size: 14px; color: var(--muted); margin: 6px 0 14px; }
.price-row { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: 700; font-size: 18px; color: var(--ink); }
.card-go { font-size: 13px; color: var(--terra); font-weight: 600; }

.about { text-align: center; padding: 24px 6vw 72px; max-width: 720px; margin: 0 auto; }
.about h2 { color: var(--green); font-size: 28px; margin-bottom: 14px; }
.about p { color: var(--muted); }

.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: 1080px; margin: 0 auto; padding: 56px 5vw 24px;
}
@media (max-width: 800px) { .product { grid-template-columns: 1fr; } }
.product-gallery img { border-radius: 14px; border: 1px solid var(--line); background: #fff; }
.product-info h1 { font-size: 34px; color: var(--green); line-height: 1.15; }
.product-info .tagline { color: var(--muted); margin: 10px 0 18px; font-size: 16px; }
.price-big { font-size: 30px; font-weight: 700; }
.ship-note { font-size: 13.5px; color: var(--muted); margin: 6px 0 22px; }
.buy-btn {
  width: 100%; padding: 16px; font-size: 16px; font-weight: 600;
  background: var(--terra); color: #fff; border: 0; border-radius: 10px; cursor: pointer;
}
.buy-btn:hover { background: var(--terra-dark); }
.bullets { margin-top: 26px; list-style: none; }
.bullets li { padding: 9px 0 9px 28px; border-bottom: 1px solid var(--line); font-size: 14.5px; position: relative; }
.bullets li::before { content: "\2713"; position: absolute; left: 4px; color: var(--terra); font-weight: 700; }

.product-story { max-width: 660px; margin: 0 auto; padding: 32px 6vw; }
.product-story p { margin-bottom: 18px; font-size: 16.5px; }
.product-story .fine { font-size: 12.5px; color: var(--muted); }
.product-promise { text-align: center; max-width: 620px; margin: 0 auto; padding: 8px 6vw 72px; }
.product-promise h2 { color: var(--green); font-size: 24px; margin-bottom: 10px; }
.product-promise p { color: var(--muted); font-size: 15px; }

.plain-page { max-width: 640px; margin: 0 auto; padding: 56px 6vw 80px; }
.plain-page h1 { color: var(--green); font-size: 30px; margin-bottom: 18px; }
.plain-page p { margin-bottom: 14px; font-size: 15.5px; }

footer { border-top: 1px solid var(--line); background: #f3ede1; }
.foot-inner {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  max-width: 1080px; margin: 0 auto; padding: 40px 5vw 12px;
}
.foot-brand { max-width: 360px; }
.foot-brand .logo { font-size: 22px; }
.foot-brand p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.foot-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.foot-links a:hover { color: var(--green); }
.foot-legal { text-align: center; font-size: 12px; color: var(--muted); padding: 14px 0 22px; }

.launch-modal {
  position: fixed; inset: 0; background: rgba(43, 42, 38, 0.55);
  display: flex; align-items: center; justify-content: center; z-index: 50; padding: 5vw;
}
.launch-card { background: var(--cream); border-radius: 14px; padding: 34px; max-width: 420px; text-align: center; }
.launch-card h3 { color: var(--green); font-size: 24px; margin-bottom: 10px; }
.launch-card p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.launch-card button {
  background: var(--green); color: #fff; border: 0; padding: 11px 30px;
  border-radius: 999px; font-size: 14px; cursor: pointer;
}
