:root {
  --bg: #082517;
  --panel: rgba(245, 252, 246, 0.92);
  --text: #173126;
  --muted: #4f6a5b;
  --green: #1f5f35;
  --green-dark: #0f2f1d;
  --accent: #d68f2c;
  --line: rgba(23, 49, 38, 0.12);
  --shadow: 0 22px 60px rgba(21, 58, 40, 0.13);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Inter", sans-serif;
  color: #f6fff4;
  background:
    radial-gradient(circle at top left, rgba(255, 203, 107, 0.11), transparent 24%),
    radial-gradient(circle at top right, rgba(86, 180, 116, 0.14), transparent 26%),
    linear-gradient(180deg, #123423 0%, #0d2c1a 42%, #082517 100%);
}

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

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 80% 12%, rgba(255,255,255,0.12), transparent 18%),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  opacity: 0.42;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.site-header, .hero, .section, .site-footer, .page-main { max-width: 1200px; margin: 0 auto; padding: 24px; }
.site-header {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, #365f3a, var(--green-dark));
  color: white; font-weight: 800; box-shadow: var(--shadow);
}
.brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: 0.02em; }
.brand-tag, .eyebrow, .footer-links a { color: rgba(246, 255, 244, 0.78); }
.nav { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; }
.nav a {
  padding: 10px 14px; border-radius: 999px; border: 1px solid transparent;
  background: rgba(255,255,255,0.12);
  color: #f6fff4;
}
.nav a:hover { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.2); }

.hero {
  display: grid; grid-template-columns: 1.06fr 0.94fr; gap: 36px; align-items: center;
  padding-top: 30px; padding-bottom: 36px;
}
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; font-weight: 800;
}
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  margin: 0;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3.4rem, 6.4vw, 6.6rem); max-width: 11ch; }
h2 { font-size: clamp(2.2rem, 3.4vw, 3.6rem); }
p { line-height: 1.75; font-size: 1.02rem; }
.hero-text { max-width: 60ch; color: rgba(246, 255, 244, 0.82); }
.section-head p, .page-hero p, .policy p { color: rgba(246, 255, 244, 0.78); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 22px; }
.btn {
  padding: 14px 20px; border-radius: 999px; font-weight: 800; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
}
.primary { background: linear-gradient(145deg, #3a734a, var(--green-dark)); color: white; border: none; box-shadow: 0 14px 30px rgba(47, 109, 69, 0.28); }
.secondary { background: rgba(255,255,255,0.52); }
.stats { display: flex; gap: 18px; flex-wrap: wrap; }
.stats div, .info-panel, .feature-card, .contact-form, .contact-card, .policy-grid article {
  background: var(--panel); backdrop-filter: blur(12px);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--text);
}
.stats div {
  padding: 16px 18px; border-radius: 20px; min-width: 150px;
  border-top: 4px solid var(--accent);
}
.stats strong, .mini-row strong { display: block; font-size: 1.2rem; color: var(--green-dark); }

.hero-media, .contact-card { position: relative; }
.hero-media img, .contact-card img { border-radius: 30px; aspect-ratio: 4/5; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 18px -16px -16px 18px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 32px;
  z-index: -1;
}
.floating-card {
  position: absolute; left: 18px; bottom: 18px; padding: 18px 20px; border-radius: 22px;
  background: rgba(255,255,255,0.92); box-shadow: var(--shadow); border: 1px solid var(--line);
  min-width: 220px;
}
.floating-card span, .floating-card small { display: block; color: var(--muted); }
.floating-card strong { font-size: 1.4rem; color: var(--green-dark); margin: 5px 0; }

.section { padding-top: 28px; padding-bottom: 28px; }
.section-head { max-width: 720px; margin-bottom: 22px; }
.feature-grid, .policy-grid, .contact-layout { display: grid; gap: 22px; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card, .policy-grid article, .contact-form, .contact-card, .info-panel {
  border-radius: 30px; padding: 18px;
}
.product-card {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(244,250,244,0.9));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: var(--shadow);
  color: var(--text);
}
.product-card.featured {
  background: linear-gradient(160deg, #f4fbf4, #def0dc);
  border: 1px solid rgba(47, 109, 69, 0.18);
}
.product-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 109, 69, 0.1);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  color: var(--text);
}
.product-card p {
  color: var(--muted);
  font-size: 0.98rem;
}
.product-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #e6c36a);
}
.feature-card h3, .policy-grid h2 { margin: 16px 0 10px; font-size: 1.3rem; }
.feature-card img { border-radius: 22px; aspect-ratio: 16 / 10; }
.section-head h2, .page-hero h1, .policy h1 { color: #f7fff6; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; align-items: start; }
.checklist { list-style: none; padding: 0; margin: 20px 0 0; }
.checklist li { padding-left: 28px; position: relative; margin-bottom: 12px; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 9px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 5px rgba(214, 143, 44, 0.15);
}
.info-panel {
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.88), rgba(255,249,236,0.8)),
    var(--panel);
}
.mini-row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mini-row:last-child { border-bottom: 0; }

.page-main { padding-top: 10px; padding-bottom: 40px; }
.page-hero { max-width: 760px; margin-bottom: 24px; }
.contact-layout { grid-template-columns: 1fr 0.9fr; align-items: start; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border-radius: 16px; border: 1px solid var(--line); padding: 14px 15px; font: inherit; background: rgba(255,255,255,0.8);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 2px solid rgba(214, 143, 44, 0.35);
  outline-offset: 2px;
}
.contact-card h2 { margin-top: 18px; }
.policy { max-width: 980px; }
.policy,
.policy h1,
.policy .eyebrow,
.policy .policy-intro,
.policy .policy-callout,
.policy .policy-footer {
  color: #f6fff4;
}
.policy-intro {
  max-width: 70ch;
  color: rgba(246, 255, 244, 0.82);
}
.policy-callout, .policy-footer {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f6fff4;
}
.policy-callout strong, .policy-footer h2 {
  color: #f7fff6;
}
.policy-callout span {
  display: block;
  margin-top: 6px;
  color: rgba(246, 255, 244, 0.72);
}
.policy-grid { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
.policy-grid article h2, .policy-grid article p, .feature-card h3, .info-panel h3, .contact-card h2, .contact-form label { color: var(--text); }
.mini-row span, .stats span, .footer-links a { color: rgba(246, 255, 244, 0.72); }

.site-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-bottom: 32px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .hero, .split, .feature-grid, .contact-layout, .policy-grid, .product-grid { grid-template-columns: 1fr; }
  h1 { max-width: none; }
}

@media (max-width: 720px) {
  .site-header, .site-footer { flex-direction: column; align-items: flex-start; }
  .hero, .section, .site-header, .site-footer, .page-main { padding-left: 18px; padding-right: 18px; }
  .floating-card { left: 14px; right: 14px; }
  .stats { width: 100%; }
  .stats div { flex: 1 1 100%; }
}
