/* ═══════════════════════════════════════════════════════════
   HOMEMADE HAPPINESS WITH MANISHA — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&family=Dancing+Script:wght@600;700&display=swap');

/* ── Variables ── */
:root {
  --terracotta:   #C94F2C;
  --terra-light:  #E8724E;
  --terra-pale:   #FDEEE8;
  --saffron:      #E8970A;
  --turmeric:     #F5B731;
  --green:        #3A7D44;
  --green-light:  #EAF5EB;
  --cream:        #FFF8F0;
  --cream-dark:   #F5EDE0;
  --brown:        #2C1810;
  --brown-mid:    #6B3A2A;
  --gray:         #7A7A7A;
  --gray-light:   #F0F0F0;
  --border:       #E8D5C0;
  --white:        #FFFFFF;

  --shadow-sm:    0 2px 8px rgba(44,24,16,0.07);
  --shadow-md:    0 4px 20px rgba(44,24,16,0.10);
  --shadow-lg:    0 12px 40px rgba(44,24,16,0.15);

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --nav-h:        72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── Typography helpers ── */
.script { font-family: 'Dancing Script', cursive; }
.serif  { font-family: 'Playfair Display', serif; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--brown-mid);
  max-width: 540px;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo .logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1.1;
}
.nav-logo .logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown-mid);
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--brown); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-mid);
  padding: 12px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.active { color: var(--terracotta); }
.mobile-nav .mobile-cta {
  display: block;
  margin-top: 12px;
  background: var(--terracotta);
  color: white;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-secondary:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-2px);
}
.btn-saffron {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
}
.btn-saffron:hover {
  background: #CC7A00;
  border-color: #CC7A00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: var(--cream-dark);
  color: var(--brown-mid);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--border);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ─────────────────────────────────────────────
   RECIPE CARDS
───────────────────────────────────────────── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.recipe-card-img {
  height: 190px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.recipe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.recipe-card:hover .recipe-card-img img {
  transform: scale(1.07);
}
.recipe-card-img .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.94);
  color: var(--brown);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.recipe-card-img .veg-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid var(--green);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.recipe-card-img .veg-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  display: block;
}
.recipe-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.recipe-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.recipe-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}
.recipe-card-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--gray);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}
.recipe-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.recipe-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}
.recipe-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.card-action:hover {
  transform: translateY(-1px);
}
.card-action-video {
  color: white;
  background: var(--terracotta);
  border: 1px solid var(--terracotta);
}
.card-action-pdf {
  color: var(--brown);
  background: var(--cream);
  border: 1px solid var(--border);
}

/* Category colour schemes */
.cat-dal    { background: linear-gradient(135deg, #FFCB8E 0%, #E8541A 100%); }
.cat-paneer { background: linear-gradient(135deg, #FFE0A0 0%, #D4820A 100%); }
.cat-snacks { background: linear-gradient(135deg, #F5D97C 0%, #C9960E 100%); }
.cat-sweets { background: linear-gradient(135deg, #FFC3C3 0%, #C94F8A 100%); }
.cat-rice   { background: linear-gradient(135deg, #B8E6C1 0%, #2D8B2D 100%); }
.cat-festival { background: linear-gradient(135deg, #FFD97C 0%, #9B5E10 100%); }
.cat-breads { background: linear-gradient(135deg, #D4C4A8 0%, #8B5A2B 100%); }
.cat-chutneys { background: linear-gradient(135deg, #AAEEC0 0%, #1F7A3A 100%); }

/* ─────────────────────────────────────────────
   FILTER CHIPS
───────────────────────────────────────────── */
.filter-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-chip,
.filter-btn {
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--brown-mid);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: inherit;
}
.filter-chip:hover,
.filter-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--terra-pale);
}
.filter-chip.active,
.filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}

/* ─────────────────────────────────────────────
   SEARCH BAR
───────────────────────────────────────────── */
.search-wrap {
  position: relative;
  max-width: 480px;
  margin-bottom: 28px;
}
.search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--brown);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-wrap input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201,79,44,0.12);
}
.search-wrap input::placeholder { color: var(--gray); }
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gray);
  pointer-events: none;
}
.video-search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -12px 0 28px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.video-search-wrap {
  flex: 1;
  max-width: none;
  margin-bottom: 0;
}
.video-search-count {
  flex-shrink: 0;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
}
.video-no-results {
  margin: 8px 0 30px;
  padding: 44px 20px;
  text-align: center;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.video-no-results p {
  margin: 0 0 16px;
  color: var(--brown-mid);
  font-size: 17px;
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  display: flex;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.stat-item {
  padding: 18px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

/* ─────────────────────────────────────────────
   VIDEO CARDS
───────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.video-thumb {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: #1a1a1a;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, opacity 0.3s;
  opacity: 0.92;
}
.video-card:hover .video-thumb img {
  transform: scale(1.06);
  opacity: 0.8;
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, background 0.2s;
  z-index: 3;
}
.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: #FF0000;
  color: white;
}
.video-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.82);
  color: white;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 3;
  letter-spacing: 0.3px;
}
.video-channel-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  padding: 28px 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.channel-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.channel-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}
.video-card-body {
  padding: 14px 16px 16px;
}
.video-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
  line-height: 1.35;
}
.video-card-meta {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  gap: 12px;
}

/* ─────────────────────────────────────────────
   SECTION HEADER (centered)
───────────────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─────────────────────────────────────────────
   ABOUT SNIPPET / STORY
───────────────────────────────────────────── */
.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.about-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--border) 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
.about-photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px dashed var(--saffron);
  border-radius: 30px;
  opacity: 0.4;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
}
.about-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   NEWSLETTER / CTA BAND
───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--brown) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '🌿';
  position: absolute;
  font-size: 300px;
  opacity: 0.04;
  top: -60px;
  left: -40px;
  transform: rotate(-20deg);
}
.cta-band::after {
  content: '🍛';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  bottom: -40px;
  right: -20px;
  transform: rotate(15deg);
}
.cta-band .cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
}
.cta-band .cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.7); }
.newsletter-form button {
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--turmeric);
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: white;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   FEATURE BANNER (homepage strip)
───────────────────────────────────────────── */
.feature-strip {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.feature-strip-inner {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-text { line-height: 1.3; }
.feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
}
.feature-text span {
  font-size: 12px;
  color: var(--gray);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--brown);
  padding: 56px 0 32px;
  color: rgba(255,255,255,0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-script {
  font-family: 'Dancing Script', cursive;
  font-size: 28px;
  font-weight: 700;
  color: var(--turmeric);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, transform 0.15s;
}
.footer-social:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--turmeric);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  padding: 80px 0 90px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C94F2C' fill-opacity='0.04'%3E%3Cpath d='M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 72C22.4 72 8 57.6 8 40S22.4 8 40 8s32 14.4 32 32-14.4 32-32 32z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra-pale);
  border: 1px solid rgba(201,79,44,0.2);
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-title .script-em {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15em;
  color: var(--terracotta);
  display: block;
  line-height: 1;
}
.hero-desc {
  font-size: 17px;
  color: var(--brown-mid);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-img-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 480px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #E8C99A 0%, #C9945A 50%, #A86B3A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: visible;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 2px dashed rgba(232,151,10,0.4);
  border-radius: 36px;
}
.hero-float-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-float-badge.badge-top {
  top: -16px; left: -20px;
}
.hero-float-badge.badge-bottom {
  bottom: -16px; right: -20px;
}
.badge-icon { font-size: 26px; }
.badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--brown); }
.badge-text span { font-size: 11px; color: var(--gray); }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-emoji);
  position: absolute;
  font-size: 240px;
  opacity: 0.06;
  bottom: -40px;
  right: 5%;
}
.page-hero .eyebrow { color: var(--turmeric); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-mid);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--brown);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201,79,44,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ─────────────────────────────────────────────
   COLLAB CARDS
───────────────────────────────────────────── */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.collab-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.collab-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.collab-card .icon { font-size: 36px; margin-bottom: 12px; }
.collab-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.collab-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ─────────────────────────────────────────────
   SOCIAL LINKS
───────────────────────────────────────────── */
.social-link-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link-card {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.social-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}
.social-link-card .s-icon { font-size: 28px; }
.social-link-card .s-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--brown); }
.social-link-card .s-info span { font-size: 12px; color: var(--gray); }

/* ─────────────────────────────────────────────
   NO RESULTS
───────────────────────────────────────────── */
.no-results {
  text-align: center;
  padding: 60px 24px;
  color: var(--gray);
  display: none;
}
.no-results .nr-icon { font-size: 56px; margin-bottom: 16px; }
.no-results h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--brown-mid);
  margin-bottom: 8px;
}

/* ─────────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 90;
  border: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--brown); }

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0 !important; }
.tag-green {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.divider-line {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { max-width: 380px; margin: 0 auto; }
  .hero-float-badge.badge-bottom { bottom: -12px; right: -8px; }
  .hero-float-badge.badge-top { top: -12px; left: -8px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .video-search-panel { align-items: stretch; flex-direction: column; }
  .video-search-count { align-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .stats-bar { flex-wrap: wrap; width: 100%; }
  .stat-item { flex: 1; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 28px 22px; }
}

@media (max-width: 560px) {
  .recipe-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-float-badge { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
}

@media (max-width: 400px) {
  .recipe-grid { grid-template-columns: 1fr; }
}
