/* ============================================================
   Niyanta — Paneer Phool Herbal Tea
   Premium herbal-brand theme · KPS Ventures
   ============================================================ */

:root {
  --green-900: #143a26;
  --green-800: #1f5135;
  --green-700: #2a6a46;
  --green-500: #3f8a5f;
  --gold: #c79a3e;
  --gold-soft: #e6c878;
  --cream: #f7f3ea;
  --cream-2: #efe7d6;
  --sand: #ede4d0;
  --ink: #22281f;
  --muted: #5e6557;
  --white: #ffffff;
  --tea: #b9772e;

  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 18px 50px -20px rgba(20, 58, 38, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(20, 58, 38, 0.3);
  --maxw: 1160px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* No overflow-x on the root: setting it changes the scroll container on some
   mobile browsers and breaks window.scrollTo(). The mobile menu is hidden with
   display:none instead of being translated off-screen, so it never overflows. */
html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); color: var(--green-900); }
em { font-style: italic; }

.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.section-sub { color: var(--muted); margin-top: 0.6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green-800); color: var(--white);
  font-weight: 600; font-size: 0.98rem;
  padding: 0.8rem 1.5rem; border-radius: 999px; border: 2px solid var(--green-800);
  cursor: pointer; transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--green-700); border-color: var(--green-700); transform: translateY(-2px); }
.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--green-800); box-shadow: none; }
.btn--ghost:hover { background: var(--green-800); color: var(--white); }
.btn--wa { background: #25d366; border-color: #25d366; color: #08361b; }
.btn--wa:hover { background: #1ebe5a; border-color: #1ebe5a; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--green-900); color: var(--cream);
  text-align: center; font-size: 0.84rem; letter-spacing: 0.01em;
  padding: 0.55rem 1rem;
}

/* ---------- Header ---------- */
/* NOTE: no backdrop-filter/filter/transform here — any of those would make the
   position:fixed mobile .nav panel positioned relative to the header instead of
   the viewport, breaking the off-canvas menu when the page is scrolled. */
.header {
  /* z-index must stay ABOVE the mobile menu backdrop (75). The header forms a
     stacking context, and the off-canvas .nav lives inside it — if the header
     sits below the backdrop, the backdrop intercepts taps on the menu links. */
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 234, 0.97);
  border-bottom: 1px solid rgba(20, 58, 38, 0.08);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand__mark { border-radius: 10px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--green-900); }
.brand__name--light { color: var(--cream); }
.brand__tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink); transition: color 0.15s ease; }
.nav a:not(.nav__cta):hover { color: var(--green-700); }
.nav__cta { color: var(--white); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--green-900); border-radius: 2px; transition: 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(199, 154, 62, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
/* Grid/flex children default to min-width:auto, which can push a column past
   the container's padding. Force them to shrink so text never clips. */
.hero__inner > * { min-width: 0; }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 4rem); color: var(--green-900); margin-bottom: 1.1rem; overflow-wrap: anywhere; }
.hero__title em { color: var(--gold); }
.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 30rem; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem 1.3rem; }
.hero__badges li { font-size: 0.92rem; font-weight: 600; color: var(--green-800); }

/* Hero art — tea cup */
.hero__art { position: relative; display: grid; place-items: center; min-height: 360px; }
.cup { position: relative; width: 230px; height: 200px; }
.cup__body {
  position: absolute; bottom: 28px; left: 18px; width: 170px; height: 130px;
  background: linear-gradient(160deg, #ffffff, #f0e9da);
  border-radius: 16px 16px 90px 90px / 16px 16px 70px 70px;
  box-shadow: var(--shadow); overflow: hidden;
  border: 3px solid #fff;
}
.cup__liquid {
  position: absolute; top: 14px; left: 12px; right: 12px; height: 34px;
  background: radial-gradient(circle at 50% 30%, #d99a4e, var(--tea));
  border-radius: 50%;
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.18);
}
.cup__handle {
  position: absolute; bottom: 62px; right: -2px; width: 58px; height: 60px;
  border: 14px solid #ffffff; border-left-color: transparent; border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.cup__saucer {
  position: absolute; bottom: 6px; left: -8px; width: 224px; height: 30px;
  background: linear-gradient(160deg, #ffffff, #ece4d3);
  border-radius: 50%; box-shadow: var(--shadow);
}
.cup__steam { position: absolute; top: -36px; left: 56px; width: 80px; height: 60px; }
.cup__steam span {
  position: absolute; bottom: 0; width: 8px; height: 46px;
  background: linear-gradient(to top, rgba(255,255,255,0.85), transparent);
  border-radius: 8px; filter: blur(2px);
  animation: steam 3.4s ease-in-out infinite;
}
.cup__steam span:nth-child(1) { left: 6px; animation-delay: 0s; }
.cup__steam span:nth-child(2) { left: 34px; height: 56px; animation-delay: 0.7s; }
.cup__steam span:nth-child(3) { left: 62px; animation-delay: 1.4s; }
@keyframes steam {
  0% { transform: translateY(6px) scaleY(0.85); opacity: 0; }
  35% { opacity: 0.8; }
  100% { transform: translateY(-22px) scaleY(1.15); opacity: 0; }
}
.petal { position: absolute; color: var(--gold-soft); font-size: 1.8rem; animation: float 6s ease-in-out infinite; }
.petal--1 { top: 12%; left: 8%; font-size: 2.4rem; color: var(--gold); }
.petal--2 { bottom: 16%; left: 2%; animation-delay: 1.2s; }
.petal--3 { top: 22%; right: 6%; animation-delay: 2.1s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(12deg); } }

/* ---------- Trust strip ---------- */
.trust { background: var(--green-900); color: var(--cream); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; }
.trust__item { text-align: center; }
.trust__item strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-soft); }
.trust__item span { font-size: 0.86rem; opacity: 0.85; }

/* ---------- Product ---------- */
.product { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.product__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.2rem; align-items: center; }

.product__media { display: grid; place-items: center; }
.pack {
  width: 250px; height: 340px; border-radius: 18px; position: relative;
  background: linear-gradient(165deg, var(--green-700), var(--green-900));
  box-shadow: var(--shadow); padding: 1.4rem; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.pack::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(380px 180px at 50% -10%, rgba(230, 200, 120, 0.25), transparent 70%);
}
.pack__top { height: 14px; background: var(--gold); border-radius: 6px; margin: -0.4rem -0.4rem 1rem; }
.pack__label {
  position: relative; z-index: 1; height: calc(100% - 1.6rem);
  border: 1.5px solid rgba(230, 200, 120, 0.5); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 0.25rem; color: var(--cream); padding: 1rem;
}
.pack__label img { background: var(--cream); border-radius: 12px; padding: 6px; }
.pack__brand { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin-top: 0.5rem; }
.pack__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-soft); }
.pack__sub { letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.7rem; }
.pack__weight { margin-top: 0.8rem; font-size: 0.74rem; opacity: 0.8; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 0.6rem; }

.product__info h2 { margin: 0.2rem 0 0.5rem; }
.rating { color: var(--gold); font-size: 1rem; margin-bottom: 0.9rem; }
.rating span { color: var(--muted); font-size: 0.86rem; margin-left: 0.3rem; }
.product__info p { color: var(--muted); margin-bottom: 1rem; }
.product__points { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.4rem; }
.product__points li { position: relative; padding-left: 1.7rem; color: var(--ink); }
.product__points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-700); font-weight: 800; }

.price { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1.4rem; }
.price__now { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-900); }
.price__mrp { text-decoration: line-through; color: var(--muted); }
.price__save { background: var(--gold-soft); color: #5a4410; font-weight: 700; font-size: 0.78rem; padding: 0.2rem 0.6rem; border-radius: 999px; }

.product__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0.8rem; }
.product__note { font-size: 0.84rem; color: var(--muted); }

/* ---------- Benefits ---------- */
.benefits { background: linear-gradient(180deg, var(--cream-2), var(--cream)); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20, 58, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon { font-size: 2rem; margin-bottom: 0.7rem; }
.card h3 { font-size: 1.2rem; color: var(--green-900); margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.96rem; }
.disclaimer { margin-top: 2.4rem; font-size: 0.8rem; color: var(--muted); text-align: center; max-width: 760px; margin-inline: auto; line-height: 1.6; }

/* ---------- Brew ---------- */
.brew { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.brew__head { text-align: center; max-width: 620px; margin: 0 auto 2.8rem; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: s; }
.step {
  background: var(--cream); border-radius: var(--radius); padding: 1.8rem 1.4rem; text-align: center;
  border: 1px solid rgba(20, 58, 38, 0.07); position: relative;
}
.step__num {
  display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 0.9rem;
  background: var(--green-800); color: var(--cream); border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
}
.step h3 { color: var(--green-900); font-size: 1.15rem; margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Story ---------- */
.story { background: var(--green-900); color: var(--cream); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.story__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: center; }
.story__art { display: grid; place-items: center; }
.leaf-badge {
  width: 200px; height: 200px; border-radius: 50%; display: grid; place-items: center;
  font-size: 5rem; color: var(--green-900);
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold));
  box-shadow: 0 25px 60px -20px rgba(0,0,0,0.5);
}
.story__copy h2 { color: var(--cream); }
.story__copy p { color: rgba(247, 243, 234, 0.82); margin: 1rem 0; }
.story__copy strong { color: var(--gold-soft); }
.story__copy em { color: var(--cream); }
.story .btn--ghost { color: var(--gold-soft); border-color: var(--gold-soft); margin-top: 0.6rem; }
.story .btn--ghost:hover { background: var(--gold-soft); color: var(--green-900); }

/* ---------- Vision & Mission ---------- */
.vm { padding: clamp(3.5rem, 7vw, 6rem) 0; background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.vm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.vm__card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20, 58, 38, 0.06);
  border-top: 4px solid var(--gold);
}
.vm__ic { font-size: 2.2rem; margin-bottom: 0.6rem; }
.vm__card h3 { font-size: 1.5rem; color: var(--green-900); margin-bottom: 0.6rem; }
.vm__card p { color: var(--muted); }
.vm__card strong { color: var(--green-800); }
.vm__more { text-align: center; color: var(--muted); max-width: 740px; margin: 2.2rem auto 0; }
.vm__tagline {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem); color: var(--green-900);
  margin-top: 1.6rem; padding-top: 1.6rem; border-top: 2px solid var(--sand);
}

/* ---------- Quotes ---------- */
.quotes { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
}
.quote p { font-family: var(--font-display); font-size: 1.1rem; color: var(--green-900); font-style: italic; margin-bottom: 0.8rem; }
.quote footer { color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* ---------- Order ---------- */
.order { padding: clamp(2rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 6rem); }
.order__card {
  background:
    radial-gradient(700px 320px at 90% 0%, rgba(199, 154, 62, 0.2), transparent 60%),
    linear-gradient(160deg, var(--green-700), var(--green-900));
  color: var(--cream); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center; box-shadow: var(--shadow);
}
.order__card h2 { color: var(--cream); }
.order__card > p { color: rgba(247, 243, 234, 0.85); max-width: 540px; margin: 0.8rem auto 1.6rem; }
.order__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.order .btn--ghost { color: var(--cream); border-color: var(--cream); }
.order .btn--ghost:hover { background: var(--cream); color: var(--green-900); }
.order__phone { margin-top: 1.4rem; font-size: 0.95rem; color: rgba(247,243,234,0.85); }
.order__phone a { color: var(--gold-soft); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--cream-2); }
.accordion { max-width: 760px; margin: 0 auto; display: grid; gap: 0.8rem; }
.acc {
  background: var(--white); border-radius: 14px; padding: 0.4rem 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20, 58, 38, 0.06);
}
.acc summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--green-900);
  padding: 0.95rem 2rem 0.95rem 0; position: relative; font-size: 1.02rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold); transition: transform 0.2s ease;
}
.acc[open] summary::after { content: "−"; }
.acc p { color: var(--muted); padding-bottom: 1rem; }

/* ---------- Contact ---------- */
.contact { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
/* let grid items shrink below their content's intrinsic width (prevents the
   form/inputs from forcing the column wider than the viewport on small phones) */
.contact__inner > * { min-width: 0; }
.contact__list { list-style: none; display: grid; gap: 1.2rem; margin-top: 1.4rem; }
.contact__list li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--ink); }
.contact__ic { font-size: 1.3rem; }
.contact__list a { color: var(--green-700); font-weight: 600; }
.contact__list a:hover { text-decoration: underline; }

.contact__form {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(20, 58, 38, 0.07); display: grid; gap: 1rem;
}
.contact__form h3 { color: var(--green-900); font-size: 1.3rem; }
.contact__form label { display: grid; gap: 0.35rem; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.contact__form input, .contact__form textarea {
  font-family: inherit; font-size: 0.98rem; padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--sand); border-radius: 10px; background: var(--cream); color: var(--ink);
  transition: border-color 0.15s ease;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.contact__form input:focus, .contact__form textarea:focus { outline: none; border-color: var(--green-500); }
.contact__hint { font-size: 0.8rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: var(--cream); padding-top: 2.6rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.2rem; }
.footer__brand p { color: rgba(247, 243, 234, 0.7); font-size: 0.92rem; margin-top: 0.8rem; max-width: 24rem; }
.footer__links, .footer__social { display: grid; gap: 0.6rem; align-content: start; }
.footer__links a, .footer__social a { color: rgba(247, 243, 234, 0.78); font-size: 0.95rem; transition: color 0.15s ease; }
.footer__links a:hover, .footer__social a:hover { color: var(--gold-soft); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); padding: 1rem 0; }
.footer__bar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bar span { font-size: 0.8rem; color: rgba(247, 243, 234, 0.6); }

/* ---------- Floating WhatsApp ---------- */
.fab-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.15s ease;
}
.fab-wa:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    position: fixed; top: 0; right: 0; left: auto;
    height: 100vh; height: 100dvh; width: min(80vw, 330px);
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    /* solid, fully opaque panel so page content never shows through */
    background: var(--green-900); padding: 5.5rem 1.4rem 2rem;
    box-shadow: -24px 0 60px -15px rgba(0,0,0,0.55);
    z-index: 80; overflow-y: auto;
    display: none;            /* hidden = zero overflow, no transform needed */
  }
  .nav.open { display: flex; animation: navIn 0.25s ease both; }
  @keyframes navIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  /* light, high-contrast links on the dark panel */
  .nav a { color: var(--cream); font-size: 1.05rem; padding: 0.85rem 0.6rem; border-radius: 10px; }
  .nav a:not(.nav__cta) { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .nav a:not(.nav__cta):hover,
  .nav a:not(.nav__cta):active { color: var(--gold-soft); background: rgba(255,255,255,0.06); }
  .nav__cta { margin-top: 1rem; text-align: center; background: var(--gold); border-color: var(--gold); color: var(--green-900); }
  .nav__cta:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

  /* dark dim over the rest of the page while the menu is open (no blur) */
  body.menu-open::before {
    content: ""; position: fixed; inset: 0; z-index: 75;
    background: rgba(10, 24, 16, 0.45);
  }
  body.menu-open .fab-wa { display: none; }

  .nav-toggle { display: flex; z-index: 90; }
  /* make the close (X) icon visible against the dark panel */
  .nav-toggle[aria-expanded="true"] span { background: var(--cream); }

  .hero__inner, .product__inner, .story__inner, .contact__inner, .vm__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .cards, .quote-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust__inner { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .cards, .quote-grid, .steps, .footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(1.7rem, 6.8vw, 2.4rem); }
  .eyebrow { letter-spacing: 0.12em; overflow-wrap: break-word; }
  .footer__bar .container { flex-direction: column; gap: 0.4rem; }
  .announce { font-size: 0.72rem; }
  /* keep decorative cup fully inside the viewport */
  .cup { transform: scale(0.82); }
  .hero__art { min-height: 300px; }
}

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

/* ---- Order form ---- */
.order__inner { max-width: 840px; margin: 0 auto; }
.order__head { text-align: center; margin-bottom: 2rem; }
.order-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  box-shadow: 0 24px 60px -34px rgba(0,0,0,0.45);
  display: grid;
  gap: 1.15rem;
  text-align: left;
}
.order-form label { display: block; font-weight: 600; color: var(--green-900); font-size: 0.92rem; }
.order-form .req { color: #b3261e; }
.order-form .opt { color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.order-form input,
.order-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  font: inherit;
  color: inherit;
  background: var(--cream);
}
.order-form input:focus,
.order-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.of__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.of__group, .of__pay { border: 1px solid rgba(0,0,0,0.14); border-radius: 12px; padding: 0.6rem 1.1rem 1.1rem; display: grid; gap: 0.9rem; margin: 0; }
.of__group legend, .of__pay legend { font-weight: 700; color: var(--green-900); padding: 0 0.4rem; font-size: 0.9rem; }
.of__qty { align-self: center; }
.of__qty > label { margin-bottom: 0.2rem; }
.qty { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.4rem; }
.qty button { width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.18); background: var(--cream); font-size: 1.05rem; cursor: pointer; line-height: 1; }
.qty button:hover { background: var(--gold-soft); }
.qty input { width: 84px; text-align: center; margin-top: 0; }
.of__qty small { display: block; color: var(--muted); margin-top: 0.4rem; font-size: 0.8rem; }
.of__pay { align-content: start; }
.of__pay .radio, .order-form .check { display: flex; align-items: center; gap: 0.55rem; font-weight: 500; }
.of__pay .radio input, .order-form .check input { width: auto; margin: 0; }
.order-form .check { font-size: 0.92rem; align-items: flex-start; }
.of__status { text-align: center; font-weight: 600; min-height: 1.2rem; margin: 0; }
.of__status.ok { color: var(--green-800); }
.of__status.err { color: #b3261e; }
.contact__note { background: var(--cream-2); border-radius: 16px; padding: 1.7rem; }
.contact__note h3 { color: var(--green-900); margin-bottom: 0.6rem; }
.contact__note p { color: var(--muted); }
.contact__note p + p { margin-top: 0.8rem; }
@media (max-width: 640px) { .of__row { grid-template-columns: 1fr; } }

/* ---- Why people love (checklist) ---- */
.love-list { list-style: none; max-width: 560px; margin: 0 auto; display: grid; gap: 0.75rem; }
.love-list li { font-weight: 600; color: var(--green-900); font-size: 1.02rem; background: var(--cream-2); border-radius: 10px; padding: 0.7rem 1rem; }

/* ---- Story image (KPS Ventures) ---- */
.story__img { width: 100%; max-width: 300px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; box-shadow: 0 20px 50px -24px rgba(0,0,0,0.6); border: 4px solid var(--gold-soft); display: block; }


/* ---- Disclaimer band ---- */
.legal { padding: clamp(2.4rem, 5vw, 3.6rem) 0; background: var(--cream-2); border-top: 1px solid rgba(0,0,0,0.08); }
.legal__title { color: var(--green-900); font-size: 1.4rem; margin-bottom: 0.7rem; }
.legal__text { color: var(--muted); max-width: 940px; line-height: 1.7; font-size: 0.95rem; }
.legal__text strong { color: var(--green-900); }
