*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #fdfaf5;
  --white: #ffffff;
  --ink: #1a1614;
  --ink-light: #6b5e57;
  --sage: #6d8b74;
  --sage-light: #eaf0eb;
  --coral: #e8604c;
  --coral-light: #fef0ed;
  --gold: #d4a853;
  --gold-light: #fdf6e7;
  --border: #ede8e1;
  --shadow-sm: 0 2px 8px rgba(26, 22, 20, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 22, 20, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 22, 20, 0.13);
  --r: 20px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo a {
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--coral);
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 400px) {
.nav-logo {
  font-family: "Fraunces", serif;
  font-size: 1  rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 6px 12px;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

}
/* HERO */
.hero-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 5% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid #edd688;
  padding: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8a6a1b;
  margin-bottom: 24px;
}
h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.72;
  margin-bottom: 36px;
  max-width: 430px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-meal {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 0.925rem;
  font-weight: 600;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.btn-meal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  transition: opacity 0.18s;
}
.btn-meal:hover::after {
  opacity: 1;
}
.btn-meal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-breakfast {
  background: var(--gold);
  color: #fff;
}
.btn-lunch {
  background: var(--sage);
  color: #fff;
}
.btn-dinner {
  background: var(--coral);
  color: #fff;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero-food {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.6s ease-in-out;
}
.food-scene {
  width: 100%;
  max-width: 500px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
}
.food-scene::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #f9e4a0, #f5c5bc, #b5d5be);
  z-index: -1;
  opacity: 0.55;
}
.food-illus {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(145deg, #fef3e2, #fce4dc, #e8f4eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6.5rem;
  margin-bottom: 18px;
}
.food-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: 12px;
  padding: 12px 16px;
}
.food-bar-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.food-lbl {
  font-size: 0.7rem;
  color: var(--ink-light);
  font-weight: 500;
}
.food-nm {
  font-size: 0.98rem;
  font-weight: 700;
}
.food-pill {
  background: var(--sage-light);
  color: var(--sage);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
}
.float-tag {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.float-tag.tl {
  top: -14px;
  left: -18px;
}
.float-tag.br {
  bottom: -14px;
  right: -18px;
  color: var(--coral);
}

/* LOADING */
.loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 64px 0;
  text-align: center;
}
.loading.active {
  display: flex;
}
.loader-ring {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.loading p {
  color: var(--ink-light);
  font-size: 0.92rem;
}

/* MEAL SECTION */
#meal-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5% 80px;
}
.meal-card {
  display: none;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideUp 0.5s ease;
}
.meal-card.visible {
  display: block;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.mc-left {
  background: linear-gradient(145deg, #fef3e2, #fce4dc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5rem;
  position: relative;
  padding: 40px;
}
.mc-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--coral);
}
.mc-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-around;
}
.meta-i {
  text-align: center;
}
.meta-v {
  font-size: 0.98rem;
  font-weight: 700;
}
.meta-k {
  font-size: 0.67rem;
  color: var(--ink-light);
  font-weight: 500;
}
.mc-right {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-lbl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.mc-right h2 {
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
}
.mc-right .desc {
  color: var(--ink-light);
  line-height: 1.72;
  font-size: 0.92rem;
}
.steps-h {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.steps-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 0.88rem;
}
.snum {
  min-width: 26px;
  height: 26px;
  background: var(--coral-light);
  color: var(--coral);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}
.btn-yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff0000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.btn-yt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.28);
}
.btn-wa {
  display: none;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-wa.visible {
  display: inline-flex;
}
@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
}

/* HEALTH SECTION */
#health-section {
  background: linear-gradient(135deg, #1a1614 0%, #2a1f1c 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
#health-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(212, 168, 83, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.hs-left h2 {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hs-left p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.72;
}
.divider {
  width: 38px;
  height: 3px;
  background: var(--coral);
  border-radius: 4px;
  margin-bottom: 18px;
}
.tip-card {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  animation: fadeIn 0.5s ease;
}
.tip-card.visible {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.tip-cat {
  display: inline-block;
  background: rgba(212, 168, 83, 0.2);
  color: var(--gold);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.tip-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 11px;
}
.tip-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.76;
  font-size: 0.9rem;
}
.tip-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.tip-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 13px;
  padding: 15px;
  text-align: center;
}
.ts-v {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  font-family: "Fraunces", serif;
}
.ts-k {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}
.tip-ph {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.9rem;
}
.tip-ph span {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

/* FEATURES */
.features {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    transform 0.22s,
    box-shadow 0.22s;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feat-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 15px;
}
.feat h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.feat p {
  color: var(--ink-light);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* FOOTER */
.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
}
footer {
  border-top: 1px solid var(--border);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer p {
  font-size: 0.82rem;
  color: var(--ink-light);
}
.footer-logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 5% 40px;
    text-align: center; /* ✅ centers text */
  }

  .hero-wrap h1,
  .hero-wrap p {
    text-align: center;
  }

  .hero-btns {
    justify-content: center; /* if buttons are flex */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 5% 40px;
  }
  .hero-visual {
    order: -1;
  }
  .mc-inner {
    grid-template-columns: 1fr;
  }
  .mc-left {
    min-height: 240px;
    font-size: 5.5rem;
  }
  .hs-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.credits {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.how-section {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
  font-family: 'Fraunces', serif;
}

.section-title p {
  color: #666;
  margin-top: 10px;
}

.how-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.how-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
}

.how-card:hover {
  transform: translateY(-5px);
}

.how-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.cta-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, #ff6b6b, #ffa94d);
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 38px;
  font-family: 'Fraunces', serif;
}

.cta-form {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.cta-form input {
  padding: 12px;
  width: 250px;
  border-radius: 8px;
  border: none;
}

.cta-form button {
  padding: 12px 20px;
  border: none;
  background: black;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-card {
    padding: 25px;
  }
}

.yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d90a0a;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.2s ease;
  box-shadow: 0 6px 18px rgba(255, 0, 0, 0.25);
}

.yt-btn:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.35);
}
#sponsored-badge {
  background: gold;
  color: black;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-left: 10px;
}