/* ==========================================================================
   PAUSHTIK AAHAAR — Design Tokens
   "Crafted with Care, Served with Love"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  /* ---- Color ---- */
  --cream:        #FAF2E2;   /* page background */
  --cream-deep:   #F3E6C9;   /* section alt background */
  --card-peach:   #F5E1C0;   /* thali card / ingredient card background */
  --forest:       #172B12;   /* deep headline ink, footer bg */
  --forest-soft:  #2E5225;
  --leaf:         #4C8C2B;   /* primary brand green (from logo) */
  --leaf-dark:    #2E5F1B;
  --marigold:     #E06A22;   /* primary brand orange (from logo) */
  --marigold-dark:#B84E16;
  --gold:         #D8A64E;   /* premium accent — hairline rings, dividers */
  --ink:          #241F19;   /* body text */
  --ink-soft:     #5B5346;   /* secondary text */
  --line:         #E4D3B0;   /* hairline borders on cream */
  --white:        #FFFDF9;

  /* ---- Type ---- */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* ---- Shape / shadow ---- */
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 30px 60px -24px rgba(23, 43, 18, 0.35), 0 8px 20px -10px rgba(23, 43, 18, 0.18);
  --shadow-card: 0 18px 38px -16px rgba(36, 31, 25, 0.22), 0 4px 10px -4px rgba(36, 31, 25, 0.12);
  --shadow-lift: 0 34px 64px -20px rgba(23, 43, 18, 0.4);

  --container: 1180px;
}

/* ---- Reset ---- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4{ font-family: var(--font-display); color: var(--forest); margin: 0; font-weight: 600; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
section{ position: relative; }

:focus-visible{
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marigold-dark);
  font-weight: 600;
}
.eyebrow::before{
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--marigold);
  display: inline-block;
}

.section-head{
  max-width: 620px;
  margin: 0 0 48px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  margin-top: 14px;
}
.section-head p{
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--marigold);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(232, 114, 44, 0.55);
}
.btn-primary:hover{ background: var(--marigold-dark); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover{ background: var(--forest); color: var(--white); transform: translateY(-2px); }
.btn-leaf{
  background: var(--leaf);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(76, 140, 43, 0.5);
}
.btn-leaf:hover{ background: var(--leaf-dark); transform: translateY(-2px); }
.btn-sm{ padding: 9px 16px; font-size: 13px; }
.btn-block{ width: 100%; }

/* ==========================================================================
   TOPBAR + HEADER
   ========================================================================== */
.topbar{
  background: var(--forest);
  color: #E9E2D2;
  font-size: 13px;
}
.topbar .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-contact{ display: flex; gap: 22px; align-items: center; }
.topbar-contact a{ display: inline-flex; align-items: center; gap: 6px; opacity: .9; }
.topbar-contact a:hover{ opacity: 1; color: #F0B27A; }
.topbar-tag{ font-family: var(--font-display); font-style: italic; opacity: .85; }
.topbar-tag em{ color: #F0B27A; font-style: italic; }

.site-header{
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 243, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand{ display: flex; align-items: center; gap: 12px; }
.brand img{ height: 54px; width: auto; }
.brand-name{ line-height: 1.1; }
.brand-name strong{ display: block; font-family: var(--font-display); font-size: 21px; color: var(--forest); font-weight: 700; letter-spacing: .01em;}
.brand-name span{ display: block; font-size: 11.5px; color: var(--marigold-dark); font-family: var(--font-mono); letter-spacing: .04em; }

.nav-links{ display: flex; align-items: center; gap: 34px; }
.nav-links a{
  font-weight: 600; font-size: 15px; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after{
  content: ''; position: absolute; left: 0; bottom: -3px;
  height: 2px; width: 0; background: var(--marigold);
  transition: width .2s ease;
}
.nav-links a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  background: none; border: none; padding: 8px;
}
.nav-toggle span{
  display: block; width: 24px; height: 2px; background: var(--forest); margin: 5px 0; border-radius: 2px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  padding: 76px 0 90px;
  overflow: hidden;
  position: relative;
}
.hero::before{
  content: '';
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(76,140,43,0.16) 0%, rgba(76,140,43,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero::after{
  content: '';
  position: absolute;
  bottom: -260px; left: -220px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(224,106,34,0.13) 0%, rgba(224,106,34,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero .container{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1{
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.06;
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.hero-copy h1 em{
  font-style: italic;
  color: var(--marigold);
}
.hero-copy p{
  margin-top: 20px;
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 480px;
}
.hero-cta{ display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-stats{
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stats .stat b{
  display: block; font-family: var(--font-display); font-size: 26px; color: var(--forest);
}
.hero-stats .stat span{ font-size: 13px; color: var(--ink-soft); }

.hero-visual{ position: relative; display: flex; justify-content: center; }
.hero-plate-wrap{
  position: relative; width: 100%; max-width: 460px;
  display: flex; align-items: center; justify-content: center;
}
.hero-plate-wrap::before{
  /* soft contact shadow grounding the turntable */
  content: '';
  position: absolute;
  bottom: 2%;
  width: 78%; height: 10%;
  background: radial-gradient(ellipse, rgba(23,43,18,0.35) 0%, rgba(23,43,18,0) 72%);
  z-index: 0;
}
.plate-spin{
  width: 100%; height: auto;
  filter: drop-shadow(0 26px 40px rgba(23,43,18,0.28));
  animation: spin-slow 46s linear infinite;
  transform-origin: 50% 50%;
  position: relative; z-index: 1;
}
.hero-plate-wrap:hover .plate-spin{ animation-play-state: paused; }

@keyframes spin-slow{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.macro-pill{
  position: absolute;
  background: var(--white);
  border: 1px solid rgba(216,166,78,0.35);
  border-radius: 999px;
  padding: 11px 18px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--forest);
  animation: floaty 5s ease-in-out infinite;
  z-index: 2;
}
.macro-pill b{ font-family: var(--font-display); font-size: 15px; color: var(--marigold-dark); }
.macro-pill.p1{ top: 6%; left: -6%; animation-delay: .2s; }
.macro-pill.p2{ bottom: 12%; right: -8%; animation-delay: 1s; }
.macro-pill.p3{ bottom: -4%; left: 12%; animation-delay: 1.8s; }

@keyframes floaty{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

/* ==========================================================================
   FEATURE STRIP
   ========================================================================== */
.feature-strip{ padding: 10px 0 66px; }
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-item:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-icon{
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--cream-deep) 0%, var(--card-peach) 100%);
  border: 1px solid rgba(216,166,78,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf-dark);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), 0 4px 10px -4px rgba(36,31,25,0.15);
}
.feature-item h4{ font-size: 16px; }
.feature-item p{ font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }

/* ==========================================================================
   ORBIT — revolving thali gallery (the "bowls on a turntable" showcase)
   ========================================================================== */
.orbit-section{ padding: 30px 0 76px; overflow: hidden; }
.orbit-stage{
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1;
  margin: 10px auto 0;
}
.orbit-stage::before{
  content: '';
  position: absolute; inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(216,166,78,0.45);
}
.orbit-stage::after{
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,140,43,0.08) 0%, rgba(76,140,43,0) 68%);
}
.orbit-center{
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 42%;
}
.orbit-center h3{ font-size: clamp(19px, 2.4vw, 25px); line-height: 1.2; }
.orbit-center p{ font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; }

.orbit{
  position: absolute; inset: 0;
  animation: spin-slow 34s linear infinite;
}
.orbit-item{
  position: absolute;
  top: 50%; left: 50%;
  width: 108px; height: 108px;
  margin: -54px 0 0 -54px;
  transform: rotate(var(--angle)) translate(0, -220px) rotate(calc(var(--angle) * -1));
}
.orbit-item-inner{
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  animation: spin-reverse 34s linear infinite;
  overflow: hidden;
}
.orbit-item-inner svg{ width: 74%; height: auto; }
.orbit-item-label{
  position: absolute; bottom: -26px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 700; color: var(--forest-soft);
  white-space: nowrap;
  animation: spin-reverse 34s linear infinite;
}

@keyframes spin-reverse{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(-360deg); }
}

@media (max-width: 620px){
  .orbit-stage{ max-width: 380px; }
  .orbit-item{ width: 78px; height: 78px; margin: -39px 0 0 -39px; }
  .orbit-item{ transform: rotate(var(--angle)) translate(0, -150px) rotate(calc(var(--angle) * -1)); }
}

/* ==========================================================================
   THALI CARDS (meal plans) — signature component
   ========================================================================== */
.plans{ padding: 40px 0 90px; }
.plans-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.thali-card{
  background: var(--card-peach);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.thali-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.thali-card.featured{ background: var(--forest); color: var(--cream); }
.thali-card.featured h3, .thali-card.featured .thali-desc{ color: var(--cream); }
.thali-card.featured .kcal-badge{ background: var(--marigold); color: var(--white); }
.thali-card.featured .ingredient-chip{ background: rgba(251,243,228,.1); color: var(--cream); border-color: rgba(251,243,228,.2); }
.thali-card.featured .thali-price small{ color: #C9D8C2; }
.thali-card.featured .tier-btn{ background: rgba(251,243,228,.08); color: var(--cream); border-color: rgba(251,243,228,.25); }

.plate-illustration{
  width: 100%; aspect-ratio: 1.5/1; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
}
.plate-illustration svg{
  width: 80%; height: auto;
  filter: drop-shadow(0 16px 22px rgba(23,43,18,0.22));
  transition: transform .4s ease;
}
.thali-card:hover .plate-illustration svg{ transform: scale(1.04) translateY(-3px); }

.thali-card-top{ display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.kcal-badge{
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 600;
  background: var(--forest);
  color: var(--cream);
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.thali-card h3{ font-size: 21px; margin-top: 14px; }
.thali-desc{ font-size: 13.8px; color: var(--ink-soft); margin-top: 8px; min-height: 42px; }

.ingredient-chips{ display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.ingredient-chip{
  font-size: 12px; font-weight: 600;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--forest-soft);
}

.thali-price{
  display: flex; align-items: baseline; gap: 6px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; color: var(--marigold-dark);
}
.thali-card.featured .thali-price{ color: var(--marigold); }
.thali-price small{ font-family: var(--font-body); font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }

.tier-row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 16px; }
.tier-btn{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.4;
}
.tier-btn span{ display: block; font-weight: 500; font-size: 10px; color: var(--ink-soft); }
.tier-btn.save span{ color: var(--leaf); }
.thali-card.featured .tier-btn.save span{ color: #9FD37D; }

.thali-cta{ margin-top: 20px; }

.plans-note{
  text-align: center; margin-top: 30px; font-size: 13.5px; color: var(--ink-soft);
}

/* ==========================================================================
   BUILD YOUR OWN THALI
   ========================================================================== */
.builder{ padding: 20px 0 96px; }
.builder-panel{
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}
.builder-panel h3{ font-size: 22px; }
.builder-sub{ font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.ingredient-picker{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.pick-item{
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 8px 12px;
  text-align: center;
  position: relative;
}
.pick-item.on{ border-color: var(--leaf); background: #EEF5E7; }
.pick-check{
  position: absolute; top: 8px; right: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--leaf); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.pick-item .pick-icon{ width: 40px; height: 40px; margin: 0 auto 8px; }
.pick-item span{ font-size: 11.5px; font-weight: 600; color: var(--forest-soft); line-height: 1.25; display: block; }

.builder-steps{ border-left: 1px dashed var(--line); padding-left: 44px; }
.step-item{ display: flex; gap: 16px; margin-bottom: 26px; }
.step-item:last-child{ margin-bottom: 0; }
.step-num{
  flex: none;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--marigold); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.step-item h5{ font-size: 15.5px; margin: 0 0 4px; font-family: var(--font-body); font-weight: 700; color: var(--forest); }
.step-item p{ font-size: 13.5px; color: var(--ink-soft); }

.builder-price{
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.builder-price .amt{ font-family: var(--font-display); font-size: 24px; color: var(--marigold-dark); font-weight: 700; }
.builder-price .amt small{ font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--ink-soft); }

/* ==========================================================================
   WHY US
   ========================================================================== */
.why{ background: var(--forest); color: var(--cream); padding: 96px 0; }
.why .section-head h2{ color: var(--cream); }
.why .section-head p{ color: #C9D2C1; }
.why .eyebrow{ color: #F0B27A; }
.why .eyebrow::before{ background: #F0B27A; }

.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(251,243,228,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-item{
  background: var(--forest);
  padding: 34px 30px;
}
.why-item .why-icon{
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(251, 243, 228, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: #F0B27A;
  margin-bottom: 18px;
}
.why-item h4{ color: var(--cream); font-size: 17px; font-family: var(--font-body); font-weight: 700; }
.why-item p{ margin-top: 8px; font-size: 13.8px; color: #C9D2C1; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials{ padding: 96px 0; }
.testi-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}
.testi-quote{ font-family: var(--font-display); font-size: 42px; line-height: 0; color: var(--marigold); display: block; }
.testi-card p{ font-size: 14.8px; color: var(--ink-soft); margin-top: 10px; min-height: 96px; }
.testi-who{ display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar{
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--leaf-dark);
}
.testi-who strong{ display: block; font-size: 14px; color: var(--forest); }
.testi-who span{ font-size: 12px; color: var(--ink-soft); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band{
  margin: 0 32px 96px;
  max-width: calc(var(--container) - 64px);
  margin-left: auto; margin-right: auto;
  background: var(--marigold);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band h3{ color: var(--white); font-size: 28px; max-width: 480px; }
.cta-band p{ color: #FCE6D4; margin-top: 8px; font-size: 14.5px; }
.cta-band .btn-outline{ border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover{ background: var(--white); color: var(--marigold-dark); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: #17290F; color: #C9D2C1; padding: 70px 0 0; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(251,243,228,0.12);
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img{ height: 48px; }
.footer-brand strong{ font-family: var(--font-display); color: var(--cream); font-size: 19px; }
.footer-col p{ font-size: 13.8px; line-height: 1.7; }
.footer-col h5{ color: var(--cream); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-mono); font-weight: 600;}
.footer-col li{ margin-bottom: 11px; font-size: 13.8px; }
.footer-col a:hover{ color: var(--marigold); }
.footer-tags{ display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tags span{
  font-size: 12px; padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(251,243,228,0.2);
}
.social-row{ display: flex; gap: 10px; margin-top: 18px; }
.social-row a{
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(251,243,228,0.25);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover{ background: var(--marigold); border-color: var(--marigold); color: var(--white); }
.footer-bottom{
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 12.5px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a{ margin-left: 18px; }
.footer-bottom a:hover{ color: var(--marigold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px){
  .plans-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .testi-track{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .nav-links, .header-actions .btn{ display: none; }
  .nav-toggle{ display: block; }
  .hero .container{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 380px; margin: 0 auto; }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .builder-panel{ grid-template-columns: 1fr; }
  .builder-steps{ border-left: none; padding-left: 0; border-top: 1px dashed var(--line); padding-top: 30px; }
}
@media (max-width: 620px){
  .container{ padding: 0 20px; }
  .topbar-tag{ display: none; }
  .plans-grid, .why-grid, .testi-track{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-band{ padding: 40px 28px; margin-left: 20px; margin-right: 20px; }
  .ingredient-picker{ grid-template-columns: repeat(3, 1fr); }
  .tier-row{ grid-template-columns: repeat(2, 1fr); }
  .macro-pill{ font-size: 11px; padding: 8px 12px; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed; inset: 0; z-index: 60;
  background: var(--forest);
  color: var(--cream);
  display: flex; flex-direction: column;
  padding: 26px 30px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open{ transform: translateX(0); }
.mobile-nav-top{ display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close{ background: none; border: none; color: var(--cream); font-size: 26px; }
.mobile-nav a{ font-family: var(--font-display); font-size: 24px; padding: 16px 0; border-bottom: 1px solid rgba(251,243,228,0.12); }
