@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --green: #1D9E75;
  --green-dark: #085041;
  --green-light: #E1F5EE;
  --green-mid: #0F6E56;
  --amber-light: #FAEEDA;
  --amber-dark: #633806;
  --red-light: #FCEBEB;
  --red-dark: #791F1F;
  --purple-light: #EEEDFE;
  --purple-dark: #3C3489;
  --gray-bg: #F7F7F5;
  --gray-border: #E5E5E2;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a57;
  --text-tertiary: #9a9a97;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--gray-border);
  background: #ffffff;
  position: sticky; top: 0; z-index: 100;
}
.logo { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; text-decoration: none; color: var(--text-primary); }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-size: 14px; color: var(--text-secondary); text-decoration: none; }
.nav-links a:hover { color: var(--text-primary); }
.nav-cta { font-size: 13px; font-weight: 500; padding: 8px 18px; background: var(--green); color: white; border-radius: 20px; text-decoration: none; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--text-tertiary); padding: 0.75rem 2rem; border-bottom: 1px solid var(--gray-border); }
.breadcrumb a { color: var(--green); text-decoration: none; }

/* TAGS & BADGES */
.tag { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 1rem; }
.tag-green { background: var(--green-light); color: var(--green-dark); }
.tag-amber { background: var(--amber-light); color: var(--amber-dark); }
.tag-purple { background: var(--purple-light); color: var(--purple-dark); }
.tag-gray { background: var(--gray-bg); color: var(--text-tertiary); }

/* CALLOUTS */
.callout { border-left: 3px solid var(--green); padding: 1rem 1.25rem; background: var(--green-light); margin: 1.5rem 0; }
.callout-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; color: var(--green-dark); margin-bottom: 6px; }
.callout p { font-size: 14px; color: var(--green-dark); line-height: 1.6; margin: 0; }
.callout-amber { border-left: 3px solid #BA7517; padding: 1rem 1.25rem; background: var(--amber-light); margin: 1.5rem 0; }
.callout-amber .callout-label { color: var(--amber-dark); }
.callout-amber p { font-size: 14px; color: var(--amber-dark); line-height: 1.6; margin: 0; }
.callout-red { border-left: 3px solid #E24B4A; padding: 1rem 1.25rem; background: var(--red-light); margin: 1.5rem 0; }
.callout-red .callout-label { color: var(--red-dark); }
.callout-red p { font-size: 14px; color: var(--red-dark); line-height: 1.6; margin: 0; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 11px 22px; background: var(--green); color: white; border-radius: 6px; font-size: 14px; font-weight: 500; text-decoration: none; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--green-mid); }
.btn-secondary { display: inline-block; padding: 11px 22px; background: transparent; color: var(--text-primary); border: 1px solid var(--gray-border); border-radius: 6px; font-size: 14px; text-decoration: none; cursor: pointer; }

/* SECTION */
.section-block { margin: 2.5rem 0; }
.section-block h2 { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-border); }
.section-block p { font-size: 16px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1rem; }

/* CARDS */
.card { background: #ffffff; border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 1.25rem; }
.card:hover { border-color: #c5c5c2; }

/* PROGRESS */
.progress-bar { height: 3px; background: var(--gray-border); margin: 1.5rem 0 0; border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--green); border-radius: 2px; }

/* NEWSLETTER FORM */
.nl-input { padding: 10px 14px; border-radius: 6px; border: 1px solid var(--gray-border); font-size: 14px; font-family: 'DM Sans', sans-serif; width: 100%; }
.nl-btn { padding: 10px 20px; background: var(--green); color: white; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; border: none; font-family: 'DM Sans', sans-serif; white-space: nowrap; }

/* FOOTER */
footer { padding: 1.5rem 2rem; border-top: 1px solid var(--gray-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 12px; color: var(--text-tertiary); }
footer a { color: var(--text-tertiary); text-decoration: none; }
footer a:hover { color: var(--text-primary); }

/* UTILITY */
.divider { height: 1px; background: var(--gray-border); margin: 2.5rem 0; }
.max-720 { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.max-860 { max-width: 860px; margin: 0 auto; padding: 0 2rem; }

@media (max-width: 600px) {
  nav { padding: 1rem; }
  .nav-links { display: none; }
  .max-720, .max-860 { padding: 0 1rem; }
  .hero h1 { font-size: 28px; }
}
