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

:root {
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-dark: #1b4332;
  --gold: #d4a373;
  --gold-light: #e9c46a;
  --cream: #fefae0;
  --warm-bg: #f9f5eb;
  --card-bg: #ffffff;
  --text-dark: #2b2b2b;
  --text-med: #5a5a5a;
  --text-light: #8a8a8a;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.85;
  color: var(--text-dark);
  background: var(--warm-bg);
}

a { color: var(--green); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--green-light); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: #ccc;
  text-align: center;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--green);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}
.site-header h1 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-header .tagline {
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 6px;
  font-style: italic;
  font-family: Arial, sans-serif;
}

/* ===== NAV ===== */
.main-nav {
  background: var(--green-dark);
  padding: 14px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.main-nav a {
  color: var(--cream);
  margin: 0 18px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); text-decoration: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 35px 20px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 35px 20px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(rgba(27,67,50,0.55), rgba(27,67,50,0.55)),
              url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1400&amp;q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero h2 {
  font-size: 3rem;
  margin-bottom: 14px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}
.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 24px;
  opacity: 0.95;
  font-family: Arial, sans-serif;
}
.hero .cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.3s;
}
.hero .cta-btn:hover { background: var(--gold-light); transform: scale(1.05); text-decoration: none; }

/* ===== SECTION HEADING ===== */
.section-heading {
  text-align: center;
  margin-bottom: 35px;
}
.section-heading h2 {
  font-size: 2rem;
  color: var(--green-dark);
  position: relative;
  display: inline-block;
}
.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 10px auto 0;
  border-radius: 2px;
}
.section-heading p {
  color: var(--text-med);
  font-family: Arial, sans-serif;
  margin-top: 8px;
  font-size: 0.95rem;
}

/* ===== AD SLOT ===== */
.ad-slot {
  background: var(--cream);
  border: 2px dashed #ccc;
  text-align: center;
  padding: 18px;
  margin: 30px 0;
  font-size: 0.8rem;
  color: #aaa;
  border-radius: 10px;
  font-family: Arial, sans-serif;
}

/* ===== RECIPE GRID ===== */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ===== CARD ===== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 6px; }
.card-body .tag {
  display: inline-block;
  background: var(--cream);
  color: var(--green);
  font-size: 0.7rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card-body .meta {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}
.card-body p { font-size: 0.9rem; color: var(--text-med); margin-bottom: 16px; }
.card-body .btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}
.card-body .btn:hover { background: var(--green-light); text-decoration: none; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  margin: 40px 0 0;
  border-radius: var(--radius);
}
.newsletter h2 { font-size: 1.6rem; margin-bottom: 8px; }
.newsletter p { font-family: Arial, sans-serif; opacity: 0.9; margin-bottom: 20px; }
.newsletter form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  width: 300px;
  max-width: 90%;
  font-family: Arial, sans-serif;
}
.newsletter button {
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s;
}
.newsletter button:hover { background: var(--gold-light); }

/* ===== SINGLE RECIPE PAGE ===== */
.recipe-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.recipe-detail h1 { font-size: 2.1rem; color: var(--green-dark); margin-bottom: 8px; }
.recipe-detail .meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: Arial, sans-serif;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--cream);
}
.recipe-detail h2 {
  color: var(--green);
  margin: 30px 0 14px;
  font-size: 1.3rem;
  border-left: 5px solid var(--gold);
  padding-left: 14px;
}
.recipe-detail p { margin-bottom: 16px; }
.recipe-detail ul, .recipe-detail ol { margin-left: 26px; margin-bottom: 18px; }
.recipe-detail li { margin-bottom: 8px; }
.recipe-detail .tip-box {
  background: #fff8e1;
  border-left: 5px solid var(--gold);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 24px 0;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
}
.recipe-detail .nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0 24px;
}
.recipe-detail .nutrition-item {
  background: var(--cream);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-family: Arial, sans-serif;
}
.recipe-detail .nutrition-item .value { font-size: 1.4rem; font-weight: 700; color: var(--green); display: block; }
.recipe-detail .nutrition-item .label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { font-size: 0.8rem; color: var(--text-light); margin-bottom: 22px; font-family: Arial, sans-serif; }
.breadcrumb a { color: var(--green); }

/* ===== BACK BUTTON ===== */
.back-btn {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  transition: background 0.3s;
}
.back-btn:hover { background: var(--green); text-decoration: none; }

/* ===== LEGAL PAGES ===== */
.legal-page h1 { color: var(--green-dark); margin-bottom: 8px; }
.legal-page .updated { color: var(--text-light); font-family: Arial, sans-serif; margin-bottom: 24px; }
.legal-page h2 {
  color: var(--green-dark);
  margin: 30px 0 12px;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 8px;
  font-size: 1.2rem;
}
.legal-page p, .legal-page li { margin-bottom: 12px; font-size: 0.95rem; }
.legal-page ul { margin-left: 24px; }

/* ===== ABOUT PAGE ===== */
.about-page .intro { font-size: 1.1rem; color: var(--text-med); margin-bottom: 20px; }
.about-page .values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin: 24px 0; }
.about-page .value-card {
  background: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--green);
}
.about-page .value-card .icon { font-size: 2.4rem; margin-bottom: 10px; }
.about-page .value-card h3 { color: var(--green-dark); margin-bottom: 8px; font-size: 1.1rem; }
.about-page .value-card p { font-size: 0.88rem; color: var(--text-med); font-family: Arial, sans-serif; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  color: #95bfa8;
  padding: 30px 20px;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-col h4 { color: #fff; margin-bottom: 12px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { color: #95bfa8; display: block; margin-bottom: 6px; font-size: 0.82rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: #6a9a80;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header h1 { font-size: 1.7rem; }
  .hero { padding: 60px 16px; }
  .hero h2 { font-size: 2rem; }
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-hero*
