:root {
  --green: #1B5E3B;
  --green-mid: #2D7A52;
  --teal: #3DBFA0;
  --mint: #7FD9C0;
  --mint-pale: #E8FAF5;
  --coral: #E8442A;
  --yellow: #F7C948;
  --yellow-pale: #FFF0B3;
  --pink: #FDD8DF;
  --pink-pale: #FFF0F3;
  --cream: #FFFDF8;
  --dark: #2D2D2D;
  --gray: #686868;
  --font-heading: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
  --font-display: "Pacifico", cursive;
  --shadow: 0 18px 45px rgba(27, 94, 59, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--dark);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 86px 0; position: relative; overflow: hidden; }
.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.04; margin: 0; color: var(--green); }
h1 { font-size: clamp(42px, 7vw, 86px); }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 28px; }
.italic { font-style: italic; color: var(--teal); }
.lead { color: var(--gray); font-size: 18px; max-width: 690px; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(45, 122, 82, .18); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--green); }
.btn-ghost { background: #fff; color: var(--green); border: 1px solid rgba(61, 191, 160, .45); }
.ribbon {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px 8px 16px;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
  transform: rotate(-8deg);
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 2px solid #B8EFE0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 88px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(127,217,192,0.15);
}

.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.nav-brand-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1B5E3B;
  line-height: 1.1;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.nav-brand-accent {
  color: #3DBFA0;
  font-style: italic;
}

.nav-brand-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #3DBFA0;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #2D2D2D;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: #7FD9C0;
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}

.nav-link:hover { color: #3DBFA0; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: #3DBFA0;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #2D9E84;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1B5E3B;
  padding: 4px;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: 70px;
    flex-wrap: wrap;
  }
  .nav-hamburger { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    padding: 16px 20px;
    gap: 16px;
    border-top: 1px solid #B8EFE0;
  }
  .nav-links.open { display: flex; }
  .nav-brand-name { font-size: 18px; }
  .nav-brand-tagline { display: none; }
}

/* Hero slider */
.hero-slider { height: 580px; position: relative; overflow: hidden; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide.detox { background: linear-gradient(135deg, #C8F2E6, #F5FFFB); }
.slide.tropical { background: linear-gradient(135deg, #FFD6DE, #FFF5F7); }
.slide.glow { background: linear-gradient(135deg, #FFF3B8, #FFFEF0); }
.slide.gut { background: linear-gradient(135deg, #E8D5F5, #FAF5FF); }
.slide.immunity { background: linear-gradient(135deg, #D5EEF8, #F4FBFF); }
.slide-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 {
  margin: 24px 0 18px;
  text-transform: lowercase;
  color: var(--slide-text, var(--green));
}
.hero-copy h1 span { display: block; }
.hero-copy p { max-width: 530px; color: var(--slide-text, var(--green)); font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-visual { position: relative; min-height: 470px; }
.blob-photo {
  width: min(430px, 88%);
  height: 460px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 42% 58% 52% 48% / 50% 44% 56% 50%;
  box-shadow: var(--shadow);
}
.leaf { position: absolute; right: 10%; top: 10%; font-size: 76px; animation: sway 4s ease-in-out infinite; }
.fruit { position: absolute; font-size: 42px; animation: floaty 4.5s ease-in-out infinite; }
.fruit.one { right: 8%; bottom: 18%; }
.fruit.two { left: 10%; bottom: 12%; animation-delay: .7s; }
.hero-heart { position: absolute; right: 18%; bottom: 7%; width: 44px; height: 44px; transform: rotate(-18deg); }
.hero-heart::before, .hero-heart::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 42px;
  background: var(--heart, var(--teal));
  border-radius: 28px 28px 0 0;
}
.hero-heart::before { transform: rotate(-45deg); left: 7px; }
.hero-heart::after { transform: rotate(45deg); right: 7px; }
.cal-badge {
  position: absolute;
  right: 2%;
  top: 52%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--badge-bg, var(--yellow));
  color: var(--badge-text, var(--green));
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.ingredient-pills { position: absolute; left: 0; top: 32%; display: grid; gap: 12px; z-index: 3; }
.ingredient-pill {
  background: #fff;
  border: 1px solid rgba(127, 217, 192, .35);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 28px rgba(27, 94, 59, .1);
  font-size: 13px;
  min-width: 178px;
}
.ingredient-pill strong { color: var(--green); display: block; line-height: 1.1; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: #fff;
  color: var(--teal);
  font-size: 30px;
  cursor: pointer;
  z-index: 5;
}
.slider-arrow.prev { left: 18px; }
.slider-arrow.next { right: 18px; }
.hero-dots { position: absolute; left: 0; right: 0; bottom: 24px; display: flex; justify-content: center; gap: 10px; z-index: 6; }
.hero-dot { width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(27, 94, 59, .25); cursor: pointer; }
.hero-dot.active { background: var(--teal); }
.hero-progress { position: absolute; left: 0; bottom: 0; height: 5px; width: 0; background: var(--yellow); z-index: 7; }
.slide.active .ribbon { animation: ribbonDrop .5s both; }
.slide.active h1 { animation: riseIn .8s .1s cubic-bezier(.22,1,.36,1) both; }
.slide.active .hero-copy p { animation: fadeUp .7s .25s both; }
.slide.active .hero-actions { animation: fadeUp .7s .38s both; }
.slide.active .blob-photo { animation: photoIn .9s .05s both; }
.slide.active .leaf { animation: leafIn 1s .1s both, sway 4s 1s ease-in-out infinite; }
.slide.active .fruit.one { animation: popIn .5s .4s both, floaty 4.5s 1s ease-in-out infinite; }
.slide.active .fruit.two { animation: popIn .5s .55s both, floaty 4.5s 1.2s ease-in-out infinite; }
.slide.active .hero-heart { animation: pulseIn .5s .6s both; }
.slide.active .ingredient-pill:nth-child(1) { animation: fadeUp .55s .35s both; }
.slide.active .ingredient-pill:nth-child(2) { animation: fadeUp .55s .5s both; }
.slide.active .ingredient-pill:nth-child(3) { animation: fadeUp .55s .65s both; }
.slide.active .cal-badge { animation: spinBadge .65s .55s both; }

/* Sections */
.benefits-strip { background: var(--teal); color: #fff; padding: 28px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; font-weight: 800; }
.benefits-grid span { display: block; font-weight: 500; opacity: .92; }
.recipes-section { background: #fff; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .lead { margin: 14px auto 0; }
.filter-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 26px 0 34px; }
.filter-btn {
  border: 1px solid var(--mint);
  background: #fff;
  color: var(--teal);
  border-radius: 999px;
  padding: 10px 17px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: #fff; }
.recipe-grid, .blog-grid, .ingredient-grid, .like-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.recipe-card, .blog-card, .info-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(127,217,192,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.recipe-card:hover, .blog-card:hover, .info-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(61,191,160,.2); }
.recipe-media { position: relative; height: 235px; }
.recipe-media img, .blog-card img { width: 100%; height: 100%; object-fit: cover; }
.goal-badge, .cat-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--green);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
}
.recipe-media .calories { position: absolute; right: 14px; bottom: 14px; background: var(--yellow); color: var(--green); border-radius: 999px; padding: 7px 12px; font-weight: 900; }
.card-body { padding: 20px; }
.meta { color: #777; font-size: 14px; font-weight: 700; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tags span { background: var(--mint-pale); color: var(--green); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.recipe-card.hide { display: none; }
.recipe-note {
  margin-top: 44px;
  background: #fff;
  border: 1px solid rgba(249,184,196,.8);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.mini-card { background: var(--pink); border-radius: 8px; padding: 24px; transform: rotate(-2deg); }
.dash { height: 1px; border-top: 2px dashed rgba(27,94,59,.3); margin: 18px 0; }
.note-list { display: grid; gap: 9px; font-weight: 800; color: var(--green); }
.featured { background: var(--pink); }
.featured::before, .featured::after, .footer::before, .footer::after { content: "♥"; position: absolute; font-family: var(--font-heading); pointer-events: none; }
.featured::before { top: 44px; right: 9%; color: rgba(61,191,160,.25); font-size: 82px; }
.featured::after { bottom: 34px; left: 6%; color: rgba(249,184,196,.9); font-size: 62px; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.check-list { list-style: none; padding: 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 22px; font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }
.blob-wrap { position: relative; }
.blob-wrap::before { content: ""; position: absolute; inset: -18px; border: 2px dashed #F9B8C4; border-radius: 44% 56% 50% 50% / 50% 44% 56% 50%; animation: spin 24s linear infinite; }
.blob-wrap img { position: relative; width: 100%; height: 460px; object-fit: cover; border-radius: 42% 58% 52% 48% / 50% 44% 56% 50%; }
.blog-section, .page-hero, .why-section { background: var(--mint-pale); }
.blog-card { position: relative; }
.blog-card .media { height: 230px; position: relative; }
.blog-card .cat-tag { background: var(--teal); color: #fff; }
.newsletter { background: linear-gradient(135deg, var(--yellow-pale), #FFF5CC); border-top: 3px solid var(--yellow); text-align: center; }
.signup-row { display: flex; max-width: 440px; margin: 24px auto 0; background: #fff; border: 1px solid rgba(247,201,72,.7); border-radius: 999px; padding: 6px; }
.signup-row input { min-width: 0; flex: 1; border: 0; padding: 0 16px; outline: none; border-radius: 999px; }

/* Page templates */
.page-hero { min-height: 200px; display: grid; align-items: center; text-align: center; padding: 52px 0; }
.single-hero { background: linear-gradient(135deg, #C8F2E6, #F5FFFB); padding: 64px 0; text-align: center; }
.badge-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.soft-badge { background: #fff; border: 1px solid var(--mint); border-radius: 999px; padding: 9px 14px; font-weight: 900; color: var(--green); }
.recipe-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.panel { background: #fff; border-radius: 8px; padding: 26px; box-shadow: var(--shadow); border: 1px solid rgba(127,217,192,.24); }
.ingredient-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid #eef5f1; opacity: 0; transform: translateX(-24px); transition: opacity .55s ease, transform .55s ease; }
.ingredient-row.vis { opacity: 1; transform: translateX(0); }
.ingredient-row .emoji { font-size: 24px; }
.step-card { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid #eef5f1; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 900; }
.nutrition-label { max-width: 440px; margin: 0 auto; border: 3px solid #111; background: #fff; padding: 10px 14px; color: #111; font-family: Arial, sans-serif; }
.nutrition-label h3 { color: #111; font-family: Arial, sans-serif; font-size: 34px; border-bottom: 12px solid #111; padding-bottom: 4px; }
.nutrition-row { display: flex; justify-content: space-between; border-top: 1px solid #111; padding: 7px 0; font-weight: 700; }
.nutrition-cal { display: flex; justify-content: space-between; align-items: end; border-bottom: 6px solid #111; padding: 8px 0; }
.nutrition-cal strong { font-size: 42px; }
.benefit-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { padding: 24px; }
.info-card .icon { font-size: 38px; }
.article-hero { height: 300px; position: relative; color: #fff; display: grid; align-items: end; overflow: hidden; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.article-hero .container { position: relative; padding-bottom: 38px; }
.article-hero h1 { color: #fff; max-width: 850px; }
.article { max-width: 790px; margin: 0 auto; font-size: 18px; }
.article h2 { margin-top: 38px; font-size: 38px; }
.pull-quote { border-left: 5px solid var(--teal); padding: 18px 22px; color: var(--teal); font-family: var(--font-heading); font-size: 28px; font-style: italic; background: var(--mint-pale); }
.spotlight { background: var(--pink); border-radius: 8px; padding: 26px; margin: 32px 0; }
.recipe-post-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 34px; align-items: start; }
.recipe-post { background: #fff; border-radius: 8px; padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(127,217,192,.24); font-size: 18px; }
.recipe-post h2 { margin-top: 34px; font-size: 40px; }
.article-featured-img { width: 100%; height: 360px; object-fit: cover; border-radius: 8px; margin-bottom: 28px; }
.styled-list { counter-reset: item; list-style: none; padding: 0; display: grid; gap: 12px; }
.styled-list li { background: var(--mint-pale); border-radius: 8px; padding: 14px 16px; color: var(--green); font-weight: 700; }
.tips-box { background: var(--pink); border-radius: 8px; padding: 24px; margin: 34px 0; border: 1px solid rgba(249,184,196,.8); }
.tips-box h3 { color: var(--green); font-style: italic; margin-bottom: 12px; }
.made-close { color: var(--green); font-weight: 800; font-family: var(--font-heading); font-size: 24px; }
.recipe-sidebar { position: sticky; top: 104px; display: grid; gap: 18px; }
.read-more { display: inline-flex; margin-top: 12px; color: var(--teal); font-weight: 900; }
.featured-post {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(127,217,192,.35);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}
.featured-post img { width: 100%; height: 360px; object-fit: cover; }
.featured-post .featured-copy { padding: 30px; }
.article-shell { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; align-items: start; }
.article-main { max-width: 790px; font-size: 18px; }
.article-main h2 { margin-top: 38px; font-size: 38px; }
.article-inline-img { width: 100%; height: 340px; object-fit: cover; border-radius: 8px; margin: 28px 0; }
.made-note {
  background: var(--mint-pale);
  border: 1px solid rgba(127,217,192,.55);
  border-radius: 8px;
  padding: 24px;
  margin: 36px 0 0;
}
.made-note h2, .made-note h3 { margin-top: 0; color: var(--green); }
.adsense-slot {
  min-height: 96px;
  border: 1px dashed rgba(45,122,82,.35);
  background: rgba(232,250,245,.65);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green-mid);
  font-weight: 800;
  margin: 30px 0;
}
.sticky-ad { position: sticky; top: 110px; min-height: 280px; margin: 0; }
.about-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 42px; text-align: left; }
.founder-photo { width: 360px; height: 390px; object-fit: cover; border-radius: 42% 58% 52% 48% / 50% 44% 56% 50%; margin-left: auto; }
.belief-section { background: var(--pink); }
.belief-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: center; }
.belief-quote { color: var(--teal); font-family: var(--font-heading); font-size: clamp(34px, 4.5vw, 56px); line-height: 1.08; }
.green-cta { background: var(--green); color: #fff; text-align: center; }
.green-cta h2 { color: #fff; }
.green-cta p { color: var(--mint); }

/* Footer */
.footer { background: var(--pink); border-top: 3px solid #F9B8C4; padding: 62px 0 24px; position: relative; overflow: hidden; }
.footer::before, .footer::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.footer::before {
  top: 24px;
  right: 8%;
  width: 96px;
  height: 88px;
  background-image: url("data:image/svg+xml,%3Csvg width='96' height='88' viewBox='0 0 96 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 83S8 57 8 27C8 13 18 5 30 5c8 0 14 4 18 10C52 9 58 5 66 5c12 0 22 8 22 22 0 30-40 56-40 56Z' fill='%23FFF0F3'/%3E%3C/svg%3E");
}
.footer::after {
  bottom: 42px;
  left: 5%;
  width: 54px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg width='54' height='50' viewBox='0 0 54 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 47S4 32 4 15C4 8 10 3 17 3c5 0 8 2 10 6 2-4 6-6 10-6 7 0 13 5 13 12 0 17-23 32-23 32Z' fill='%23E8FAF5'/%3E%3C/svg%3E");
}
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; position: relative; z-index: 2; }
.footer-brand { font-family: var(--font-display); color: var(--green); font-size: 31px; margin-bottom: 8px; }
.footer h4 { color: var(--teal); margin: 0 0 14px; font-size: 16px; text-transform: uppercase; letter-spacing: 1.2px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: var(--green); font-weight: 700; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid var(--teal); color: var(--teal); font-weight: 900; }
.footer-bottom { border-top: 1px solid rgba(27,94,59,.15); margin-top: 36px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; color: var(--green); font-weight: 700; position: relative; z-index: 2; }
.footer-bottom .socials { margin: 0; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

@keyframes ribbonDrop { from { transform: translateY(-40px) rotate(-8deg); opacity: 0; } to { transform: translateY(0) rotate(-8deg); opacity: 1; } }
@keyframes riseIn { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes photoIn { from { transform: translateX(70px) scale(.9); opacity: 0; } to { transform: translateX(0) scale(1); opacity: 1; } }
@keyframes leafIn { from { transform: translateY(70px) rotate(-20deg); opacity: 0; } to { transform: translateY(0) rotate(0); opacity: 1; } }
@keyframes popIn { from { transform: scale(.2) rotate(-35deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
@keyframes pulseIn { from { transform: scale(.2) rotate(-18deg); opacity: 0; } to { transform: scale(1) rotate(-18deg); opacity: 1; } }
@keyframes spinBadge { from { transform: scale(0) rotate(-90deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
@keyframes sway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(8deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero-slider { height: auto; min-height: 760px; }
  .slide-grid, .featured-grid, .recipe-layout, .about-hero-grid, .belief-grid { grid-template-columns: 1fr; }
  .slide-grid { padding: 42px 0 72px; gap: 18px; }
  .hero-visual { min-height: 390px; }
  .blob-photo { height: 360px; }
  .ingredient-pills { left: 4px; top: 42%; }
  .slider-arrow { top: auto; bottom: 18px; }
  .slider-arrow.prev { left: 18px; }
  .slider-arrow.next { right: 18px; }
  .benefits-grid, .recipe-grid, .blog-grid, .ingredient-grid, .like-grid, .benefit-cards, .footer-grid { grid-template-columns: 1fr; }
  .featured-post, .article-shell { grid-template-columns: 1fr; }
  .featured-post img { height: 260px; }
  .sticky-ad { position: static; min-height: 120px; }
  .recipe-post-grid { grid-template-columns: 1fr; }
  .recipe-sidebar { position: static; }
  .recipe-note { grid-template-columns: 1fr; }
  .page-hero .container[style*="grid-template-columns"] { grid-template-columns: 1fr !important; text-align: center !important; }
  .signup-row { border-radius: 22px; flex-direction: column; gap: 8px; padding: 10px; }
  .signup-row input { padding: 13px 14px; }
  .footer-bottom { flex-direction: column; }
  .founder-photo { margin: 0 auto; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-copy h1 { font-size: 48px; }
  .hero-slider { min-height: 820px; }
  .hero-actions .btn { width: 100%; }
  .ingredient-pill { min-width: 148px; font-size: 12px; }
  .cal-badge { width: 76px; height: 76px; font-size: 20px; }
  .recipe-media { height: 210px; }
  .panel { padding: 20px; }
  .nutrition-cal strong { font-size: 34px; }
}
