/* ========================================
   LIVE A BETTER LIFE — Editorial Magazine Theme
   ======================================== */

:root {
  --sage:        #b5c9b0;
  --sage-light:  #dcebd8;
  --sage-dark:   #7a9e74;
  --blush:       #f2d4cf;
  --blush-deep:  #e8b5ae;
  --butter:      #f5ecd4;
  --lavender:    #dcd3ea;
  --cream:       #faf7f2;
  --white:       #ffffff;
  --charcoal:    #1e1e1e;
  --mid:         #5a5a5a;
  --light:       #9a9a9a;
  --border:      #e8e0d5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:    10px;
  --radius-lg: 20px;
  --shadow:    0 2px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);

  --max-w: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--sage-dark); }
p  { color: var(--mid); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--sage-dark); color: white; }
.btn-primary:hover { background: #5d7d58; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(122,158,116,0.32); }
.btn-outline { background: transparent; border: 2px solid var(--sage-dark); color: var(--sage-dark); }
.btn-outline:hover { background: var(--sage-dark); color: white; }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--sage-dark);
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a { font-size: 0.88rem; color: var(--mid); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-cta { background: var(--sage-dark); color: white !important; padding: 0.4rem 1.1rem; border-radius: 100px; }
.nav-cta:hover { background: #5d7d58 !important; }
.nav-hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--charcoal); }

/* ========== SITE WRAPPER ========== */
.site-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }

/* ========== HOMEPAGE WELCOME HERO ========== */
.welcome-hero {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--butter) 50%, var(--blush) 100%);
  padding: 5rem 5% 4rem;
  text-align: center;
}
.welcome-hero-inner { max-width: 680px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: white;
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.welcome-hero h1 { margin-bottom: 1rem; }
.welcome-hero p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.welcome-hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== CATEGORY NAV STRIP ========== */
.category-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  overflow-x: auto;
}
.category-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 0;
}
.cat-tab {
  padding: 1rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-body);
}
.cat-tab:hover { color: var(--sage-dark); }
.cat-tab.active { color: var(--sage-dark); border-bottom-color: var(--sage-dark); }

/* ========== FEATURED ARTICLE (homepage) ========== */
.featured-section { padding: 3.5rem 5% 2rem; }
.featured-section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}
.featured-article img { width: 100%; height: 420px; object-fit: cover; }
.featured-article-content { padding: 2.5rem; }
.featured-article-content .blog-category { margin-bottom: 0.8rem; display: inline-block; }
.featured-article-content h2 { margin-bottom: 1rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.featured-article-content p { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.75; }
.article-meta-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.blog-date { font-size: 0.8rem; color: var(--light); }
.read-time { font-size: 0.8rem; color: var(--light); }

/* ========== ARTICLES GRID ========== */
.articles-grid-section { padding: 0 5% 4rem; }
.articles-grid-inner { max-width: var(--max-w); margin: 0 auto; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.article-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; }
.article-card-body h3 { margin-bottom: 0.6rem; font-size: 1.2rem; line-height: 1.3; }
.article-card-body p { font-size: 0.9rem; margin-bottom: 1.2rem; flex: 1; }
.read-more {
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.read-more:hover { gap: 0.6rem; }

/* ========== BLOG CATEGORY PILL ========== */
.blog-category {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-category.mindfulness { background: var(--lavender); color: #6b5b95; }
.blog-category.movement, .blog-category.exercise { background: #d4eaf2; color: #2e7a9e; }
.blog-category.recipes { background: var(--butter); color: #a0742a; }
.blog-category.rest { background: var(--blush); color: #9b5d56; }
.blog-category.work { background: #e0ece0; color: #3d6b38; }

/* ========== NEWSLETTER STRIP ========== */
.newsletter {
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender) 50%, var(--butter) 100%);
  padding: 4rem 5%;
  text-align: center;
}
.newsletter-inner { max-width: 500px; margin: 0 auto; }
.newsletter h2 { margin-bottom: 0.6rem; }
.newsletter p { margin-bottom: 1.8rem; }
.newsletter-form { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 220px;
  padding: 0.72rem 1.2rem;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: white;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--sage-dark); }
.newsletter-note { margin-top: 0.8rem; font-size: 0.78rem; color: var(--light); }

/* ========== FOOTER ========== */
.footer { background: var(--charcoal); color: #ccc; padding: 4rem 5% 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}
.footer-brand h3 { font-family: var(--font-display); color: var(--sage-light); font-size: 1.5rem; margin-bottom: 0.5rem; }
.footer-brand p  { color: #888; font-size: 0.88rem; }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a { font-size: 1.2rem; transition: transform 0.2s; }
.social-links a:hover { transform: scale(1.2); }
.footer-col h4 { color: var(--sage-light); margin-bottom: 1rem; font-family: var(--font-display); font-size: 1.05rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a  { font-size: 0.85rem; color: #888; transition: color 0.2s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom { border-top: 1px solid #333; padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: #555; max-width: var(--max-w); margin: 0 auto; }
.footer-bottom a { color: #777; }
.footer-bottom a:hover { color: var(--sage-light); }

/* ========== BLOG LISTING PAGE ========== */
.page-hero {
  text-align: center;
  padding: 4rem 5% 3rem;
  background: linear-gradient(180deg, var(--butter) 0%, var(--cream) 100%);
}
.page-hero h1 { margin: 0.7rem 0; }
.page-hero p { font-size: 1rem; max-width: 480px; margin: 0 auto; }

.blog-listing { padding: 3rem 5% 5rem; }
.blog-listing-inner { max-width: var(--max-w); margin: 0 auto; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 0.42rem 1.05rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--mid);
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
.filter-btn.active { background: var(--sage-dark); border-color: var(--sage-dark); color: white; }

/* ========== ARTICLE PAGE ========== */
.article-hero { position: relative; max-height: 500px; overflow: hidden; }
.article-hero img { width: 100%; height: 500px; object-fit: cover; }
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.6) 100%);
  display: flex; align-items: flex-end;
  padding: 3rem 5%;
}
.article-hero-text { max-width: 820px; }
.article-hero-text .blog-category { margin-bottom: 0.8rem; display: inline-block; }
.article-hero-text h1 { font-family: var(--font-display); color: white; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 0.6rem; }
.article-meta { color: rgba(255,255,255,0.72); font-size: 0.83rem; }

/* Article layout: body + no sidebar (inline products instead) */
.article-layout { max-width: 760px; margin: 0 auto; padding: 3.5rem 5%; }

.article-body p { font-size: 1.05rem; line-height: 1.88; color: #484848; margin-bottom: 1.4rem; }
.article-body h2 { font-size: 1.65rem; margin: 2.5rem 0 0.8rem; }
.article-body h3 { font-size: 1.2rem; margin: 1.8rem 0 0.5rem; }
.article-body ul, .article-body ol { padding-left: 1.4rem; margin-bottom: 1.4rem; }
.article-body li { font-size: 1.05rem; line-height: 1.8; color: #484848; margin-bottom: 0.4rem; }

.article-pullquote {
  border-left: 4px solid var(--sage-dark);
  background: var(--sage-light);
  padding: 1.2rem 1.8rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-pullquote p { font-family: var(--font-display); font-size: 1.22rem; font-style: italic; color: var(--sage-dark) !important; margin: 0 !important; }

.article-inline-img { width: 100%; border-radius: var(--radius); margin: 2rem 0; object-fit: cover; max-height: 400px; }

/* ===== INLINE PRODUCT RECOMMENDATION ===== */
.inline-product {
  display: flex;
  gap: 1.2rem;
  background: white;
  border: 2px solid var(--sage-light);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin: 2.2rem 0;
  align-items: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.inline-product:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.inline-product-img { width: 110px; min-width: 110px; height: 110px; object-fit: cover; border-radius: var(--radius); }
.inline-product-info { flex: 1; }
.inline-product-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.inline-product-info h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.inline-product-info p { font-size: 0.85rem; margin-bottom: 0.8rem; line-height: 1.55; }
.inline-product-btn {
  display: inline-block;
  padding: 0.42rem 1.1rem;
  background: var(--sage-dark);
  color: white;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: background 0.2s;
}
.inline-product-btn:hover { background: #5d7d58; }
.affiliate-micro { font-size: 0.7rem; color: var(--light); margin-top: 0.3rem; }

/* End-of-article CTA */
.article-end-cta {
  background: linear-gradient(135deg, var(--butter) 0%, var(--blush) 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-end-cta h3 { margin-bottom: 0.5rem; }
.article-end-cta p  { margin-bottom: 1.3rem; font-size: 0.95rem; }

.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0 1rem; }
.article-tag-item { background: var(--lavender); color: #6b5b95; font-size: 0.75rem; padding: 0.22rem 0.75rem; border-radius: 100px; }

/* Article prev/next nav */
.article-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 760px; margin: 0 auto 4rem; padding: 0 5%; }
.article-nav-card { background: white; border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow); transition: transform 0.2s; }
.article-nav-card:hover { transform: translateY(-2px); }
.article-nav-card span { font-size: 0.72rem; color: var(--light); display: block; margin-bottom: 0.3rem; }
.article-nav-card p { font-family: var(--font-display); font-size: 1rem; color: var(--charcoal); margin: 0; }
.article-nav-card.next { text-align: right; }

/* Affiliate disclosure */
.affiliate-notice {
  background: var(--butter);
  border-left: 4px solid var(--sage-dark);
  padding: 0.85rem 5%;
  font-size: 0.83rem;
  color: var(--mid);
}
.affiliate-notice strong { color: var(--charcoal); }
.affiliate-footer-note { text-align: center; padding: 0.9rem 5%; font-size: 0.76rem; color: var(--light); background: var(--cream); border-top: 1px solid var(--border); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .featured-article { grid-template-columns: 1fr; }
  .featured-article img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inline-product { flex-direction: column; }
  .inline-product-img { width: 100%; height: 180px; min-width: unset; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--cream); padding: 1.2rem 5%; border-bottom: 1px solid var(--border); gap: 1rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
}

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== ARTICLE REFERENCES ========== */
.article-references {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--butter);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.article-references h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}
.article-references ol {
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.article-references li {
  font-size: 0.82rem !important;
  color: var(--mid) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.article-references em { font-style: italic; color: var(--charcoal); }
.article-references a { color: var(--sage-dark); text-decoration: underline; font-size: 0.82rem; }

/* ========================================
   MIND BODY SOUL — Homepage Redesign
   ======================================== */

/* Full-screen hero */
.mbs-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mbs-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1800&q=90&fit=crop');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.mbs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,14,10,0.72) 0%,
    rgba(20,28,20,0.55) 50%,
    rgba(30,20,15,0.65) 100%
  );
}
.mbs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 5%;
  max-width: 860px;
}
.mbs-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.8rem;
  opacity: 0.9;
}
.mbs-hero-content h1 {
  color: white;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.mbs-hero-content h1 em {
  color: var(--sage-light);
  font-style: italic;
}
.mbs-hero-tagline {
  color: rgba(255,255,255,0.80);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}
.mbs-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: white;
  color: var(--charcoal);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  background: var(--sage-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-hero-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}
.mbs-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.mbs-hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ========== MIND BODY SOUL PILLARS ========== */
.mbs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--charcoal);
}
.mbs-pillar {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 420px;
}
.mbs-pillar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.55);
}
.mbs-pillar:hover img {
  transform: scale(1.06);
  filter: brightness(0.4);
}
.mbs-pillar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  transition: background 0.4s;
}
.mbs-pillar:hover .mbs-pillar-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}
.mbs-pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.mbs-pillar:hover .mbs-pillar-icon {
  opacity: 1;
  transform: translateY(0);
}
.mbs-pillar-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 0.4rem;
}
.mbs-pillar-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: white;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.mbs-pillar-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.mbs-pillar:hover .mbs-pillar-desc {
  max-height: 100px;
}
.mbs-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--sage-light);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease 0.1s;
}
.mbs-pillar:hover .mbs-pillar-link {
  opacity: 1;
  transform: translateY(0);
}

/* ========== IMPACT QUOTE STRIP ========== */
.mbs-quote-strip {
  background: var(--sage-dark);
  padding: 4rem 5%;
  text-align: center;
}
.mbs-quote-strip blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: white;
  font-weight: 300;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.4;
}
.mbs-quote-strip cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 1.2rem;
  font-style: normal;
}

/* ========== FEATURED ARTICLES BY CATEGORY ========== */
.mbs-articles-section {
  padding: 5rem 5%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.mbs-category-block { margin-bottom: 4rem; }
.mbs-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.mbs-category-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mbs-category-header .cat-emoji { font-size: 1.4rem; }
.mbs-see-all {
  font-size: 0.85rem;
  color: var(--sage-dark);
  font-weight: 500;
  white-space: nowrap;
}
.mbs-see-all:hover { text-decoration: underline; }
.mbs-articles-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.5rem;
}
.mbs-articles-row .article-card:first-child img {
  aspect-ratio: 16/10;
}

/* NAV mind/body/soul */
.nav-links .nav-mbs {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--sage-dark) !important;
}

/* ========== RESPONSIVE MBS ========== */
@media (max-width: 900px) {
  .mbs-pillars { grid-template-columns: 1fr; }
  .mbs-pillar { height: 280px; }
  .mbs-pillar-desc { max-height: 80px; }
  .mbs-pillar-icon, .mbs-pillar-link { opacity: 1; transform: none; max-height: 100px; }
  .mbs-articles-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mbs-hero-content h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
}

/* ========== PILLAR SVG ICONS ========== */
.mbs-pillar-svg {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}
.mbs-pillar:hover .mbs-pillar-svg {
  opacity: 1;
  transform: translateY(0);
}
/* On mobile always show */
@media (max-width: 900px) {
  .mbs-pillar-svg { opacity: 1; transform: none; }
}

/* ========== MIND BODY SOUL FOOTER ========== */
.footer-tagline {
  display: flex;
  gap: 0.5rem;
  margin: 0.4rem 0 0.3rem;
}
.footer-mbs {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sage-light);
  letter-spacing: 0.02em;
}
.footer-sub {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 240px;
}

/* ========== FOOTER MBS ICONS ========== */
.footer-col-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage-light);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.footer-mbs-svg {
  width: 26px;
  height: 26px;
  color: var(--sage-light);
  opacity: 0.85;
  flex-shrink: 0;
}
