/* Google Fonts — optional enhancement, site works fine without it */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --moss:        #2d4a2d;
  --moss-mid:    #3d6b3d;
  --leaf:        #5a8f5a;
  --sage:        #8ab88a;
  --mint:        #c8e0c0;
  --foam:        #edf5e8;
  --paper:       #f8fdf5;
  --white:       #ffffff;
  --ink:         #1a2e1a;
  --ink-mid:     #3a5a3a;
  --ink-soft:    #6a8a6a;
  --border:      #cce0c0;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,253,245,0.96);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(45,74,45,0.1); }

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--moss);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--leaf);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--moss); }

/* Language toggle */
.lang-toggle {
  display: flex;
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 14px;
  border: none;
  border-radius: 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-soft);
  transition: background .2s, color .2s;
}
.lang-btn.active {
  background: var(--moss);
  color: #fff;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5vw 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(90,143,90,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 70%, rgba(138,184,138,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-leaf {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  border-radius: 50% 5% 50% 5%;
}
.hero-leaf-1 { top: 8%; left: 4%; width: 160px; height: 160px; background: var(--leaf); transform: rotate(-30deg); }
.hero-leaf-2 { bottom: 10%; right: 4%; width: 120px; height: 120px; background: var(--sage); border-radius: 5% 50% 5% 50%; transform: rotate(20deg); }
.hero-leaf-3 { top: 50%; left: -1%; width: 90px; height: 140px; background: var(--moss); transform: rotate(10deg) translateY(-50%); }

.hero-inner { position: relative; z-index: 1; max-width: 820px; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--foam);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin-bottom: 28px;
}
.badge-dot { width: 6px; height: 6px; background: var(--leaf); border-radius: 50%; flex-shrink: 0; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--moss);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--leaf); }

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.75;
}

/* ── SUBSCRIBE BOX ── */
.subscribe-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 38px;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 12px 48px rgba(45,74,45,0.1);
  text-align: left;
}
.subscribe-box h2 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--moss);
  margin-bottom: 6px;
}
.subscribe-box > p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 300;
}
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-row input[type="email"] {
  flex: 1;
  min-width: 160px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--foam);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input[type="email"]:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(90,143,90,0.12);
}
.btn-sub {
  padding: 13px 22px;
  background: var(--moss);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-sub:hover { background: var(--moss-mid); transform: translateY(-1px); }
.form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
}
.form-note a { color: var(--leaf); text-decoration: none; }

.form-success {
  display: none;
  text-align: center;
  padding: 16px 8px;
}
.form-success .fs-big { font-size: 36px; margin-bottom: 10px; }
.form-success span { font-size: 15px; color: var(--ink-mid); }

/* ── STATS ── */
.stats {
  background: var(--moss);
  padding: 32px 5vw;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--mint);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── FEATURES ── */
.features {
  padding: 90px 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--moss);
  max-width: 500px;
  line-height: 1.25;
  margin-bottom: 50px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--sage));
  opacity: 0;
  transition: opacity .25s;
}
.feat-card:hover { border-color: var(--sage); box-shadow: 0 8px 36px rgba(45,74,45,0.1); transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 50px; height: 50px;
  background: var(--foam);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.feat-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 8px;
}
.feat-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ── TIPS ── */
.tips {
  background: var(--foam);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 5vw;
}
.tips-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}
.tips-list { display: flex; flex-direction: column; gap: 16px; }
.tip-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.tip-item:hover { box-shadow: 0 4px 20px rgba(45,74,45,0.08); }
.tip-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--mint);
  line-height: 1;
  min-width: 30px;
  flex-shrink: 0;
}
.tip-item h4 { font-size: 15px; font-weight: 500; color: var(--moss); margin-bottom: 4px; }
.tip-item p { font-size: 13px; color: var(--ink-soft); line-height: 1.65; }

/* ── CTA ── */
.cta-band {
  padding: 90px 5vw;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 14px;
}
.cta-band p { font-size: 16px; color: var(--ink-soft); margin-bottom: 30px; font-weight: 300; }
.btn-cta {
  display: inline-block;
  padding: 15px 38px;
  background: var(--moss);
  color: #fff;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-cta:hover { background: var(--moss-mid); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 52px 5vw 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }
.footer-desc { font-size: 13px; line-height: 1.7; font-weight: 300; max-width: 230px; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--sage); }
.footer-bottom {
  max-width: 1100px;
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── LEGAL ── */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 5vw;
}
.legal-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--moss);
  margin-bottom: 6px;
}
.legal-date { font-size: 13px; color: var(--ink-soft); margin-bottom: 36px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.legal-wrap h2 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--moss); margin: 34px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 15px; color: var(--ink-mid); line-height: 1.85; margin-bottom: 10px; font-weight: 300; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--leaf); }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 820px) {
  .tips-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 500px) {
  .subscribe-box { padding: 24px 20px; }
  .form-row { flex-direction: column; }
  .form-row input[type="email"], .btn-sub { width: 100%; }
}
