/* =========================================================
   BurntTide — v3 Design Layer ("Citrus Tide" variant)
   Loaded on top of style.css. Keeps the brand's brown/cream
   base but shifts the accent system toward lime + crimson,
   with a bolder editorial-bento layout, sticker badges, and
   diagonal section breaks as the new signature (replacing
   the wavy tideline used on the v1/v2 layouts).
   ========================================================= */

:root {
  --v3-accent: var(--lime);
  --v3-accent-ink: #3c4400;
  --v3-dark: var(--brown-deep);
}

/* ---------- Nav tweaks ---------- */
.nav-cta.v3 {
  background: var(--lime);
  color: var(--v3-accent-ink) !important;
  box-shadow: 0 12px 26px -12px rgba(217, 232, 74, 0.65);
}

/* ---------- Diagonal divider (v3 signature) ---------- */
.diagonal-break {
  height: 64px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.diagonal-break svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.diagonal-break.flip { transform: scaleY(-1); }

/* ---------- v3 Hero ---------- */
.hero-v3 {
  background: var(--brown-deep);
  padding: 0;
  overflow: hidden;
}
.hero-v3 .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 40px;
}
.hero-v3 .eyebrow { color: var(--lime); }
.hero-v3 .eyebrow::before { background: var(--lime); }
.hero-v3 h1, .hero-v3 h1 * { color: var(--white); }
.hero-v3 .lede { color: #e9d9ca; }
.hero-v3 .hero-badges .pill { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #f4e9d8; }
.hero-v3 .btn-primary { background: var(--lime); color: var(--v3-accent-ink); box-shadow: 0 14px 30px -12px rgba(217,232,74,0.55); }
.hero-v3 .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-v3 .btn-outline:hover { background: var(--white); color: var(--brown-deep); }
.hero-v3-visual {
  position: relative;
  align-self: end;
  text-align: center;
}
.hero-v3-visual img {
height: auto; max-width: 78%; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45)); }
.sticker {
  position: absolute;
  background: var(--lime);
  color: var(--v3-accent-ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12.5px;
  padding: 12px 16px;
  border-radius: 50%;
  width: 92px; height: 92px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  line-height: 1.25;
  transform: rotate(-9deg);
  box-shadow: 0 14px 26px -10px rgba(0,0,0,0.45);
}
.sticker.top-right { top: 6%; right: 2%; }
.sticker.mid-left { top: 46%; left: -2%; background: var(--white); color: var(--brown-deep); transform: rotate(8deg); }
@media (max-width: 900px) {
  .hero-v3 .container { grid-template-columns: 1fr; padding-top: 40px; }
  .sticker { width: 74px; height: 74px; font-size: 11px; }
}

/* ---------- What Is block ---------- */
.whatis-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.whatis-grid img {
height: auto; border-radius: 22px; box-shadow: var(--shadow-soft); }
@media (max-width: 860px) { .whatis-grid { grid-template-columns: 1fr; } }

/* ---------- Bento benefits grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 168px;
  gap: 18px;
}
.bento-card {
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 22px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.bento-card.wide { grid-column: span 2; }
.bento-card.tall { grid-row: span 2; }
.bento-card.accent { background: var(--v3-accent); border-color: var(--v3-accent-ink); }
.bento-card.dark { background: var(--brown-deep); border-color: var(--brown-deep); color: var(--white); }
.bento-card.dark h3, .bento-card.dark p { color: var(--white); }
.bento-card h3 { font-size: 18px; margin: 0; }
.bento-card p { font-size: 13.5px; margin: 0; color: var(--muted); }
.bento-card .bento-num { font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
@media (max-width: 980px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento-card.wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.wide, .bento-card.tall { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Why choose: ticket cards ---------- */
.ticket-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ticket {
  border: 2px dashed var(--brown);
  border-radius: 16px;
  padding: 24px;
  background: var(--cream-2);
  position: relative;
}
.ticket .ticket-icon { width: 30px; height: 30px; margin-bottom: 14px; }
.ticket .ticket-icon svg { width: 100%; height: 100%; fill: var(--crimson); }
@media (max-width: 860px) { .ticket-row { grid-template-columns: 1fr; } }

/* ---------- Ingredient preview strip ---------- */
.ingredient-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.ingredient-chip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.ingredient-chip .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--v3-accent-ink);
  background: var(--v3-accent);
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 700px) { .ingredient-strip { grid-template-columns: 1fr; } }

/* ---------- Reviews: v3 stacked cards ---------- */
.review-v3 {
  background: var(--white);
  border-radius: 18px;
  padding: 26px;
  border-left: 6px solid var(--lime);
  box-shadow: var(--shadow-card);
}

/* ---------- Pricing v3 (modeled on real checkout card) ---------- */
.price-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card-v3 {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.price-card-v3.featured { border-color: var(--v3-accent-ink); box-shadow: 0 22px 44px -20px rgba(217,232,74,0.55); transform: translateY(-8px); }
.price-card-v3 .price-head {
  background: var(--brown-deep);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px;
}
.price-card-v3.featured .price-head { background: var(--v3-accent); color: var(--v3-accent-ink); }
.price-card-v3 .price-body { padding: 22px 20px 26px; display: flex; flex-direction: column; flex: 1; }
.price-card-v3 h3 { font-size: 21px; margin-bottom: 2px; }
.price-card-v3 .supply { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.price-card-v3 img {
height: auto; width: 90px; margin: 0 auto 14px; }
.price-card-v3 .price-big { font-size: 30px; }
.price-card-v3 .strike { text-decoration: line-through; color: var(--muted); font-size: 13.5px; }
.price-card-v3 .save-tag {
  display: inline-block;
  background: var(--saffron-soft);
  color: var(--brown-deep);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 8px 0 16px;
}
.price-card-v3 ul { list-style: none; text-align: left; font-size: 13px; margin: 0 0 18px; flex: 1; }
.price-card-v3 li { display: flex; gap: 8px; padding: 5px 0; align-items: flex-start; }
.price-card-v3 li svg { width: 15px; height: 15px; fill: var(--lava); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 980px) { .price-grid-v3 { grid-template-columns: repeat(2, 1fr); } .price-card-v3.featured { transform: none; } }
@media (max-width: 560px) { .price-grid-v3 { grid-template-columns: 1fr; } }

/* ---------- FAQ v3 (icon-based) ---------- */
.faq-v3 .faq-q { font-size: 16px; }
.faq-v3 .faq-icon-svg { width: 20px; height: 20px; fill: var(--lava); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-v3 .faq-item.open .faq-icon-svg { transform: rotate(45deg); }

/* ---------- Final CTA with image ---------- */
.cta-v3 {
  background: var(--brown-deep);
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.cta-v3-copy { padding: 46px 44px; }
.cta-v3-copy h2 { color: var(--white); }
.cta-v3-copy p { color: #e9d9ca; }
.cta-v3-img {
height: auto; position: relative; height: 100%; min-height: 280px; background: linear-gradient(160deg, var(--v3-accent), #b9c92e); display: flex; align-items: center; justify-content: center; }
.cta-v3-img img {
height: auto; max-width: 72%; filter: drop-shadow(0 24px 30px rgba(0,0,0,0.3)); }
@media (max-width: 820px) {
  .cta-v3 { grid-template-columns: 1fr; }
  .cta-v3-copy { padding: 36px 28px; text-align: center; }
}

/* ---------- Cursor accent ---------- */
.cursor-nudge {
  position: absolute;
  width: 40px;
  animation: nudge 1.8s ease-in-out infinite;
}
@keyframes nudge {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-6px, -6px) rotate(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cursor-nudge { animation: none; }
}
