/* ============================================================
   MORINVIBES® — style.css v4.1
   Homepage sections · Leaf system · Hero · Rings · Responsive
   ============================================================ */

/* ── LEAF BACKGROUND SYSTEM ──────────────────────────────── */
/* Every non-hero section gets a .section--leaf-N class */

.section--leaf { position: relative; overflow: hidden; }
.section--leaf > * { position: relative; z-index: 1; }

.section--leaf-1::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 340px; height: 340px;
  background-image: url('/images/leaf1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}

.section--leaf-2::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 300px; height: 300px;
  background-image: url('/images/leaf2.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.section--leaf-3::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 320px; height: 320px;
  background-image: url('/images/leaf3.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  transform: rotate(40deg);
  pointer-events: none;
  z-index: 0;
}
.section--leaf-3::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -70px;
  width: 260px; height: 260px;
  background-image: url('/images/leaf2.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.03;
  transform: rotate(-30deg);
  pointer-events: none;
  z-index: 0;
}

.section--leaf-4::before {
  content: '';
  position: absolute;
  top: 50%; right: -100px;
  transform: translateY(-50%) rotate(10deg);
  width: 360px; height: 360px;
  background-image: url('/images/leaf4.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.section--leaf-5::before {
  content: '';
  position: absolute;
  bottom: -70px; left: -90px;
  width: 300px; height: 300px;
  background-image: url('/images/leaf5.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 0;
}

.section--leaf-1-alt::before {
  content: '';
  position: absolute;
  top: -30px; right: -50px;
  width: 280px; height: 280px;
  background-image: url('/images/leaf1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
  transform: rotate(30deg);
  pointer-events: none;
  z-index: 0;
}

/* ── SECTION 1: HERO ─────────────────────────────────────── */
/* ZERO leaf backgrounds in hero. Rings only. */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background:
    var(--mesh-1),
    var(--mesh-2),
    var(--hero-grad);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-8) var(--section-px);
  gap: var(--sp-6);
  width: 100%;
}

/* Hero copy */
.hero__copy { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 10px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero__h1 { margin-bottom: var(--sp-3); }

.hero__lead {
  margin-bottom: var(--sp-4);
  max-width: 480px;
}

/* Trust pills */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-5);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  font: 600 11px/1 var(--sans);
  letter-spacing: .06em;
}
.hero__badge--teal {
  background: rgba(0,151,178,.10);
  color: var(--teal-deep);
  border: 1px solid rgba(0,151,178,.18);
}
.hero__badge--green {
  background: rgba(46,168,79,.10);
  color: var(--green-deep);
  border: 1px solid rgba(46,168,79,.18);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* Hero buttons */
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: var(--sp-3);
}

.hero__subnote {
  font-size: 0.78rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__subnote::before {
  content: '·';
  color: var(--teal-light);
  font-size: 1.2rem;
  line-height: 1;
}

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  z-index: 1;
}

/* Rings (Section F) */
.hero__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.hero__ring-svg {
  position: absolute;
  width: 480px;
  height: 480px;
  overflow: visible;
}
.ring {
  fill: none;
  stroke: var(--teal);
  stroke-width: 1;
  opacity: 0;
}
.ring--1 { animation: ring-pulse 4s ease-out infinite; animation-delay: 0s; }
.ring--2 { animation: ring-pulse 4s ease-out infinite; animation-delay: .8s; }
.ring--3 { animation: ring-pulse 4s ease-out infinite; animation-delay: 1.6s; }
.ring--4 { animation: ring-pulse 4s ease-out infinite; animation-delay: 2.4s; }

@keyframes ring-pulse {
  0%   { opacity: 0; stroke-width: 1; }
  20%  { opacity: 0.22; }
  100% { opacity: 0; stroke-width: .3; }
}

/* Bottle */
.hero__bottle-wrap {
  position: relative;
  z-index: 1;
  animation: hero-float 5.5s ease-in-out infinite;
  transform-style: preserve-3d;
  cursor: crosshair;
}
.hero__bottle {
  width: 240px;
  height: auto;
  filter: drop-shadow(var(--sh-lg));
}

/* V-mark watermark */
.hero__vmark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: auto;
  opacity: 0.04;
  filter: invert(45%) sepia(80%) saturate(400%) hue-rotate(160deg);
  pointer-events: none;
  z-index: 0;
}

/* ── SECTION 3: USP STRIP ────────────────────────────────── */
#usp-strip {
  background: var(--teal-ghost);
  padding: var(--sp-7) 0;
}

.usp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  max-width: 900px;
  margin: 0 auto var(--sp-6);
}

.usp__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: rgba(255,255,255,.6);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,151,178,.12);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.usp__col:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.usp__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.usp__icon--teal { background: var(--teal-ghost); }
.usp__icon--green { background: var(--green-ghost); }

.usp__col h3 { text-align: center; }
.usp__col p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
  text-align: center;
}

/* USP Statement */
.usp__statement {
  max-width: 720px;
  margin: 0 auto var(--sp-4);
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 4px solid var(--teal);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--sh-sm);
}
.usp__statement blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.usp__statement-support {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}

.usp__cta-wrap { text-align: center; }

/* ── SECTION 4: THE STANDARD ─────────────────────────────── */
#the-difference {
  background: var(--paper);
  padding: var(--sp-7) 0;
}

.standard__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

/* Photo */
.standard__photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.standard__photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}
.standard__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,45,62,.75));
  color: rgba(255,255,255,.92);
  font-size: 0.78rem;
  line-height: 1.5;
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
}

/* Copy side */
.standard__copy { display: flex; flex-direction: column; gap: var(--sp-4); }

/* Table */
.standard__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.standard__table thead th {
  font: 600 10px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 10px 12px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.standard__table tbody td {
  padding: 12px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.standard__table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 36%;
}
.col--morinvibes { background: var(--teal-ghost); }
.col--brandx     { background: var(--paper); }

.badge--green {
  display: inline-block;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 0.8rem;
}
.badge--muted {
  display: inline-block;
  color: var(--ink-muted);
  font-size: 0.8rem;
}
.standard__table td small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.72rem;
  margin-top: 2px;
}

/* Price anchor */
.standard__price-block {
  padding: var(--sp-3) var(--sp-4);
  background: var(--teal-ghost);
  border-radius: var(--r-sm);
}
.standard__table-note {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ── SECTION 5: HEALTH CONCERNS ──────────────────────────── */
#health-concerns {
  background: var(--white);
  padding: var(--sp-7) 0;
}

.concerns__intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto var(--sp-5);
}
.concerns__intro p {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Tab filter */
.concerns__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.concerns__tab {
  padding: 7px 18px;
  border-radius: 100px;
  font: 500 12px/1 var(--sans);
  letter-spacing: .04em;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.concerns__tab.is-active,
.concerns__tab:hover {
  border-color: var(--teal);
  background: var(--teal-ghost);
  color: var(--teal);
}

/* Cards */
.concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.concern-card {
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--green-soft);
  box-shadow: var(--sh-xs);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .2s;
}
.concern-card::before {
  content: '';
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  background-image: url('/images/v-mark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.12;
  filter: invert(45%) sepia(80%) saturate(400%) hue-rotate(160deg);
  pointer-events: none;
}
.concern-card.is-hidden { display: none; }

.concern-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-2);
  display: block;
}
.concern-card__concern {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: var(--sp-1);
  font-style: italic;
}
.concern-card__copy {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

@media (hover: hover) {
  .concern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: var(--green);
  }
  .concerns__grid:has(.concern-card:hover) .concern-card:not(:hover) {
    opacity: 0.72;
  }
  .concern-card:hover .concern-card__icon {
    animation: spin-once .4s var(--ease) both;
  }
}

.concerns__cta { text-align: center; }

/* ── SECTION 6: PROOF ────────────────────────────────────── */
#proof {
  background: var(--green-ghost);
  padding: var(--sp-7) 0;
}

.proof__header { text-align: center; max-width: 600px; margin: 0 auto; }

.proof__story {
  max-width: 640px;
  margin: var(--sp-5) auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.proof__story p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* Stats */
.proof__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
  text-align: center;
}
.proof__stat {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-3);
  box-shadow: var(--sh-xs);
}
.proof__stat-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.proof__stat-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Review cards */
.proof__reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-5) 0;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--sh-xs);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.review-card__stars {
  color: #f59e0b;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.review-card__quote {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}
.review-card__name {
  font: 600 11px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
}
.review-card__location {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.proof__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-4);
}

/* ── SECTION 7: THE PRODUCT ──────────────────────────────── */
#the-product {
  background: var(--teal-ghost);
  padding: var(--sp-7) 0;
}
#the-product .container { position: relative; z-index: 1; }

.product__inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--sp-6);
  align-items: center;
}

/* Bottle card */
.product__bottle-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-5) var(--sp-4);
  gap: var(--sp-3);
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}
.product__bottle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/v-mark.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  opacity: 0.05;
  filter: invert(45%) sepia(80%) saturate(400%) hue-rotate(160deg);
  pointer-events: none;
  z-index: 0;
}
.product__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--green);
  color: var(--white);
  font: 700 10px/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}
.product__bottle-img {
  width: 220px;
  height: auto;
  animation: hero-float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

/* Product copy */
.product__copy { display: flex; flex-direction: column; gap: var(--sp-4); }

/* Specs list */
.product__specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-2);
}
.product__spec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.product__spec-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
  filter: invert(45%) sepia(80%) saturate(400%) hue-rotate(160deg);
}

/* Price display */
.price-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-display__rm {
  font: 600 1.1rem/1 var(--sans);
  color: var(--teal);
  vertical-align: super;
}
.price-display__val {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.02em;
}

.product__price-sub {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 4px;
}

.product__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Micro trust */
.product__micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--sp-1);
}
.product__trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--green-deep);
  font-weight: 500;
}

/* ── SECTION 8: FAQ ───────────────────────────────────────── */
#faq {
  background: var(--white);
  padding: var(--sp-7) 0;
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq__header { text-align: center; margin-bottom: var(--sp-6); }

.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-bottom: 1px solid var(--border-soft);
}
.faq__item:first-of-type { border-top: 1px solid var(--border-soft); }

.faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: var(--sp-4) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .18s;
}
.faq__question:hover { color: var(--teal); }

.faq__q-num {
  font: 600 11px/1 var(--sans);
  letter-spacing: .12em;
  color: var(--teal);
  min-width: 24px;
}
.faq__q-vmark {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  filter: invert(45%) sepia(80%) saturate(400%) hue-rotate(160deg);
}
.faq__q-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  flex: 1;
  transition: color .18s;
}
.faq__question:hover .faq__q-text { color: var(--teal); }

.faq__q-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s, transform .28s var(--ease);
}
.faq__item.is-open .faq__q-icon {
  background: var(--teal-ghost);
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq__q-icon svg {
  width: 10px; height: 10px;
  color: var(--ink-muted);
  transition: color .18s;
}
.faq__item.is-open .faq__q-icon svg { color: var(--teal); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease), padding .32s var(--ease);
}
.faq__item.is-open .faq__answer {
  max-height: 600px;
}
.faq__answer-inner {
  padding: 0 0 var(--sp-4) 50px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.faq__answer-inner p + p { margin-top: var(--sp-2); }

.faq__cta { text-align: center; margin-top: var(--sp-5); }

/* ── SECTION 9: CTA STRIP ────────────────────────────────── */
#cta-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    var(--teal) 0%,
    var(--teal-mid) 50%,
    var(--teal-deep) 100%
  );
  background-size: 300% 100%;
  animation: shimmer-grad 8s ease-in-out infinite;
  padding: var(--sp-8) 0;
  text-align: center;
}

/* V-mark watermark */
#cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background-image: url('/images/v-mark.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  filter: brightness(0) invert(1);
  pointer-events: none;
  z-index: 0;
}

#cta-strip .container { position: relative; z-index: 1; }

#cta-strip h2 {
  color: var(--white);
  margin-bottom: var(--sp-3);
}
#cta-strip .teal-italic {
  color: rgba(255,255,255,.82);
  -webkit-text-fill-color: rgba(255,255,255,.82);
}

.cta-strip__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: var(--sp-4);
}
.cta-strip__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 500 12px/1 var(--sans);
  color: rgba(255,255,255,.80);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */

/* 1024px+ */
@media (min-width: 1024px) {
  .proof__reviews { grid-template-columns: repeat(4, 1fr); }
}

/* 768–1023px */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: var(--sp-7) var(--section-px);
    text-align: center;
  }
  .hero__visual { order: -1; min-height: 340px; }
  .hero__copy { align-items: center; display: flex; flex-direction: column; }
  .hero__lead { max-width: 100%; text-align: center; }
  .hero__badges { justify-content: center; }
  .hero__btns { justify-content: center; }
  .hero__subnote { justify-content: center; }

  .standard__inner { grid-template-columns: 1fr; }
  .standard__photo { order: -1; }
  .standard__photo img { height: 280px; }

  .product__inner { grid-template-columns: 1fr; }
  .product__bottle-card { flex-direction: row; gap: var(--sp-4); padding: var(--sp-4); max-width: 100%; }
  .product__bottle-img { width: 140px; }

  .proof__stats { grid-template-columns: repeat(2, 1fr); }
  .proof__reviews { grid-template-columns: repeat(2, 1fr); }

  .usp__grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); }

  .hero__ring-svg { width: 340px; height: 340px; }
  .hero__bottle { width: 180px; }
}

/* 0–767px (mobile) */
@media (max-width: 767px) {
  #hero { min-height: auto; padding-top: var(--nav-h); }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: var(--sp-5) var(--section-px) var(--sp-6);
  }
  .hero__visual { min-height: 280px; }
  .hero__ring-svg { width: 280px; height: 280px; }
  .hero__bottle { width: 150px; }
  .hero__vmark { display: none; }

  .usp__grid { grid-template-columns: 1fr; max-width: 360px; }
  .usp__statement { padding: var(--sp-3) var(--sp-3); }

  .concerns__grid { grid-template-columns: 1fr 1fr; }

  .proof__stats { grid-template-columns: repeat(2, 1fr); }
  .proof__reviews { grid-template-columns: 1fr; }

  .product__inner { grid-template-columns: 1fr; }
  .product__bottle-card { flex-direction: column; }
  .product__bottle-img { width: 160px; }

  .nav__drawer-grid { grid-template-columns: 1fr; }
  .nav__drawer-right { display: none; }

  .faq__answer-inner { padding-left: var(--sp-3); }

  .cta-strip__trust { gap: 14px; }

  #cta-strip { padding: var(--sp-7) 0; }

  .proof__ctas { flex-direction: column; }
  .proof__ctas .btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .concerns__grid { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; width: 100%; }
  .hero__btns .btn { width: 100%; justify-content: center; }
}

/* Swiper override for mobile reviews */
@media (max-width: 767px) {
  .proof__reviews.swiper { overflow: visible; }
  .proof__reviews .swiper-wrapper { display: flex; }
  .proof__reviews .swiper-slide { height: auto; }
}
