/* ============================================
   No Meat Monday — Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --green-dark:   #1B4332;
  --green:        #2D6A4F;
  --green-mid:    #40916C;
  --green-light:  #95D5B2;
  --green-pale:   #D8F3DC;
  --orange:       #E07B39;
  --orange-light: #F4A261;
  --cream:        #FFF8F0;
  --cream-dark:   #F0E6D3;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #767676;
  --white:        #FFFFFF;
  --shadow:       0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 35px rgba(0, 0, 0, 0.15);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
  --max-width:    1160px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background-color: var(--green-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--green-pale);
}

.section--green {
  background-color: var(--green);
}

.section--cream {
  background-color: var(--cream-dark);
}

.text-center { text-align: center; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background-color: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 123, 57, 0.4);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background-color: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn--outline-dark:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--green-dark);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links .btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.9rem;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-mid) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2395D5B2' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: bgScroll 30s linear infinite;
}

@keyframes bgScroll {
  0% { background-position: 0 0; }
  100% { background-position: 120px 120px; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__tag {
  display: inline-block;
  background-color: rgba(149, 213, 178, 0.2);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(149, 213, 178, 0.3);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--green-light);
  font-style: italic;
}

.hero__lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background-color: var(--white);
  padding: 2.5rem 0;
  box-shadow: var(--shadow);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid var(--cream-dark);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   FEATURE / INTRO SECTION
   ============================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.intro-split__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 50%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.intro-split__text h2 {
  margin-bottom: 1rem;
}

.intro-split__text p {
  margin-bottom: 1.25rem;
}

/* ============================================
   BENEFIT CARDS
   ============================================ */
.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.benefit-card__icon--green {
  background-color: var(--green-pale);
}

.benefit-card__icon--orange {
  background-color: #FDE8D8;
}

.benefit-card__icon--blue {
  background-color: #D4E9F7;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   RECIPE CARDS
   ============================================ */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.recipe-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.recipe-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform var(--transition);
}

.recipe-card:hover .recipe-card__img {
  transform: scale(1.03);
}

.recipe-card__img-wrap {
  overflow: hidden;
}

.recipe-card__body {
  padding: 1.5rem;
  flex: 1;
}

.recipe-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

.tag--vegan { background-color: var(--green-pale); color: var(--green-dark); }
.tag--vegetarian { background-color: #FDE8D8; color: #8B3A0F; }
.tag--quick { background-color: #FFF3CD; color: #7D5A00; }
.tag--hearty { background-color: #E8E4F5; color: #4A3580; }
.tag--gf { background-color: #FCE4EC; color: #880E4F; }

.recipe-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}

.recipe-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.recipe-card__meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid var(--cream-dark);
  padding-top: 0.85rem;
}

.recipe-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============================================
   RECIPE DETAIL PAGE
   ============================================ */
.recipe-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

.recipe-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.recipe-hero__text .hero__tag {
  margin-bottom: 1rem;
}

.recipe-hero__text h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.recipe-hero__text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.recipe-hero__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.recipe-hero__stat {
  text-align: center;
}

.recipe-hero__stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
}

.recipe-hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.recipe-hero__img {
  border-radius: var(--radius);
  overflow: hidden;
}

.recipe-hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: var(--radius);
}

.recipe-body {
  padding: 4rem 0;
}

.recipe-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.recipe-sidebar {
  position: sticky;
  top: 100px;
}

.recipe-sidebar__box {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.recipe-sidebar__box h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green-pale);
}

.ingredient-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
  display: flex;
  gap: 0.5rem;
}

.ingredient-list li::before {
  content: '🌿';
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ingredient-list li:last-child {
  border-bottom: none;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.nutrition-item {
  text-align: center;
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
}

.nutrition-item__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}

.nutrition-item__label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recipe-steps h2 {
  margin-bottom: 1.75rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step__number {
  width: 42px;
  height: 42px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step__content h4 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.step__content p {
  font-size: 0.95rem;
}

.recipe-tip {
  background-color: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.recipe-tip strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.3rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about-photo {
  position: sticky;
  top: 100px;
}

.about-photo__frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-photo__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.about-photo__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.value-item {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-item__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.value-item p {
  font-size: 0.88rem;
}

/* ============================================
   WHY PAGE — PILLARS
   ============================================ */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.pillar:last-child {
  border-bottom: none;
}

.pillar--reverse .pillar__text { order: 2; }
.pillar--reverse .pillar__visual { order: 1; }

.pillar__visual-box {
  border-radius: var(--radius);
  overflow: hidden;
}

.pillar__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: var(--radius);
}

.pillar__text .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.pillar__text h2 {
  margin-bottom: 1rem;
}

.pillar__text p {
  margin-bottom: 1rem;
}

.fact-bubble {
  background-color: var(--green-pale);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.fact-bubble__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.fact-bubble__text strong {
  color: var(--green-dark);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.fact-bubble__text p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer__brand .nav__logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
}

.footer__col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--green-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header--center p {
  margin: 0 auto;
}

/* ============================================
   RELATED RECIPES
   ============================================ */
.related-recipes {
  padding: 4rem 0;
  background-color: var(--cream-dark);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}

.blog-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.blog-card__meta,
.blog-post-meta {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.35rem;
}

.blog-card p {
  font-size: 0.95rem;
}

.blog-post-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

.blog-post-hero h1 {
  color: var(--white);
  margin-bottom: 0.9rem;
}

.blog-post-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-post-meta {
  color: var(--green-light);
}

.blog-post-content {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  max-width: 860px;
  margin: 0 auto;
}

.blog-post-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-post-content p,
.blog-post-content li {
  font-size: 1rem;
  color: var(--text-mid);
}

.blog-post-content ul {
  list-style: disc;
  margin-left: 1.2rem;
}

.blog-post-content li {
  margin-bottom: 0.45rem;
}

.blog-callout {
  background-color: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1.4rem 0;
}

.blog-callout strong {
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.2rem;
}

.blog-post-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.post-pagination {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-pagination a {
  font-weight: 600;
  color: var(--green);
}

.post-pagination a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.blog-image-travel {
  background: linear-gradient(135deg, #2D6A4F 0%, #95D5B2 100%);
}

.blog-image-pantry {
  background: linear-gradient(135deg, #E07B39 0%, #F4A261 100%);
}

.blog-image-quick {
  background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .recipe-layout {
    grid-template-columns: 1fr;
  }

  .recipe-sidebar {
    position: static;
  }

  .recipe-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .recipe-hero__stats {
    justify-content: center;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--cream-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    padding: 0.75rem 1.5rem;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
  }

  .nav {
    position: relative;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .intro-split,
  .about-intro,
  .pillar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillar--reverse .pillar__text { order: unset; }
  .pillar--reverse .pillar__visual { order: unset; }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .recipe-hero__inner {
    grid-template-columns: 1fr;
  }

  .step {
    gap: 1rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-content {
    padding: 1.5rem;
  }

  .post-pagination {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 80vh;
  }
}

/* ============================================
   IMAGE GRADIENTS — Recipe Cards
   ============================================ */
.img-lentil-soup        { background: linear-gradient(135deg, #E07B39 0%, #F4A261 100%); }
.img-mushroom-pasta     { background: linear-gradient(135deg, #2D6A4F 0%, #95D5B2 100%); }
.img-chickpea-curry     { background: linear-gradient(135deg, #F4A261 0%, #C1531A 100%); }
.img-chickpea-curry-alt { background: linear-gradient(135deg, #F4A261 0%, #E07B39 50%, #C1531A 100%); }
.img-tacos              { background: linear-gradient(135deg, #1B4332 0%, #40916C 100%); }
.img-traybake           { background: linear-gradient(135deg, #D8F3DC 0%, #2D6A4F 100%); }
.img-lemon-rice         { background: linear-gradient(135deg, #FFF3CD 0%, #F4A261 100%); }
.img-bolognese          { background: linear-gradient(135deg, #6B3A2A 0%, #C1531A 100%); }
.img-butter-bean        { background: linear-gradient(135deg, #2D3A8C 0%, #6B7FD4 100%); }
.img-shakshuka          { background: linear-gradient(135deg, #95D5B2 0%, #1B4332 100%); }
.img-veggie-chilli      { background: linear-gradient(135deg, #4A1010 0%, #9B2335 50%, #C0392B 100%); }
.img-veggie-pizza       { background: linear-gradient(135deg, #B03A2E 0%, #E74C3C 50%, #F5B041 100%); }

.img-ravioli           { background: linear-gradient(135deg, #7B3F00 0%, #C9B037 50%, #A7C957 100%); }

/* IMAGE GRADIENTS — Recipe Hero Pages */
.img-hero-lentil-soup    { background: linear-gradient(135deg, #C1531A 0%, #E07B39 50%, #F4A261 100%); }
.img-hero-mushroom-pasta { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #95D5B2 100%); }
.img-hero-chickpea-curry { background: linear-gradient(135deg, #8B3A0F 0%, #C1531A 40%, #F4A261 100%); }
.img-hero-veggie-chilli  { background: linear-gradient(135deg, #4A1010 0%, #9B2335 50%, #C0392B 100%); }
.img-hero-veggie-pizza   { background: linear-gradient(135deg, #B03A2E 0%, #E74C3C 50%, #F5B041 100%); }

.img-hero-ravioli        { background: linear-gradient(135deg, #7B3F00 0%, #C9B037 50%, #A7C957 100%); }

/* IMAGE GRADIENTS — Why page pillars */
.img-pillar-environment { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #95D5B2 100%); }
.img-pillar-health      { background: linear-gradient(135deg, #F4A261 0%, #E07B39 100%); }
.img-pillar-animals     { background: linear-gradient(135deg, #D8F3DC 0%, #95D5B2 50%, #40916C 100%); }

/* ============================================
   RECIPE CARD FOOTER (button wrapper)
   ============================================ */
.recipe-card__footer {
  padding: 0 1.5rem 1.5rem;
}

/* ============================================
   FULL-WIDTH BUTTON MODIFIER
   ============================================ */
.btn--full {
  width: 100%;
  display: block;
}

/* ============================================
   RECIPES PAGE — CTA spacing
   ============================================ */
.recipes-cta {
  margin-top: 3rem;
}

/* ============================================
   FOOTER LOGO WRAPPER
   ============================================ */
.footer__logo-wrap {
  margin-bottom: 1rem;
}

/* ============================================
   BREADCRUMB BAR WRAPPER
   ============================================ */
.breadcrumb-bar {
  background-color: var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

/* ============================================
   RECIPE SIDEBAR — TIP BOX VARIANT
   ============================================ */
.recipe-sidebar__box--tip {
  background: var(--green-pale);
  border: none;
  box-shadow: none;
}

.recipe-sidebar__box--tip p {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* ============================================
   RECIPE STORY SECTION
   ============================================ */
.recipe-story__heading {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.recipe-story__text {
  color: var(--text-mid);
  margin-bottom: 1rem;
}

/* ============================================
   RELATED RECIPES GRID
   ============================================ */
.recipe-grid--related {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ============================================
   WHY PAGE — DARK STATS SECTION
   ============================================ */
.stats-dark__header {
  margin-bottom: 3rem;
}

.section-label--light {
  color: var(--green-light);
}

.stats-dark__grid {
  text-align: center;
}

.stat-dark__number {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--green-light);
  margin-bottom: 0.25rem;
}

.stat-dark__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   BENEFIT CARD — LARGE ICON
   ============================================ */
.benefit-card__icon--lg {
  font-size: 1.8rem;
  width: 60px;
  height: 60px;
}

/* ============================================
   ABOUT PAGE — PANTRY LIST
   ============================================ */
.pantry-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.pantry-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--green-pale);
  font-size: 0.95rem;
}

.pantry-list li:last-child {
  border-bottom: none;
}

/* ============================================
   RECIPES PAGE — NO RESULTS MESSAGE
   ============================================ */
.no-results-msg {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  padding: 3rem 0;
}

/* Moved from about.html */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-light));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--green);
  border: 2px solid var(--cream);
}

.timeline-item__year {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.timeline-item h4 {
  margin-bottom: 0.4rem;
}

.timeline-item p {
  font-size: 0.95rem;
}

.quote-block {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.quote-block cite {
  font-size: 0.9rem;
  color: var(--green-light);
  font-style: normal;
  font-weight: 600;
}
