:root {
  --black: #090909;
  --black-soft: #11100f;
  --panel: #171513;
  --panel-light: #211d1a;
  --cream: #f5efe4;
  --muted: #aaa39b;
  --orange: #dd5425;
  --orange-bright: #ff7040;
  --gold: #c4924d;
  --line: rgba(245, 239, 228, 0.14);
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 8px 20px;
  background: var(--orange);
  color: #130b08;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }

.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 clamp(20px, 5vw, 76px);
  background: rgba(9, 9, 9, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--orange);
  color: #100b09;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: skew(-6deg);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 0.82;
  letter-spacing: 0.04em;
}
.desktop-nav { display: flex; gap: 34px; margin-left: auto; }
.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #d7d0c8;
  transition: color 0.2s ease;
}
.desktop-nav a:hover { color: var(--orange-bright); }
.cart-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
}
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  background: var(--orange);
  color: #100b09;
  border-radius: 999px;
  font-size: 0.75rem;
}

.hero {
  min-height: calc(100vh - 118px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 76px) 74px;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.6;
}
.hero-copy { position: relative; z-index: 3; max-width: 660px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
h1 { font-size: clamp(4.8rem, 9vw, 8.6rem); }
h1 span, h2 span { color: var(--orange); }
.hero-lead {
  max-width: 590px;
  margin: 28px 0 24px;
  color: #cfc8c0;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}
.hero-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-highlights span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #d8d2ca;
  font-size: 0.74rem;
  font-weight: 700;
}

.purchase-card {
  max-width: 580px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(33, 29, 26, 0.96), rgba(18, 16, 15, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.purchase-topline, .quantity-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.price { display: block; font-family: var(--font-display); font-size: 2.35rem; font-weight: 800; line-height: 1; }
.price-note { color: var(--muted); font-size: 0.78rem; }
.stock-badge { color: #e5d7c5; font-size: 0.82rem; font-weight: 700; }
.stock-badge::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--orange-bright); box-shadow: 0 0 14px var(--orange); }
.quantity-row { margin: 18px 0; }
.quantity-control { display: grid; grid-template-columns: 38px 42px 38px; align-items: center; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.quantity-control button { height: 38px; background: transparent; color: var(--cream); border: 0; cursor: pointer; font-size: 1.2rem; }
.quantity-control button:hover { background: rgba(255,255,255,0.07); }
.quantity-control output { text-align: center; font-weight: 800; }
.saving-message { color: var(--gold); font-size: 0.8rem; font-weight: 700; text-align: right; }
.primary-button, .secondary-button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.primary-button { border: 0; background: var(--orange); color: #110b08; }
.primary-button:hover { background: var(--orange-bright); transform: translateY(-1px); }
.secondary-button { margin-top: 9px; border: 1px solid var(--line); background: transparent; color: var(--cream); }
.secondary-button:hover { background: rgba(255,255,255,0.05); }
.shipping-note { margin: 12px 0 0; color: var(--muted); font-size: 0.72rem; text-align: center; }

.hero-visual { min-height: 650px; position: relative; display: grid; place-items: center; }
.hero-visual img {
  width: min(100%, 720px);
  max-height: 790px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 45px rgba(0,0,0,0.55));
  border-radius: 30px;
}
.image-halo {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,48,20,0.48), rgba(65,20,12,0.13) 50%, transparent 72%);
  filter: blur(10px);
}
.floating-note {
  position: absolute;
  z-index: 4;
  min-width: 132px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  background: rgba(12, 11, 10, 0.84);
  border: 1px solid var(--line);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
}
.floating-note strong { color: var(--orange-bright); font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.floating-note span { color: #d7d0c8; font-size: 0.7rem; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.07em; }
.note-one { left: 4%; top: 24%; }
.note-two { right: -1%; bottom: 18%; }

.intent-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c0b0b;
}
.intent-strip span {
  padding: 22px;
  color: #d4ccc4;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.intent-strip span + span { border-left: 1px solid var(--line); }

.formula-section, .faq-section { padding: 110px clamp(20px, 6vw, 90px); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
h2 { font-size: clamp(3.5rem, 7vw, 6.8rem); }
.section-heading > p:last-child { max-width: 530px; color: var(--muted); }
.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.ingredient-card { min-height: 290px; padding: 30px; background: var(--black-soft); position: relative; }
.ingredient-card.featured { background: linear-gradient(150deg, #4b170d, #1b1210 78%); }
.ingredient-number { color: #716b64; font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.ingredient-dose { margin: 46px 0 4px; color: var(--orange-bright); font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.ingredient-card h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 1.8rem; text-transform: uppercase; }
.ingredient-card > p:last-child { margin: 0; color: var(--muted); font-size: 0.9rem; }

.details-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: 110px clamp(20px, 7vw, 110px);
  background: var(--cream);
  color: #17120f;
}
.label-image-wrap { text-align: center; }
.label-frame { padding: 18px; background: #d7c5a8; transform: rotate(-2deg); box-shadow: 0 30px 70px rgba(35,24,16,0.2); }
.label-frame img { width: 100%; max-height: 680px; object-fit: cover; object-position: center; }
.label-image-wrap > p { margin: 14px 0 0; color: #766b5e; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.details-copy .eyebrow { color: #a83819; }
.details-copy h2 span { color: #bd3e1d; }
.details-lead { max-width: 650px; color: #665d55; font-size: 1.08rem; }
.clean-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; list-style: none; padding: 0; margin: 34px 0; font-weight: 700; }
.clean-list span { color: #bd3e1d; margin-right: 8px; }
.other-ingredients { max-width: 680px; padding-top: 24px; border-top: 1px solid rgba(23,18,15,0.18); }
.other-ingredients h3 { margin: 0 0 6px; font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.other-ingredients p { margin: 0; color: #665d55; font-size: 0.9rem; }

.reviews-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; padding: 110px clamp(20px, 7vw, 110px); background: #100f0e; }
.rating-line { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 34px; }
.rating-score { color: var(--orange); font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7rem); font-weight: 900; line-height: 0.8; }
.rating-line > span:last-child { max-width: 150px; color: #c8c0b7; font-size: 0.85rem; font-weight: 700; line-height: 1.25; }
.seller-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.seller-metrics div { padding: 16px; border: 1px solid var(--line); }
.seller-metrics strong { display: block; font-family: var(--font-display); font-size: 1.8rem; }
.seller-metrics span { color: var(--muted); font-size: 0.7rem; }
.review-card { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 58px); background: var(--panel-light); border: 1px solid var(--line); border-radius: 22px; }
.stars { color: var(--orange-bright); letter-spacing: 0.15em; }
blockquote { margin: 22px 0 38px; font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4.2rem); font-weight: 700; line-height: 1; text-transform: uppercase; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 46px; height: 46px; display: grid; place-items: center; background: var(--orange); color: #100b08; border-radius: 50%; font-weight: 900; }
.review-meta strong, .review-meta span { display: block; }
.review-meta span { color: var(--muted); font-size: 0.76rem; }

.offer-section { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: center; padding: 110px clamp(20px, 7vw, 110px); }
.offer-copy > p:last-child { max-width: 490px; color: var(--muted); }
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tier-card { min-height: 160px; padding: 22px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; border: 1px solid var(--line); border-radius: 14px; background: var(--black-soft); color: var(--cream); cursor: pointer; }
.tier-card:hover, .tier-card.active { border-color: var(--orange); background: linear-gradient(145deg, #3c160e, #171311); }
.tier-card span { color: var(--muted); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.tier-card strong { margin: auto 0 3px; font-family: var(--font-display); font-size: 2rem; }
.tier-card small { color: var(--orange-bright); font-weight: 700; }

.faq-section { background: #141210; }
.faq-heading { margin-bottom: 36px; }
.accordion { max-width: 1000px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; text-transform: uppercase; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--orange-bright); font-size: 1.6rem; transition: transform 0.2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 800px; margin: -8px 0 24px; color: var(--muted); }

.final-cta { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding: 110px clamp(20px, 7vw, 110px); background: linear-gradient(110deg, #711d0d 0%, #2b120d 50%, #0c0b0b 100%); }
.final-buy { width: min(100%, 390px); }
.final-buy > span { display: block; margin-bottom: 12px; text-align: center; color: #e4d8ce; font-weight: 700; }

footer { display: grid; grid-template-columns: auto minmax(260px, 1fr) auto; gap: 42px; align-items: start; padding: 48px clamp(20px, 5vw, 76px) 100px; border-top: 1px solid var(--line); }
.disclaimer { max-width: 730px; margin: 0; color: #8f8983; font-size: 0.74rem; }
.copyright { margin: 0; color: #8f8983; font-size: 0.74rem; white-space: nowrap; }

.cart-overlay { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,0.66); backdrop-filter: blur(4px); }
.cart-drawer { position: fixed; z-index: 51; top: 0; right: 0; width: min(430px, 100%); height: 100%; padding: 24px; background: #12100f; border-left: 1px solid var(--line); transform: translateX(105%); transition: transform 0.3s ease; overflow-y: auto; }
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.cart-header h2 { font-size: 2.4rem; }
.cart-header button { background: transparent; color: var(--cream); border: 0; font-size: 2rem; cursor: pointer; }
.cart-empty { padding: 60px 0; text-align: center; color: var(--muted); }
.text-button { background: transparent; border: 0; color: var(--orange-bright); cursor: pointer; font-weight: 700; }
.cart-product { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.cart-product img { width: 90px; height: 112px; object-fit: cover; border-radius: 8px; }
.cart-product h3 { margin: 0; font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; }
.cart-product p { margin: 4px 0 12px; color: var(--muted); font-size: 0.78rem; }
.cart-quantity, .cart-total { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-total { margin-bottom: 20px; font-size: 1.05rem; }
.checkout-button { text-decoration: none; }
.cart-footnote { color: var(--muted); font-size: 0.72rem; text-align: center; }
.toast { position: fixed; z-index: 60; left: 50%; bottom: 28px; transform: translate(-50%, 120px); padding: 12px 18px; background: var(--cream); color: #17120f; border-radius: 999px; font-weight: 800; transition: transform 0.25s ease; }
.toast.show { transform: translate(-50%, 0); }
.mobile-buybar { display: none; }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr 0.9fr; }
  .hero-visual { min-height: 540px; }
  .note-one { left: -5%; }
  .note-two { right: -4%; }
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
  .reviews-section, .offer-section { gap: 38px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 76px; }
  .announcement span:nth-of-type(3), .announcement-dot:nth-of-type(2) { display: none; }
  .site-header { height: 70px; padding: 0 18px; }
  .desktop-nav { display: none; }
  .brand-name { font-size: 0.88rem; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px 64px; }
  .hero-copy { max-width: none; }
  h1 { font-size: clamp(4.6rem, 21vw, 7.2rem); }
  .hero-visual { order: -1; min-height: auto; margin-bottom: 30px; }
  .hero-visual img { width: min(100%, 580px); max-height: 610px; border-radius: 20px; }
  .floating-note { display: none; }
  .purchase-card { max-width: none; }
  .intent-strip { grid-template-columns: 1fr; }
  .intent-strip span + span { border-left: 0; border-top: 1px solid var(--line); }
  .formula-section, .faq-section { padding: 82px 20px; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .ingredient-card { min-height: 240px; }
  .details-section, .reviews-section, .offer-section { grid-template-columns: 1fr; padding: 82px 20px; }
  .label-image-wrap { max-width: 550px; margin: 0 auto; }
  .reviews-summary { order: 2; }
  .seller-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .final-cta { align-items: stretch; flex-direction: column; padding: 82px 20px; }
  .final-buy { width: 100%; }
  footer { grid-template-columns: 1fr; padding: 44px 20px 48px; }
  .mobile-buybar { position: fixed; z-index: 40; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 12px 16px; background: rgba(15,13,12,0.96); border-top: 1px solid var(--line); backdrop-filter: blur(12px); }
  .mobile-buybar strong, .mobile-buybar span { display: block; }
  .mobile-buybar strong { font-family: var(--font-display); font-size: 1.3rem; }
  .mobile-buybar span { color: var(--muted); font-size: 0.68rem; }
  .mobile-buybar button { min-width: 150px; min-height: 46px; border: 0; border-radius: 8px; background: var(--orange); color: #110b08; font-weight: 900; }
}

@media (max-width: 540px) {
  .announcement { gap: 10px; font-size: 0.66rem; }
  .announcement span:nth-of-type(2), .announcement-dot:first-of-type { display: none; }
  .cart-button { padding: 8px 10px; }
  .hero { padding-top: 26px; }
  .hero-visual img { max-height: 470px; }
  .hero-lead { margin-top: 20px; }
  .purchase-topline { align-items: flex-start; }
  .quantity-row { align-items: center; }
  .saving-message { max-width: 150px; }
  .clean-list { grid-template-columns: 1fr; }
  .seller-metrics { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-card { min-height: 130px; }
  blockquote { font-size: 2.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
