/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #1b4332;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --green-pale:   #f0f7f4;
  --amber:        #d97706;
  --red:          #b91c1c;
  --red-pale:     #fef2f2;
  --text:         #111827;
  --text-muted:   #4b5563;
  --text-light:   #9ca3af;
  --bg:           #ffffff;
  --bg-alt:       #f9fafb;
  --border:       #e5e7eb;
  --radius-sm:    4px;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow:       0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
p  { color: var(--text-muted); line-height: 1.7; }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 560px;
}

a { color: inherit; text-decoration: none; }

/* ── Buttons ── */
.btn-hero {
  display: inline-block;
  background: var(--green-mid);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(45,106,79,0.3);
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
}
.btn-hero:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,106,79,0.35);
}

.btn-hero-secondary {
  display: inline-block;
  background: white;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
}
.btn-hero-secondary:hover {
  background: var(--green-pale);
}
.hero-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

.btn-primary {
  display: inline-block;
  background: var(--green-mid);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-dark); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--green-pale); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.nav nav a:hover { color: var(--green-mid); }
.nav-cta {
  background: var(--green-mid);
  color: white !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

@media (max-width: 640px) {
  .nav nav a:not(.nav-cta) { display: none; }
}

/* ── Hero ── */
.hero {
  background: var(--green-dark);
  padding: 80px 0 70px;
  color: white;
  border-bottom: 3px solid var(--green-mid);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.8);
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}
.highlight { color: #86efac; }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-hint { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; width: 100%; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero result cards */
.hero-visual { display: flex; flex-direction: column; gap: 12px; }

.result-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.rc-accent { width: 5px; flex-shrink: 0; }
.rc-accent-toxic { background: var(--red); }
.rc-accent-safe  { background: #16a34a; }

.rc-body { padding: 16px 18px; flex: 1; }

.rc-header { margin-bottom: 10px; }
.rc-name  { font-weight: 700; font-size: 0.95rem; color: var(--text); display: block; }
.rc-latin { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-top: 2px; }

.rc-pets  {
  display: flex; gap: 12px; margin-bottom: 10px;
  padding-top: 10px; border-top: 1px solid var(--border);
}
.rc-pet   { display: flex; align-items: center; gap: 6px; }
.rc-pet-label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-light);
}
.rc-symptoms { font-size: 0.76rem; color: var(--text-muted); }

.badge-toxic {
  background: #fef2f2; color: #b91c1c;
  padding: 2px 7px; border-radius: var(--radius-sm);
  font-size: 0.72rem; font-weight: 600; border: 1px solid #fecaca;
}
.badge-safe {
  background: #f0fdf4; color: #15803d;
  padding: 2px 7px; border-radius: var(--radius-sm);
  font-size: 0.72rem; font-weight: 600; border: 1px solid #bbf7d0;
}

/* ── Problem stats ── */
.problem {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 24px;
}
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; gap: 24px; } }
.problem-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--green-dark);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.problem-label  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.problem-source { font-size: 0.72rem; color: var(--text-light); font-style: italic; }
.problem-sub {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ── How it works ── */
.how {
  padding: 80px 0;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}
.step {
  flex: 1;
  max-width: 280px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--green-mid);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-icon { font-size: 1.6rem; margin-bottom: 10px; }
.step p    { font-size: 0.88rem; line-height: 1.65; }
.step-arrow {
  font-size: 1.2rem;
  color: var(--border);
  padding: 0 12px;
  margin-top: 50px;
  flex-shrink: 0;
  font-weight: 300;
}
.how-cta { text-align: center; }

/* ── Our Story ── */
.story {
  padding: 88px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.story-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}

@media (max-width: 768px) {
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
}

.story-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.story-text h2 {
  margin-bottom: 24px;
}

.story-text p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.story-text p em {
  color: var(--text);
  font-style: italic;
  font-weight: 500;
}

.story-atomic {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.story-atomic strong { color: var(--text); }

.story-problem, .story-solution {
  margin: 20px 0;
  padding: 18px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.story-problem h3, .story-solution h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 10px;
}
.story-problem p, .story-solution p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.story-problem p:last-child, .story-solution p:last-child { margin-bottom: 0; }

.story-problem ul {
  margin: 8px 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.story-problem ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.story-quote {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--green-mid);
  background: var(--green-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--green-dark);
  line-height: 1.7;
  font-style: italic;
}
.story-quote-source {
  margin-top: 8px;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 600;
  color: var(--green-mid);
  opacity: 0.8;
}

.story-cta { margin-top: 24px; }

.story-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 80px;
}

.story-stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}

.story-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.story-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.story-mission {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  color: white;
}

.story-mission h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-weight: 700;
}

.story-mission p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ── Plant categories ── */
.plants { padding: 80px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr; } }

.category-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.category-card:hover { box-shadow: var(--shadow); border-color: #d1d5db; }
.cat-icon { font-size: 1.4rem; margin-bottom: 10px; }
.category-card h3 { font-size: 0.95rem; }
.category-card p  { font-size: 0.85rem; margin-top: 4px; }

/* ── Coverage / Why 3000 ── */
.coverage {
  background: var(--bg-alt);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.coverage h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 0.5rem;
  text-align: center;
}
.coverage .section-sub { text-align: center; margin-bottom: 2.5rem; }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .coverage-grid { grid-template-columns: 1fr; } }
.coverage-block {
  background: var(--bg);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
}
.coverage-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.coverage-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.coverage-block p:last-of-type { margin-bottom: 0; }
.coverage-rule {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  background: var(--green-pale);
  border-left: 3px solid var(--green-mid);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  color: var(--green-dark);
  line-height: 1.5;
}

/* ── Danger callout ── */
.danger-callout {
  background: var(--bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.danger-callout h2 { color: var(--red); }
.danger-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
@media (max-width: 768px) { .danger-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .danger-grid { grid-template-columns: 1fr; } }

.danger-item {
  background: var(--red-pale);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: left;
  border: 1px solid #fecaca;
}
.danger-icon { font-size: 1.1rem; margin-bottom: 6px; }
.danger-name { font-weight: 700; font-size: 0.95rem; color: var(--red); margin-bottom: 4px; }
.danger-note { font-size: 0.8rem; color: #6b7280; line-height: 1.5; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--green-pale);
  border-top: 1px solid #d1fae5;
  border-bottom: 1px solid #d1fae5;
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── FAQ ── */
.faq { padding: 80px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.faq-item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text);
}
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--green-mid);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 16px; font-size: 0.88rem; color: var(--text-muted); }

/* ── Final CTA ── */
.final-cta {
  background: var(--green-dark);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.final-cta .paw-icon { font-size: 2rem; margin-bottom: 16px; }
.final-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: white;
  margin-bottom: 12px;
}
.final-cta p  { color: rgba(255,255,255,0.7); margin-bottom: 28px; }

/* ── Blog section ── */
.blog-section { padding: 64px 0; background: var(--bg-alt); }
.blog-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); margin-bottom: 8px; }
.blog-intro { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 32px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.blog-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px;
  text-decoration: none; display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.15s, transform 0.1s;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.blog-card-tag { font-size: 0.75rem; font-weight: 700; color: var(--green-mid); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.blog-date { font-size: 0.78rem; color: var(--text-light); }
.blog-read { font-size: 0.82rem; font-weight: 600; color: var(--green-mid); }

/* ── App download section ── */
.app-section { background: #1b4332; padding: 72px 0; }
.app-inner { max-width: 600px; text-align: center; }
.app-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; margin-bottom: 16px; }
.app-text > p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.app-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.app-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 24px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.2);
  min-width: 180px; cursor: default;
}
.app-btn-disabled { opacity: 0.6; }
.app-btn-icon { font-size: 2rem; }
.app-btn-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.app-btn-label { font-size: 1.1rem; font-weight: 700; color: white; }
.app-hint { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ── Footer ── */
.footer { background: #0f2d20; color: rgba(255,255,255,0.65); padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 8px; }
.emergency { color: #fca5a5 !important; font-size: 0.82rem !important; }

.footer-links h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: white; }

/* ── Easter page ── */
.easter-hero {
  background: var(--green-dark); padding: 48px 24px 40px;
  text-align: center; border-bottom: 2px solid var(--green-mid);
}
.easter-badge {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: white; font-size: 0.82rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.easter-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  color: white; margin-bottom: 14px; line-height: 1.3;
}
.easter-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.easter-emergency {
  background: #7f1d1d; color: #fecaca;
  padding: 14px 24px; text-align: center; font-size: 0.88rem; line-height: 1.6;
}
.easter-emergency a { color: #fca5a5; }
.easter-plants { padding: 56px 0; background: var(--bg-alt); }
.easter-plants h2 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: var(--text); margin-bottom: 32px; text-align: center;
}
.easter-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.easter-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 22px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
}
.danger-severe { border-left: 4px solid var(--red); }
.danger-moderate { border-left: 4px solid var(--amber); }
.danger-safe { border-left: 4px solid #15803d; }
.easter-card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.easter-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.easter-latin { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-top: 2px; }
.easter-badge-pill { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-sm); white-space: nowrap; border: 1px solid transparent; }
.pill-severe { background: var(--red-pale); color: var(--red); border-color: #fecaca; }
.pill-moderate { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.pill-safe { background: #f0fdf4; color: #15803d; border-color: #bbf7d0; }
.easter-pets { display: flex; flex-direction: column; gap: 6px; }
.easter-pet { font-size: 0.82rem; font-weight: 500; padding: 4px 10px; border-radius: var(--radius-sm); }
.easter-pet.toxic { background: var(--red-pale); color: var(--red); }
.easter-pet.moderate { background: #fffbeb; color: #92400e; }
.easter-pet.safe { background: #f0fdf4; color: #15803d; }
.easter-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.easter-symptoms { font-size: 0.82rem; color: var(--text-muted); background: var(--bg-alt); padding: 10px 12px; border-radius: var(--radius); }
.easter-check-btn {
  display: inline-block; color: var(--green-mid); font-size: 0.82rem;
  font-weight: 600; text-decoration: none; margin-top: auto;
}
.easter-check-btn:hover { color: var(--green-dark); }
.easter-tips { padding: 56px 0; }
.easter-tips h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--text); margin-bottom: 32px; text-align: center; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.tip-card { background: var(--bg); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 24px; }
.tip-icon { font-size: 2rem; margin-bottom: 12px; }
.tip-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.tip-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.easter-cta { background: var(--green-dark); padding: 56px 24px; text-align: center; }
.easter-cta h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: white; margin-bottom: 12px; }
.easter-cta p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
@media (max-width: 640px) {
  .easter-hero h1 { font-size: 1.5rem; }
  .easter-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}

/* ── Legal pages ── */
.legal-hero {
  background: var(--green-dark); padding: 48px 24px 32px;
  border-bottom: 2px solid var(--green-mid);
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: white; margin-bottom: 8px;
}
.legal-hero p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.legal-body { padding: 48px 0; }
.legal-content { max-width: 740px; display: flex; flex-direction: column; gap: 24px; }
.legal-content h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  margin-bottom: -12px;
}
.legal-content p, .legal-content ul {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.8;
}
.legal-content ul { padding-left: 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-warning {
  background: #fef2f2; border-left: 4px solid #b91c1c;
  padding: 16px 20px; border-radius: var(--radius);
  font-size: 0.88rem; color: #7f1d1d; line-height: 1.6;
}
.legal-back a {
  color: var(--green-mid); font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
}
.legal-back a:hover { color: var(--green-dark); }

.footer-bottom { padding: 18px 0; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); text-align: center; }
