/* ============================================================
   JAVA BURN — css/style.css
   Domain: jjavaburn.us
   Theme: Midnight Navy #0A1628 + Product Red #C8200C + Warm White
   Navbar:   Navy bg + green bottom border
   Headings: Bold 900 + green LEFT accent bar (different from site1 underline)
   Buttons:  Solid green fill + navy hover (different from site1 gradient)
   Cards:    White cards + green left border on navy bg (different from dark glass)
   Hero:     Text LEFT / Image RIGHT (different from site1 Image LEFT)
   Font: Jost (Google Fonts)
   ============================================================ */

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

:root {
  --navy:          #0A1628;
  --navy-mid:      #0F1F3D;
  --navy-light:    #162447;
  --navy-pale:     #1E3055;
  --green:          #C8200C;
  --green-dark:    #9E1608;
  --green-mid:     #E8320A;
  --green-light:   #DCFCE7;
  --green-pale:    #F0FDF4;
  --white:         #FFFFFF;
  --warm-white:    #F8FAF5;
  --cream:         #FDF6F5;
  --text:          #0F1F14;
  --muted:         #4A4A4A;
  --border:        #F0D0CC;
  --border-light:  #FAE8E6;
  --radius:        8px;
  --radius-card:   14px;
  --radius-btn:    6px;
  --shadow:        0 4px 20px rgba(10,22,40,0.08);
  --shadow-h:      0 12px 40px rgba(200,32,12,0.18);
  --shadow-card:   0 3px 18px rgba(10,22,40,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif; font-size: 18px;
  color: var(--text); background: var(--white);
  overflow-x: hidden; line-height: 1.75;
}

/* ── NAVBAR — Navy + green bottom border ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  padding: 0 24px; height: 72px;
  box-shadow: 0 2px 20px rgba(10,22,40,0.35);
  border-bottom: 3px solid var(--green);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: 'Jost', sans-serif; font-size: 1.7rem; font-weight: 900;
  color: var(--white); text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase;
  flex-shrink: 0; line-height: 1;
}
.nav-logo span { color: var(--green-mid); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-links li { display: flex; align-items: center; margin: 0; padding: 0; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 0.93rem;
  font-weight: 500; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--green-mid); }
.btn-nav-order {
  background: var(--green) !important; color: var(--white) !important;
  font-weight: 800 !important; font-size: 0.87rem !important;
  padding: 9px 22px !important; border-radius: var(--radius-btn) !important;
  border: none !important; transition: all 0.22s !important;
  text-decoration: none; line-height: 1;
  box-shadow: 0 2px 12px rgba(200,32,12,0.40) !important;
  text-transform: uppercase;
}
.btn-nav-order:hover {
  background: var(--navy-light) !important;
  box-shadow: 0 4px 18px rgba(10,22,40,0.40) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { width: 25px; height: 2px; background: var(--white); display: block; border-radius: 2px; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy-mid); position: absolute;
  top: 72px; left: 0; right: 0;
  padding: 24px 32px; gap: 18px; z-index: 999;
  border-bottom: 3px solid var(--green);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 1rem; font-weight: 500; }
.mobile-menu .btn-mob-order {
  background: var(--green); color: var(--white); text-align: center;
  padding: 12px; border-radius: var(--radius-btn); font-weight: 800;
  margin-top: 6px; text-transform: uppercase;
}

/* ── BUTTONS — Solid green fill + navy hover ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  font-family: 'Jost', sans-serif; font-weight: 800; font-size: 1rem;
  padding: 16px 36px; border-radius: var(--radius-btn); border: none;
  text-decoration: none; transition: all 0.22s;
  box-shadow: 0 4px 18px rgba(200,32,12,0.35); line-height: 1.2;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--navy); color: var(--white);
  box-shadow: 0 6px 24px rgba(10,22,40,0.35);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--green-dark);
  font-family: 'Jost', sans-serif; font-weight: 700; font-size: 0.97rem;
  padding: 14px 28px; border-radius: var(--radius-btn);
  border: 2px solid var(--green); text-decoration: none;
  transition: all 0.22s; text-transform: uppercase;
}
.btn-outline:hover {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 18px rgba(200,32,12,0.35);
  transform: translateY(-2px);
}

/* ── SECTION BANDS — navy bg + green LEFT accent bar on h2 ── */
.sec-title-band {
  background: var(--navy); padding: 52px 40px 44px; text-align: center;
}
.sec-title-band h2 {
  font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--white); line-height: 1.22; letter-spacing: -0.3px;
  display: inline-block; padding-left: 20px; text-align: left;
  border-left: 5px solid var(--green); /* LEFT BAR — unique vs site1 */
  max-width: 860px;
}
.sec-title-band h2 span.hl { color: var(--green-mid); }
.sec-title-band p.sec-sub {
  font-size: 1rem; color: rgba(255,255,255,0.60);
  max-width: 600px; margin: 14px auto 0; padding-left: 25px;
  text-align: left;
}

/* ── HERO — Text LEFT / Image RIGHT ── */
.hero {
  background: var(--warm-white);
  background-image: radial-gradient(ellipse at 20% 60%, rgba(200,32,12,0.06) 0%, transparent 55%);
  padding: 80px 48px;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
}
/* TEXT LEFT */
.hero-content { order: 1; }
/* IMAGE RIGHT */
.hero-img-wrap { order: 2; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap a img {
  max-width: 100%; max-height: 560px; object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(200,32,12,0.20));
  transition: transform 0.4s ease;
}
.hero-img-wrap a:hover img { transform: scale(1.04); }

.hero-content .hero-tag {
  display: inline-block;
  background: var(--green-light); color: var(--green-dark);
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 16px; border-radius: 50px;
  border: 1px solid rgba(22,163,74,0.30); margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Jost', sans-serif; font-size: 2.6rem; font-weight: 900;
  line-height: 1.1; color: var(--navy); letter-spacing: -0.5px;
  margin-bottom: 8px; text-transform: none;
}
.hero-content h1 .h1-green { color: var(--green-dark); }
.hero-content p { font-size: 1.05rem; line-height: 1.82; color: var(--muted); margin-bottom: 16px; margin-top: 20px; }
.hero-content p strong { color: var(--navy); }
.hero-highlight {
  font-weight: 700; font-size: 0.95rem; display: block;
  margin-top: 8px; padding: 12px 16px 12px 20px;
  background: var(--green-light);
  border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--green-dark);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--navy-mid); padding: 16px 48px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0;
  border-bottom: 3px solid var(--green);
}
.sstat { display: flex; flex-direction: column; align-items: center; padding: 8px 30px; border-right: 1px solid rgba(255,255,255,0.10); }
.sstat:last-child { border-right: none; }
.sstat-num { font-family: 'Jost', sans-serif; font-size: 1.45rem; font-weight: 900; color: var(--green-mid); line-height: 1; }
.sstat-label { font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

/* ── REVIEWS — White cards on light bg ── */
.reviews-section { background: var(--cream); padding: 70px 48px; }
.reviews-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
  border-bottom: 4px solid var(--green); /* BOTTOM border — different from site1 top */
}
.review-card:hover { box-shadow: var(--shadow-h); transform: translateY(-5px); }
.reviewer-photo-wrap {
  width: 100%; height: 200px; overflow: hidden; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.reviewer-photo { width: 100%; height: 100%; object-fit: contain; background: var(--green-pale); transition: transform 0.4s ease; }
.review-card:hover .reviewer-photo { transform: scale(1.03); }
.reviewer-photo.img-error { opacity: 0; position: absolute; }
.reviewer-photo-wrap.img-broken::after { content: "👤"; font-size: 3.5rem; opacity: 0.20; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.review-card-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.review-stars { height: 20px; margin: 0 auto 10px; display: block; }
.review-badge { font-size: 0.82rem; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; text-transform: uppercase; }
.review-text { font-size: 0.97rem; line-height: 1.78; color: var(--muted); font-style: italic; flex: 1; }
.reviewer-name { margin-top: 16px; font-weight: 700; color: var(--navy); font-size: 0.9rem; padding-top: 12px; border-top: 1px solid var(--border-light); }

/* ── PROSE ── */
.what-is-section { background: var(--white); padding: 70px 48px; }
.what-is-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 60px; }
/* TEXT LEFT, IMAGE RIGHT on what-is too */
.what-is-text { order: 1; }
.what-is-img-wrap { order: 2; }
.what-is-img-wrap img { width: 100%; max-width: 420px; height: auto; object-fit: contain; filter: drop-shadow(0 8px 30px rgba(200,32,12,0.15)); display: block; }
.what-is-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.what-is-text p strong { color: var(--navy); }

.why-section { background: var(--cream); padding: 70px 48px; }
.section-prose { max-width: 900px; margin: 0 auto; }
.section-prose p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.section-prose p strong { color: var(--navy); }

/* ── PRICING BAND ── */
.pricing-band { background: var(--navy); padding: 44px 40px 14px; text-align: center; border-top: 3px solid var(--green); }
.pricing-band h3 { font-family: 'Jost', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--white); margin-bottom: 8px; padding-left: 20px; border-left: 5px solid var(--green); max-width: 700px; margin-left: auto; margin-right: auto; text-align: left; }
.pricing-band h3 span.hl { color: var(--green-mid); }
.pricing-band h4 { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.65); padding-left: 25px; max-width: 700px; margin: 0 auto; text-align: left; }

/* ── PRICE IMAGE ── */
.price-img-section { background: var(--warm-white); padding: 48px; text-align: center; }
.price-img-section a { display: block; }
.price-img-section a img { max-width: 900px; width: 100%; height: auto; object-fit: contain; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); border: 1px solid var(--border); }
.price-img-section a:hover img { transform: scale(1.01); }

/* ── INGREDIENTS — White cards with green left border on navy ── */
.ingredients-section { background: var(--navy); padding: 70px 48px; }
.ingredients-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.ingredient-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 5px solid var(--green); /* LEFT border — different from site1 top border */
  border-radius: var(--radius-card); padding: 26px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 14px rgba(200,32,12,0.12);
  transition: box-shadow 0.3s, transform 0.3s;
}
.ingredient-card:hover { box-shadow: var(--shadow-h); transform: translateY(-4px); }
.ing-icon {
  width: 48px; height: 48px; background: var(--green-light);
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1;
}
.ingredient-card h3 { font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.ingredient-card p { font-size: 0.94rem; line-height: 1.75; color: var(--muted); flex: 1; }

/* ── BADGE ROW ── */
.badge-row { background: var(--green-pale); padding: 32px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.badge-row-inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 8px; }
.badge-pill {
  background: var(--white); border: 1px solid var(--border);
  color: var(--navy); font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 700; padding: 6px 16px;
  border-radius: 50px; display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.3px; box-shadow: var(--shadow-card);
}
.badge-pill .bp-dot { color: var(--green-dark); }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--warm-white); padding: 70px 48px; }
.guarantee-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 60px; }
.guarantee-img-wrap img { width: 100%; max-width: 280px; height: auto; object-fit: contain; display: block; filter: drop-shadow(0 8px 20px rgba(10,22,40,0.12)); }
.guarantee-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.guarantee-text p strong { color: var(--navy); }

/* ── HOW TO USE — Numbered steps with green square badges ── */
.howto-section { background: var(--cream); padding: 70px 48px; }
.howto-steps { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.howto-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 22px 26px;
  display: flex; flex-direction: row; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.step-num {
  min-width: 48px; width: 48px; height: 48px;
  background: var(--green); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 900; font-size: 1.1rem;
  flex-shrink: 0; font-family: 'Jost', sans-serif;
}
.howto-step-text { flex: 1; min-width: 0; }
.howto-step h4 { font-family: 'Jost', sans-serif; font-size: 0.95rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
.howto-step p { font-size: 1rem; line-height: 1.75; color: var(--muted); }

/* ── FAQs ── */
.faq-section { background: var(--white); padding: 70px 48px; }
.faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 18px 24px; font-family: 'Jost', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background 0.2s; line-height: 1.4; }
.faq-question:hover { background: var(--green-pale); }
.faq-arrow { font-size: 0.9rem; transition: transform 0.3s; color: var(--green-dark); flex-shrink: 0; }
.faq-answer { display: none; padding: 16px 24px 20px; font-size: 1rem; line-height: 1.8; color: var(--muted); border-top: 1px solid var(--border); background: var(--white); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── ORDER SECTION ── */
.order-how-section { background: var(--cream); padding: 70px 48px; }
.order-how-inner { max-width: 900px; margin: 0 auto; }
.order-how-inner p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.order-how-inner p strong { color: var(--navy); }
.order-img-wrap { text-align: center; margin-top: 36px; }
.order-img-wrap a img { max-width: 900px; width: 100%; height: auto; border-radius: var(--radius); transition: transform 0.3s; box-shadow: var(--shadow); border: 1px solid var(--border); }
.order-img-wrap a:hover img { transform: scale(1.01); }

/* ── INFO BLOCKS ── */
.pricing-details { background: var(--warm-white); padding: 48px; }
.pricing-details-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.info-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; border-left: 5px solid var(--green); box-shadow: var(--shadow-card); }
.info-block h4 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; text-transform: uppercase; }
.info-block p, .info-block li { font-size: 1rem; line-height: 1.8; color: var(--muted); }
.info-block ul { list-style: none; padding: 0; margin: 0; }
.info-block ul li { padding: 4px 0; }
.info-block ul li::before { content: "✔ "; color: var(--green-dark); font-weight: 700; }

/* ── FINAL CTA — Navy bg ── */
.cta-final {
  background: var(--navy); padding: 80px 48px; text-align: center;
  border-top: 3px solid var(--green);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(200,32,12,0.10) 0%, transparent 60%);
}
.cta-final h2 { font-family: 'Jost', sans-serif; font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 36px; line-height: 1.2; display: inline-block; padding-left: 20px; border-left: 5px solid var(--green); text-align: left; max-width: 700px; }
.cta-final h2 span.hl { color: var(--green-mid); }
.cta-product-img { max-width: 420px; margin: 0 auto 28px; }
.cta-product-img a img { width: 100%; height: auto; filter: drop-shadow(0 16px 40px rgba(200,32,12,0.25)); transition: transform 0.4s; }
.cta-product-img a:hover img { transform: scale(1.05); }
.cta-regular-price { font-size: 1.1rem; color: rgba(255,255,255,0.35); text-decoration: line-through; display: block; margin-bottom: 6px; }
.cta-current-price { font-family: 'Jost', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--green-mid); display: block; margin-bottom: 28px; letter-spacing: -1px; }

/* ── FOOTER ── */
footer { background: var(--navy-mid); padding: 48px 48px 30px; border-top: 3px solid var(--green); }
.footer-cols { max-width: 1160px; margin: 0 auto 28px; display: flex; flex-wrap: wrap; justify-content: center; }
.footer-cols a { color: rgba(255,255,255,0.50); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; padding: 5px 16px; border-right: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
.footer-cols a:last-child { border-right: none; }
.footer-cols a:hover { color: var(--green-mid); }
.footer-legal { max-width: 1160px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; }
.footer-legal p { font-size: 0.85rem; color: rgba(255,255,255,0.30); line-height: 1.75; margin-bottom: 10px; }
.footer-copy { text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.22); margin-top: 14px; }
.footer-copy a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-copy a:hover { color: var(--green-mid); }

/* ── FADE-UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.1rem; }
  .what-is-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { order: 1; }
  .hero-img-wrap { order: 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .what-is-inner { grid-template-columns: 1fr; }
  .what-is-text { order: 1; }
  .what-is-img-wrap { order: 2; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-img-wrap { display: flex; justify-content: center; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-strip { flex-direction: column; align-items: center; gap: 8px; padding: 14px 20px; }
  .sstat { border-right: none; }
  .hero { padding: 44px 20px; }
  .hero-content h1 { font-size: 1.75rem; }
  .sec-title-band { padding: 40px 20px 34px; }
  .sec-title-band h2 { font-size: 1.5rem; }
  .reviews-grid, .ingredients-grid { grid-template-columns: 1fr; }
  .reviews-section, .what-is-section, .why-section, .ingredients-section,
  .howto-section, .guarantee-section, .faq-section, .order-how-section { padding: 44px 20px; }
  .pricing-details, .price-img-section, .badge-row { padding: 28px 16px; }
  .cta-final { padding: 56px 20px; }
  .cta-final h2 { font-size: 1.5rem; padding-left: 14px; }
  .cta-current-price { font-size: 2rem; }
  footer { padding: 36px 20px 24px; }
  .footer-cols a { border-right: none; padding: 4px 10px; }
}