/* ============ Noble Salads — styles (matched to brand flyer) ============ */
:root {
  --green-950: #0e3a1d;
  --green-900: #14522a;
  --green-700: #1c5b2e;
  --green-600: #2a7a41;
  --green-100: #e6f1dd;
  --lime: #dde84a;
  --lime-soft: #eef4c3;
  --gold: #e5a823;
  --red: #e63946;
  --red-dark: #cf2b38;
  --cream: #faf6e8;
  --white: #ffffff;
  --ink: #1d2b20;
  --muted: #5c6b5e;
  --shadow: 0 10px 30px rgba(14, 58, 29, 0.10);
  --shadow-lg: 0 20px 50px rgba(14, 58, 29, 0.16);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 84px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 34px; font-size: 1.06rem; }
.btn-order {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(230, 57, 70, 0.35);
}
.btn-order:hover { background: var(--red-dark); box-shadow: 0 12px 26px rgba(230, 57, 70, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn-ghost:hover { background: var(--green-700); color: #fff; }
.btn-gym {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.35);
}
.btn-gym:hover { background: linear-gradient(135deg, #e85d2c, #ff6b35); box-shadow: 0 12px 26px rgba(255, 107, 53, 0.45); }
.nav-cta-group { display: flex; gap: 10px; align-items: center; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.navbar.scrolled {
  background: rgba(250, 246, 232, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(14, 58, 29, 0.08);
  padding: 8px 0;
}
.nav-inner { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 8px; }
.brand-crown { font-size: 1.6rem; }
.brand-block { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green-900);
}
.brand-text em { font-style: italic; color: var(--green-600); }
.brand-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.brand-text-light { color: #fff; }
.brand-text-light em { color: var(--lime); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--green-900);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(221, 232, 74, 0.28), transparent 65%),
    radial-gradient(500px 380px at 5% 90%, rgba(229, 168, 35, 0.12), transparent 60%),
    linear-gradient(160deg, #f4f6e4 0%, var(--cream) 55%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  color: var(--green-950);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--green-600); font-style: italic; }
.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 36px; flex-wrap: wrap; }
.badge-item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--green-700);
}
.badge-item span { font-size: 0.88rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: 30px; }
.hero-img-wrap img {
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  width: 100%;
}
.float-card {
  position: absolute;
  background: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  animation: floaty 4s ease-in-out infinite;
}
.float-card-1 { top: 24px; left: -22px; }
.float-card-2 { bottom: 30px; right: -14px; animation-delay: 2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- USP strip ---------- */
.usp { background: var(--white); padding: 48px 0; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.usp-grid-5 { grid-template-columns: repeat(5, 1fr); }
.usp-item { text-align: center; padding: 0 6px; }
.usp-icon { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.usp-item h3 {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-900);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ---------- Section headers ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-kicker {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.section-head h2, .about-content h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--green-950);
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1.04rem; }
.new-recipe-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--green-950);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 7px 18px;
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-img { position: relative; }
.menu-img img { height: 200px; width: 100%; object-fit: cover; }
.tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.tag-best { background: var(--red); }
.menu-body { padding: 20px 22px 24px; }
.menu-body h3 { font-size: 1.18rem; color: var(--green-950); }
.menu-marathi { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.menu-body p:not(.menu-marathi) { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.menu-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.menu-meta span {
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
}
.menu-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: 1rem; }

/* ---------- Full bowl list ---------- */
.bowl-list {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bowl-list-head {
  background: var(--green-900);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  padding: 16px;
}
.bowl-columns {
  list-style: none;
  counter-reset: bowl;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 40px;
  padding: 30px 36px;
}
.bowl-columns li {
  counter-increment: bowl;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed #e3e0d2;
}
.bowl-columns li::before {
  content: counter(bowl);
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--green-700);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  align-self: center;
}
.bowl-columns li strong { color: var(--green-950); font-size: 0.98rem; display: block; }
.bowl-columns li span { color: var(--muted); font-size: 0.82rem; display: block; }
.bowl-columns li > strong + span { margin-left: 0; }
.bowl-columns li strong, .bowl-columns li span { line-height: 1.4; }
.bowl-columns li { flex-wrap: wrap; }
.bowl-columns li strong { flex: 1 1 auto; }
.bowl-columns li span { flex-basis: 100%; margin-left: 44px; }

/* ---------- Meal Box Plans ---------- */
.plans { background: var(--green-950); }
.plans .section-head h2 { color: #fff; }
.plans .section-kicker { color: var(--lime); }
.free-delivery-chip {
  display: inline-block;
  background: var(--lime);
  color: var(--green-950) !important;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.95rem !important;
}
.plans-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}
.plans-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}
.plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 38px 30px 34px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.plan-card h3 { font-size: 1.35rem; color: var(--green-950); }
.plan-price {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-700);
}
.plan-price s { color: var(--red); font-size: 1.3rem; margin-right: 10px; opacity: 0.85; }
.plan-card ul {
  list-style: none;
  text-align: left;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  display: grid;
  gap: 8px;
}
.plan-card .btn { margin-top: auto; }
.plan-featured {
  background: linear-gradient(170deg, #ffffff, #f7fadf);
  border: 2px solid var(--lime);
  box-shadow: var(--shadow-lg);
}
.plan-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--green-950);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.shake-banner {
  margin-top: 52px;
  text-align: center;
  color: #fff;
}
.shake-line {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}
.shake-line em { color: var(--lime); }
.shake-sub { color: #c9d6c5; margin-top: 6px; font-size: 1.02rem; }
.shake-sub strong { color: var(--lime); }

/* ---------- Why Noble Salads ---------- */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.4;
  object-fit: cover;
}
.about-content h2 em { color: var(--green-600); font-style: italic; }
.why-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
}
.about-points { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.about-points span {
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 8px 16px;
  border-radius: 999px;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.stars { color: #f5b301; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-card > p { color: var(--ink); font-size: 0.97rem; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.reviewer strong { display: block; color: var(--green-950); font-size: 0.95rem; }
.reviewer small { color: var(--muted); }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: grid; gap: 22px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item > span {
  font-size: 1.4rem;
  background: var(--green-100);
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--green-950); margin-bottom: 2px; }
.contact-item a, .contact-item p { color: var(--muted); font-size: 0.98rem; }
.contact-item a:hover { color: var(--red); }
.contact-cta { margin-top: 8px; justify-self: start; }
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.footer { background: var(--green-950); color: #cfdcd2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 60px 0 40px;
}
.footer-motto {
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 14px;
}
.footer-brand p { margin-top: 8px; font-size: 0.94rem; max-width: 32ch; }
.footer-links { display: grid; gap: 10px; align-content: start; }
.footer-links h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-links a { font-size: 0.93rem; color: #cfdcd2; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
  font-size: 0.87rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.1); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-visual { order: -1; max-width: 480px; }
  .menu-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid, .usp-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .bowl-columns { grid-template-columns: 1fr; padding: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* ---------- B2B Section ---------- */
.b2b {
  background: linear-gradient(135deg, #f0faf0 0%, #d4edda 100%);
}

.b2b-tagline {
  color: var(--green-600);
  font-size: 1.1rem !important;
  font-weight: 500;
  margin-top: 12px;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 48px 0;
}

.b2b-card {
  background: var(--white);
  border: 2px solid #e0e8e0;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.b2b-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-600);
}

.b2b-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.b2b-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--green-950);
}

.b2b-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-600);
  color: var(--green-600);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--green-600);
  color: var(--white);
}

.b2b-cta {
  padding: 32px;
  background: rgba(14, 58, 29, 0.05);
  border-radius: var(--radius);
  border: 2px solid rgba(14, 58, 29, 0.1);
}

@media (max-width: 768px) {
  .b2b-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .menu-grid, .reviews-grid, .plans-grid-2 { grid-template-columns: 1fr; }
  .b2b-grid { grid-template-columns: 1fr; }
  .usp-grid, .usp-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 6%;
    gap: 16px;
    box-shadow: 0 14px 24px rgba(14, 58, 29, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta-group { display: none; }
  .float-card-1 { left: 6px; }
  .float-card-2 { right: 6px; }
  .footer-grid { grid-template-columns: 1fr; }
}
