:root {
  --bg: #0b0907;
  --bg-alt: #12100d;
  --text: #f7e6c4;
  --muted: #cfb58a;
  --brand: #d7a24e;
  --brand-dark: #b7863d;
  --gold: #e2b569;
  --card: #17130f;
  --ring: rgba(210, 150, 64, 0.24);
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Cinzel", "Times New Roman", serif;
  --page-gutter: clamp(1.25rem, 5vw, 5rem);
  --layout-max: 1680px;
  --topbar-height: 4.75rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 100% 70% at 50% 0%, #16120e 0%, transparent 55%);
  background-attachment: fixed;
  line-height: 1.65;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 4, 3, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 33, 24, 0.6);
}

.nav-wrap {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.12rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:hover {
  color: var(--brand);
}

.nav-hero a {
  color: #e8dfd2;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.nav-hero a:hover {
  color: #d4af37;
}

/* —— Premium hero (matches design) —— */
.hero.hero-premium.section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  padding: 12px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  background:
    radial-gradient(ellipse 55% 70% at 78% 45%, #3a2410 0%, #1d1108 35%, #0a0604 70%, #050302 100%),
    #050302;
  overflow-x: hidden;
}

.hero-premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 65% at 80% 28%, rgba(210, 130, 35, 0.45) 0%, rgba(160, 90, 20, 0.22) 35%, transparent 62%),
    radial-gradient(ellipse 35% 45% at 75% 42%, rgba(240, 160, 50, 0.16) 0%, transparent 52%),
    radial-gradient(ellipse 25% 35% at 78% 16%, rgba(255, 195, 90, 0.20) 0%, transparent 48%);
}

.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(16px, 3vh, 40px) clamp(20px, 3vh, 32px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4af37;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85));
}

.hero-eyebrow-diamond {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  color: #d4af37;
  opacity: 0.85;
}

.hero-eyebrow-text {
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-title {
  margin: 0 0 18px;
  max-width: 16ch;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #f1e6d4;
}

.hero-body {
  margin: 0 0 22px;
  max-width: min(560px, 100%);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.7;
  color: #c9c2b8;
}

.hero-pills {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 92, 0.48);
  background: rgba(20, 16, 12, 0.35);
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8d5a8;
}

.hero-pill-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #d4af37;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a130d;
  background: linear-gradient(135deg, #f0d090 0%, #d4a84a 42%, #b8892e 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 220, 160, 0.15) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-hero-iconcircle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: #1a130d;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f0e8;
  border: 1px solid rgba(212, 175, 92, 0.55);
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(212, 175, 92, 0.08);
  border-color: #d4af37;
  transform: translateY(-1px);
}

.btn-hero-iconcircle--ghost {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212, 175, 92, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #d4af37;
}

.hero-benefit-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 12px;
  max-width: min(620px, 100%);
  margin-top: 8px;
  padding-top: 16px;
  padding-bottom: 0;
  border-top: 1px solid rgba(212, 175, 92, 0.12);
}

.hero-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 72px;
  flex: 1 1 auto;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4af37;
}

.hero-benefit-svg {
  width: 40px;
  height: 40px;
  color: #d4af37;
}

.hero-media-premium {
  position: relative;
}

.hero-media-frame {
  position: relative;
  overflow: visible;
}

.hero-premium .hero-media-frame img {
  width: 100%;
  max-height: 720px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 55%, #000 65%, rgba(0,0,0,0.85) 78%, transparent 100%);
          mask-image: radial-gradient(ellipse 85% 90% at 50% 55%, #000 65%, rgba(0,0,0,0.85) 78%, transparent 100%);
}

.hero-stats-section {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 4px 0 clamp(12px, 2.5vh, 24px);
  background: transparent;
}

.hero-stats-wrap {
  position: relative;
  padding-top: 22px;
}

.hero-stats-lotus {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -42%);
  z-index: 2;
  padding: 0 14px;
  background: #050403;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(212, 175, 92, 0.42);
  border-radius: 4px;
  padding: 28px 12px 22px;
  text-align: center;
}

.hero-stat {
  position: relative;
  padding: 4px 8px;
}

.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 92, 0.28);
}

.hero-stat-num {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #e8c978;
}

.hero-stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d8d0c6;
  line-height: 1.35;
  max-width: 160px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 12px;
  color: #fbe5be;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: 0.3px;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.lead {
  max-width: 760px;
  font-family: var(--font-sans);
  font-size: 1.03rem;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f0c174 0%, #c78a35 100%);
  color: #1a130d;
  box-shadow: 0 10px 24px rgba(215, 162, 78, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f8ce86 0%, #d0933d 100%);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #6b532e;
  color: var(--gold);
  background: rgba(226, 181, 105, 0.05);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(226, 181, 105, 0.1);
}

.pillars {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.benefit,
.ingredient-card,
.contact-box {
  background: linear-gradient(180deg, #1a140f 0%, #140f0b 100%);
  border: 1px solid #2f251a;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.benefit:hover,
.ingredient-card:hover {
  transform: translateY(-3px);
  border-color: #614626;
}

.proof-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #352818;
  background: #120e0b;
}

.proof-card strong {
  display: block;
  color: #f3d5a1;
  font-size: 1.1rem;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.making-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.make-card {
  background: #16110d;
  border: 1px solid #2f251a;
  border-radius: 16px;
  padding: 16px;
}

.make-card h3 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
}

.ingredient-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ingredient-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.ingredient-card p {
  margin-bottom: 10px;
}

.card-media {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  border: 1px solid #3d2e1b;
  margin-bottom: 12px;
  background: #0d0a08;
}

.card-media-ingredient {
  height: 220px;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.card-media-benefit {
  height: 300px;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ingredient-tags span {
  font-size: 0.77rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(226, 181, 105, 0.12);
  color: #f5d49b;
  border: 1px solid #70552d;
}

.benefit-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.04rem;
}

.why-line {
  margin-top: 8px;
  font-size: 0.88rem;
  color: #dec090;
}

.emoji-inline-img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -2px;
  filter: saturate(0.95) brightness(1.05);
}

.ambassador-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 26px;
  align-items: center;
}

.ambassador-image img {
  min-height: 420px;
  object-fit: cover;
}

.meta-list {
  margin: 14px 0;
  padding-left: 18px;
  color: var(--text);
}

.meta-list li {
  margin-bottom: 6px;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.socials a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.socials a:hover {
  border-bottom-color: var(--gold);
}

.contact-box {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.usage-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #2f251a;
  border-radius: 12px;
  padding: 14px 16px;
  background: #14100c;
}

.faq-list summary {
  cursor: pointer;
  color: #f3d5a1;
  font-weight: 600;
}

.faq-list p {
  margin-top: 8px;
}

.section-media {
  margin-top: 20px;
}

.section-media img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #3d2e1b;
  object-fit: contain;
  height: auto;
  max-height: none;
}

/* —— Pricing / Contact —— */
.pricing-section {
  background: #050403;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  top: 30%;
  width: 320px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 92, 0.18), transparent 70%);
  pointer-events: none;
}

.pricing-section::before { left: -80px; }
.pricing-section::after { right: -80px; }

.pricing-topcrest {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pricing-crest-line {
  display: block;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.7), transparent);
}

.pricing-title {
  position: relative;
  text-align: center;
  margin: 0 0 10px;
  font-family: var(--font-serif);
  line-height: 1.05;
  color: #f1e6d4;
}

.pricing-title-sm {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f1e6d4;
  margin-bottom: 6px;
}

.pricing-title-xl {
  display: block;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 0.04em;
  color: #e8c978;
  background: linear-gradient(180deg, #f6deaa 0%, #d4a85a 60%, #a37a32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4px 0 8px;
}

.pricing-title-md {
  display: block;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1e6d4;
  font-weight: 400;
}

.pricing-subtitle {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #d4bd91;
  letter-spacing: 0.02em;
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.pricing-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(212, 175, 92, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.6), rgba(8, 6, 4, 0.7));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(212, 175, 92, 0.65);
  transform: translateY(-3px);
}

.pricing-card-best {
  border-color: rgba(212, 175, 92, 0.7);
  box-shadow: 0 0 0 1px rgba(212, 175, 92, 0.25) inset, 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 32px rgba(212, 175, 92, 0.14);
}

.pricing-badge {
  position: absolute;
  top: -22px;
  right: -10px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0d090 0%, #c89436 65%, #8a5e22 100%);
  color: #1a130d;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 220, 160, 0.25) inset;
  z-index: 2;
}

.pricing-badge svg {
  position: absolute;
  top: 12px;
  width: 18px;
  height: 18px;
}

.pricing-badge span {
  margin-top: 14px;
}

.pricing-image {
  width: 100%;
  height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.pricing-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: none;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.6));
}

.pricing-size {
  display: inline-block;
  padding: 8px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0d090 0%, #d4a84a 50%, #b8892e 100%);
  color: #1a130d;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.pricing-price {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 600;
  color: #f1e6d4;
  letter-spacing: 0.02em;
}

.pricing-per {
  margin: 0;
  font-size: 0.88rem;
  color: #b0a89c;
  letter-spacing: 0.01em;
}

.pricing-trust {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.6));
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pricing-trust-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.pricing-trust-icon svg { width: 24px; height: 24px; }

.pricing-trust-item h5 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4af5c;
}

.pricing-trust-item p {
  margin: 0;
  font-size: 0.82rem;
  color: #c2bbae;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .pricing-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pricing-trust {
    grid-template-columns: 1fr;
  }
}

/* —— FAQ —— */
.faq-section {
  background: #050403;
  padding: 80px 0;
}

.faq-topcrest,
.faq-bottomcrest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #d4af5c;
}

.faq-bottomcrest {
  margin-top: 36px;
  margin-bottom: 0;
}

.faq-crest-line {
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.7), transparent);
}

.faq-crest-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4af5c;
  box-shadow: 0 0 12px rgba(212, 175, 92, 0.6);
}

.faq-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  letter-spacing: 0.04em;
  color: #e8c978;
  margin: 0 0 8px;
}

.faq-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px auto 14px;
}

.faq-divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.55), transparent);
}

.faq-divider i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4af5c;
}

.faq-subtitle {
  text-align: center;
  margin: 0 auto 36px;
  color: #d4bd91;
  font-size: 0.96rem;
}

.faq-list-deluxe {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-list-deluxe .faq-item {
  border: 1px solid rgba(212, 175, 92, 0.4);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.7));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 92, 0.05) inset;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list-deluxe .faq-item[open] {
  border-color: rgba(212, 175, 92, 0.65);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(212, 175, 92, 0.12);
}

.faq-list-deluxe summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}

.faq-list-deluxe summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.faq-icon svg { width: 26px; height: 26px; }

.faq-q-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-arrow {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 7px solid #d4af5c;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.faq-list-deluxe .faq-item[open] .faq-arrow {
  transform: rotate(90deg);
}

.faq-q {
  font-family: var(--font-sans);
  font-size: 1.04rem;
  font-weight: 600;
  color: #e8c978;
  letter-spacing: 0.01em;
}

.faq-side-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #d4af5c;
  opacity: 0.85;
}

.faq-side-icon svg { width: 30px; height: 30px; }

.faq-list-deluxe .faq-item p {
  margin: 0;
  padding: 0 28px 22px 106px;
  font-size: 0.95rem;
  color: #c2bbae;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .faq-list-deluxe summary {
    gap: 14px;
    padding: 18px 18px;
  }

  .faq-icon {
    width: 44px;
    height: 44px;
  }

  .faq-icon svg { width: 22px; height: 22px; }

  .faq-side-icon { display: none; }

  .faq-list-deluxe .faq-item p {
    padding: 0 18px 18px 76px;
  }
}

/* —— Ambassador —— */
.ambassador-section {
  background: #050403;
  padding: 80px 0;
}

.ambassador-section .ambassador-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.ambassador-image-framed {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(212, 175, 92, 0.45);
  border-radius: 18px;
  background: rgba(8, 6, 4, 0.5);
}

.ambassador-image-framed img {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.amb-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
}

.amb-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4af5c;
}

.amb-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 92, 0.6), transparent);
  max-width: 220px;
}

.amb-name {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f1e6d4;
  margin: 0 0 6px;
  line-height: 1.05;
}

.amb-role {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-style: italic;
  font-size: 1.5rem;
  color: #e8c978;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
}

.amb-bio {
  margin: 0 0 22px;
  max-width: 560px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #c9c2b8;
}

.amb-divider {
  height: 1px;
  margin: 4px 0 22px;
  background: linear-gradient(90deg, rgba(212, 175, 92, 0.45), transparent);
}

.amb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 22px;
  column-gap: 24px;
  margin-bottom: 28px;
}

.amb-meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.amb-meta-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.amb-meta-icon svg { width: 22px; height: 22px; }

.amb-meta h4 {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af5c;
}

.amb-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: #d8d0c6;
  line-height: 1.4;
}

.amb-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.amb-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: #d4af5c;
  border: 1px solid rgba(212, 175, 92, 0.45);
  transition: background 0.2s ease, color 0.2s ease;
}

.amb-socials a:hover {
  background: rgba(212, 175, 92, 0.12);
}

.amb-socials svg { width: 18px; height: 18px; }

.amb-quote {
  position: relative;
  margin: 0;
  padding: 26px 28px 22px;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 8px;
  background: rgba(10, 7, 5, 0.55);
  text-align: center;
}

.amb-quote-mark {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 3.2rem;
  line-height: 1;
  color: #d4af5c;
  background: #050403;
  padding: 0 12px;
}

.amb-quote p {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 1rem;
  color: #d8d0c6;
  line-height: 1.6;
}

.amb-quote cite {
  font-style: italic;
  font-size: 0.92rem;
  color: #d4af5c;
}

@media (max-width: 980px) {
  .ambassador-section .ambassador-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

/* —— Usage / How To Use It Correctly —— */
.usage-section {
  background: #050403;
  padding: 80px 0;
}

.usage-lotus {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.usage-title {
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  color: #e8c978;
  margin-bottom: 6px;
}

.usage-subtitle {
  text-align: center;
  margin: 0 auto 40px;
  color: #d4bd91;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.usage-grid-iconed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.usage-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.55));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.usage-card:hover {
  border-color: rgba(212, 175, 92, 0.6);
  transform: translateY(-2px);
}

.usage-icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8c87b 0%, #b88631 55%, #6a4a18 100%);
  color: #1a130d;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 220, 160, 0.15) inset;
}

.usage-icon svg {
  width: 36px;
  height: 36px;
}

.usage-text h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c978;
}

.usage-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #c2bbae;
  line-height: 1.6;
}

.usage-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  padding: 22px 28px;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.55));
}

.usage-banner-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8c87b 0%, #b88631 55%, #6a4a18 100%);
  color: #1a130d;
}

.usage-banner-icon svg { width: 30px; height: 30px; }

.usage-banner h4 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c978;
}

.usage-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: #c2bbae;
}

@media (max-width: 980px) {
  .usage-grid-iconed {
    grid-template-columns: 1fr;
  }
}

/* —— Benefits —— */
.benefits-section {
  background: #050403;
  padding: 80px 0;
}

.benefits-lotus {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.benefits-title {
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  color: #e8c978;
  margin-bottom: 6px;
}

.benefits-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 6px auto 18px;
}

.benefits-divider span {
  display: block;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.7), transparent);
}

.benefits-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
  color: #c9c2b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.benefit-grid-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 0;
}

.benefit-grid-cards .benefit-card {
  position: relative;
  padding: 0;
  border: 1px solid rgba(212, 175, 92, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.6), rgba(10, 7, 5, 0.7));
  display: flex;
  flex-direction: column;
}

.benefit-media {
  position: relative;
}

.benefit-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(8, 6, 4, 0.85);
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-grid-cards .card-media-benefit {
  height: 220px;
  width: 100%;
  border-radius: 0;
  border: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.benefit-body {
  padding: 22px 26px 24px;
  text-align: center;
}

.benefit-grid-cards .benefit-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8c978;
}

.benefit-divider {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 8px;
  margin: 6px 0 12px;
}

.benefit-divider::before,
.benefit-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(212, 175, 92, 0.45);
}

.benefit-divider::before { left: 0; }
.benefit-divider::after { right: 0; }

.benefit-divider {
  background:
    linear-gradient(#d4af5c, #d4af5c) center / 6px 6px no-repeat;
  background-image: none;
}

.benefit-grid-cards .benefit-card p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: #c2bbae;
  line-height: 1.6;
}

.benefit-grid-cards .benefit-card .why-line {
  margin-top: 14px;
  font-size: 0.86rem;
  color: #d4bd91;
  text-align: center;
}

.benefit-grid-cards .benefit-card .why-line strong {
  color: #e8c978;
}

.trust-strip.benefits-trust {
  margin-top: 36px;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(212, 175, 92, 0.22);
  border-radius: 0;
  padding: 26px 8px 4px;
}

@media (max-width: 980px) {
  .benefit-grid-cards {
    grid-template-columns: 1fr;
  }
}

/* —— Ingredients —— */
.ingredients-section {
  background: #050403;
  padding: 80px 0;
}

.ing-lotus {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.ing-title {
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  color: #f1e6d4;
  margin-bottom: 6px;
}

.ing-divider {
  width: 280px;
  height: 1px;
  margin: 6px auto 18px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.7), transparent);
}

.ing-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  color: #c9c2b8;
  font-size: 0.95rem;
}

.ingredient-grid-numbered {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.ingredient-grid-numbered .ingredient-card {
  padding: 0;
  border: 1px solid rgba(212, 175, 92, 0.28);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.55));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ingredient-media {
  position: relative;
  margin: 0;
}

.ingredient-num {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 18px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(8, 6, 4, 0.92);
  border: 1px solid rgba(212, 175, 92, 0.45);
  color: #e8c978;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ingredient-grid-numbered .card-media-ingredient {
  height: 130px;
  width: 100%;
  border-radius: 0;
  border: none;
  margin: 0;
  object-fit: cover;
}

.ingredient-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
}

.ingredient-grid-numbered .ingredient-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e8c978;
}

.ingredient-grid-numbered .ingredient-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #c2bbae;
  line-height: 1.55;
}

.ingredient-grid-numbered .ingredient-card .why-line {
  margin-top: 4px;
  color: #d4bd91;
  font-size: 0.86rem;
}

.ingredient-grid-numbered .ingredient-card .why-line strong {
  color: #e8c978;
}

.ingredient-grid-numbered .ingredient-tags {
  margin-top: 8px;
  gap: 6px;
}

.ingredient-grid-numbered .ingredient-tags span {
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 92, 0.08);
  border: 1px solid rgba(212, 175, 92, 0.32);
  color: #d8c39a;
}

.trust-strip.ingredients-trust {
  margin-top: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  border-top: none;
  border-bottom: none;
  border: 1px solid rgba(212, 175, 92, 0.25);
  border-radius: 10px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.5), rgba(10, 7, 5, 0.5));
}

.trust-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
}

@media (max-width: 1280px) {
  .ingredient-grid-numbered {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ingredient-grid-numbered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip.ingredients-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ingredient-grid-numbered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip.ingredients-trust {
    grid-template-columns: 1fr;
  }
}

/* —— Making / How It Is Made —— */
#making.section-alt {
  background: #050403;
}

#making h2 {
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

#making > .container > h2 {
  position: relative;
  padding-bottom: 12px;
}

#making > .container > h2::after {
  content: "";
  display: block;
  width: 220px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(212, 175, 92, 0.55), transparent);
}

.making-grid-iconed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  margin-bottom: 36px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.55));
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.step-card:hover {
  border-color: rgba(212, 175, 92, 0.65);
  transform: translateY(-2px);
}

.step-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.step-icon svg { width: 26px; height: 26px; }

.step-text h3 {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8d5a8;
  margin: 0 0 8px;
}

.step-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #b0a89c;
  line-height: 1.6;
}

.science-block {
  position: relative;
  border: 1px solid rgba(212, 175, 92, 0.3);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 36px;
  background-color: #0a0604;
  background-image: var(--science-bg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.science-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 4, 3, 0.96) 0%, rgba(5, 4, 3, 0.88) 40%, rgba(5, 4, 3, 0.55) 65%, rgba(5, 4, 3, 0.2) 100%);
  z-index: 0;
}

.science-content {
  position: relative;
  z-index: 1;
  padding: 48px 44px 40px;
  max-width: 720px;
}

.science-lotus {
  margin-bottom: 12px;
}

.science-eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af5c;
}

.science-title {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  color: #e8c978;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.science-title-lg {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
}

.science-title-md {
  display: block;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddd0b6;
  margin-top: 2px;
}

.science-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 92, 0.7), transparent);
  margin: 16px 0 18px;
}

.science-lead {
  margin: 0 0 30px;
  max-width: 540px;
  font-size: 0.95rem;
  color: #c2bbae;
  line-height: 1.7;
}

.science-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.science-pillar {
  text-align: center;
}

.science-pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.science-pillar-icon svg { width: 26px; height: 26px; }

.science-pillar h4 {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c978;
  margin: 0 0 6px;
  line-height: 1.25;
}

.science-pillar p {
  margin: 0;
  font-size: 0.74rem;
  color: #b0a89c;
  line-height: 1.55;
}

.science-quote {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 92, 0.3);
  border-radius: 8px;
  background: rgba(10, 7, 5, 0.6);
}

.science-quote-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.45);
  color: #d4af5c;
}

.science-quote-icon svg { width: 26px; height: 26px; }

.science-quote h4 {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8c978;
  margin: 0 0 6px;
  line-height: 1.35;
}

.science-quote p {
  margin: 0;
  font-size: 0.85rem;
  color: #b0a89c;
  line-height: 1.55;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(212, 175, 92, 0.18);
  border-bottom: 1px solid rgba(212, 175, 92, 0.18);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #d4af5c;
}

.trust-icon svg { width: 28px; height: 28px; }

.trust-item h5 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8d5a8;
}

.trust-item p {
  margin: 0;
  font-size: 0.82rem;
  color: #b0a89c;
  line-height: 1.45;
}

.making-bottom-lotus {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  color: #d4af5c;
}

@media (max-width: 980px) {
  .making-grid-iconed {
    grid-template-columns: 1fr;
  }

  .science-content {
    padding: 32px 24px;
  }

  .science-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* —— About / Why This Product Exists —— */
.about-section {
  background: #050403;
  padding: 80px 0;
}

.about-title {
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  color: #f1e6d4;
}

.about-divider {
  display: flex;
  justify-content: center;
  margin: -4px 0 14px;
  color: #d4af5c;
}

.about-divider::before,
.about-divider::after {
  content: "";
  flex: 0 0 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.5), transparent);
  margin: auto 14px;
}

.about-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
  color: #c9c2b8;
}

.pillars-iconed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(28, 20, 12, 0.55) 0%, rgba(14, 10, 7, 0.55) 100%);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar-card:hover {
  border-color: rgba(212, 175, 92, 0.65);
  transform: translateY(-2px);
}

.pillar-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-text h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8d5a8;
  margin: 0 0 8px;
}

.pillar-text p {
  margin: 0;
  font-size: 0.92rem;
  color: #b8b0a4;
  line-height: 1.6;
}

.wisdom-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border: 1px solid rgba(212, 175, 92, 0.32);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.7) 0%, rgba(10, 7, 5, 0.7) 100%);
  margin-bottom: 36px;
}

.wisdom-text {
  padding: 36px 36px 32px;
}

.wisdom-lotus {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.wisdom-quote {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  color: #e8dfd2;
  max-width: 460px;
  margin: 0 auto 28px;
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
}

.wisdom-item {
  text-align: center;
}

.wisdom-icon {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.wisdom-icon svg {
  width: 24px;
  height: 24px;
}

.wisdom-item h4 {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8c978;
  margin: 0 0 6px;
  line-height: 1.25;
}

.wisdom-item p {
  margin: 0;
  font-size: 0.78rem;
  color: #b0a89c;
  line-height: 1.5;
}

.wisdom-image {
  position: relative;
  min-height: 100%;
}

.wisdom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.proof-grid-iconed {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-card-iconed {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(212, 175, 92, 0.3);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(22, 16, 10, 0.55), rgba(12, 9, 6, 0.55));
}

.proof-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.proof-icon svg {
  width: 24px;
  height: 24px;
}

.proof-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: #e8c978;
  line-height: 1.1;
}

.proof-text span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: #b0a89c;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .pillars-iconed,
  .proof-grid-iconed {
    grid-template-columns: 1fr;
  }

  .wisdom-block {
    grid-template-columns: 1fr;
  }

  .wisdom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wisdom-image {
    min-height: 280px;
  }
}

.footer {
  border-top: 1px solid #2a2118;
  background: #0a0806;
}

/* —— Site Footer (premium) —— */
.site-footer {
  background: #050403;
  padding: 60px 0 30px;
  color: #c9c2b8;
}

.footer-topcrest,
.footer-bottomcrest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #d4af5c;
  margin-bottom: 50px;
}

.footer-bottomcrest {
  margin: 24px 0 0;
}

.footer-crest-line {
  flex: 1;
  height: 1px;
  max-width: 42%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.55), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.05fr 1.5fr;
  gap: 38px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212, 175, 92, 0.2);
}

.footer-col h4.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #e8c978;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.footer-heading-mark {
  display: block;
  width: 60px;
  height: 1px;
  margin-bottom: 18px;
  position: relative;
  background: linear-gradient(90deg, rgba(212, 175, 92, 0.8), transparent);
}

.footer-heading-mark::after {
  content: "";
  position: absolute;
  left: 24px;
  top: -2px;
  width: 5px;
  height: 5px;
  background: #d4af5c;
  transform: rotate(45deg);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #c2bbae;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e8c978;
}

.footer-brand .footer-lotus {
  display: inline-block;
  margin-bottom: 8px;
  color: #d4af5c;
}

.footer-brand-name {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  color: #e8c978;
}

.footer-brand-tagline {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #d4af5c;
}

.footer-brand-desc {
  margin: 0 0 24px;
  font-size: 0.92rem;
  color: #c2bbae;
  line-height: 1.7;
  max-width: 340px;
}

.footer-trust-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 360px;
}

.footer-trust-mini-item {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4af5c;
  line-height: 1.3;
}

.footer-trust-mini-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.55);
  color: #d4af5c;
}

.footer-trust-mini-icon svg { width: 20px; height: 20px; }

.footer-connect-desc {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: #c2bbae;
  line-height: 1.6;
  max-width: 360px;
}

.footer-newsletter {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  max-width: 380px;
}

.footer-newsletter input {
  flex: 1;
  padding: 14px 56px 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 92, 0.45);
  background: rgba(10, 7, 5, 0.5);
  color: #e8dfd2;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.footer-newsletter input::placeholder { color: #8d8678; }

.footer-newsletter input:focus { border-color: rgba(212, 175, 92, 0.85); }

.footer-newsletter button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 42px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0d090 0%, #d4a84a 50%, #b8892e 100%);
  color: #1a130d;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.footer-newsletter button svg { width: 18px; height: 18px; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.45);
  color: #d4af5c;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover { background: rgba(212, 175, 92, 0.12); }

.footer-socials svg { width: 18px; height: 18px; }

.footer-help {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 92, 0.35);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.55), rgba(10, 7, 5, 0.6));
  max-width: 380px;
}

.footer-help-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #d4af5c;
}

.footer-help-icon svg { width: 28px; height: 28px; }

.footer-help h5 {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4af5c;
}

.footer-help p {
  margin: 0;
  font-size: 0.88rem;
  color: #d8d0c6;
  line-height: 1.5;
}

.footer-trustbar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(212, 175, 92, 0.2);
}

.footer-trustbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-trustbar-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 92, 0.5);
  color: #d4af5c;
}

.footer-trustbar-icon svg { width: 22px; height: 22px; }

.footer-trustbar-item h5 {
  margin: 0 0 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4af5c;
}

.footer-trustbar-item p {
  margin: 0;
  font-size: 0.8rem;
  color: #c2bbae;
}

.footer-copy {
  text-align: center;
  margin: 24px 0 0;
  font-size: 0.9rem;
  color: #b0a89c;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .footer-brand,
  .footer-connect {
    grid-column: span 3;
  }

  .footer-trustbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-connect {
    grid-column: span 1;
  }

  .footer-trustbar {
    grid-template-columns: 1fr;
  }
}

#about > .container > h2,
#ingredients > .container > h2,
#benefits > .container > h2 {
  text-align: center;
}

#about > .container > .lead,
#ingredients > .container > .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-media-premium {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-benefit-icons {
    justify-content: center;
    max-width: none;
  }

  .ambassador-wrap {
    grid-template-columns: 1fr;
  }

  .ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .making-grid,
  .usage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillars,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav {
    display: none;
  }

  .hero-stat:not(:last-child)::after {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    padding: 22px 14px 18px;
  }

  .section {
    padding: 60px 0;
  }

  .hero.hero-premium.section {
    padding: 12px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    min-height: calc(100svh - var(--topbar-height));
    gap: 0;
  }

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

  .card-media {
    height: 200px;
  }

  .card-media-benefit {
    height: 260px;
    padding: 6px;
  }

  .proof-grid,
  .making-grid,
  .usage-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE OVERHAUL
   Goal: keep the 32" experience untouched while delivering proper breathing
   room and usable layouts on 14" laptops, tablets, and phones.
   ========================================================================== */

html { scroll-padding-top: var(--topbar-height); }

html,
body {
  overflow-x: clip;
  max-width: 100vw;
}

img, svg, video { max-width: 100%; }

/* Defensive: ensure no element ever produces a horizontal scrollbar.
   `clip` is preferred over `hidden` because it doesn't create a scroll container,
   which keeps `position: sticky` on .topbar working. */
.section,
.hero.hero-premium.section,
.pricing-section,
.faq-section,
.about-section,
.usage-section,
.benefits-section,
.ingredients-section,
.ambassador-section,
.site-footer { overflow-x: clip; }

/* Hamburger toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(20, 14, 9, 0.45);
  border: 1px solid rgba(212, 175, 92, 0.5);
  border-radius: 10px;
  color: #d4af5c;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(212, 175, 92, 0.1);
  border-color: rgba(212, 175, 92, 0.85);
  color: #f0d090;
}

.menu-toggle svg { width: 22px; height: 22px; pointer-events: none; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Slide-down mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 49;
  display: none;
  flex-direction: column;
  max-height: calc(100vh - var(--topbar-height));
  padding: 14px var(--page-gutter) 24px;
  background: rgba(5, 4, 3, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 92, 0.28);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
  overflow-y: auto;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 14px 6px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8dfd2;
  border-bottom: 1px solid rgba(212, 175, 92, 0.14);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: #d4af5c;
  padding-left: 12px;
}

body.menu-open { overflow: hidden; }

/* —— Small laptops (14"-15") — up to 1599px ————————————————————
   Catches all 14" laptops at 100% zoom: 1280, 1366, 1440, 1512 (Mac), 1536 (Win).
   Above 1599px the original "32 inch" styles apply, untouched. */
@media (max-width: 1599.98px) {
  :root {
    --page-gutter: clamp(2rem, 5vw, 5rem);
    --layout-max: 1280px;
  }

  .section { padding: 60px 0; }

  .nav { gap: 14px; }
  .nav-hero a { font-size: 0.7rem; letter-spacing: 0.06em; }

  .hero-split {
    gap: clamp(24px, 3.5vw, 56px);
    padding-block: clamp(8px, 2vh, 32px) clamp(16px, 2vh, 28px);
  }

  .hero-title {
    font-size: clamp(1.85rem, 3.4vw, 2.85rem);
    margin-bottom: 14px;
  }

  .hero-body {
    font-size: 0.92rem;
    margin-bottom: 18px;
  }

  .hero-pills { margin-bottom: 18px; }
  .hero-pill { font-size: 0.62rem; padding: 8px 12px; }

  .hero-cta { margin-bottom: 22px; gap: 12px; }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 18px 12px 22px;
    font-size: 0.66rem;
  }

  .hero-benefit-svg { width: 34px; height: 34px; }
  .hero-benefit-item { font-size: 0.55rem; min-width: 64px; }

  .hero-premium .hero-media-frame img { max-height: 560px; }

  .hero-stat-num { font-size: clamp(1.5rem, 2.4vw, 2rem); }
  .hero-stat-label { font-size: 0.62rem; }

  .ingredient-grid-numbered {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ingredient-grid-numbered .card-media-ingredient { height: 120px; }

  .pricing-grid { gap: 18px; }

  .footer-grid { gap: 28px; }
}

/* —— Smaller laptops & tablets-landscape — up to 1280px ——————— */
@media (max-width: 1280px) {
  .section { padding: 56px 0; }

  .nav-hero a { font-size: 0.66rem; }
  .nav { gap: 12px; }

  .hero-pills { gap: 8px 10px; }

  .hero-benefit-icons { gap: 14px 10px; }
  .hero-benefit-item { min-width: 60px; }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card-best {
    grid-column: span 2;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-trustbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .wisdom-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* —— Hamburger + hero stack threshold — up to 1180px ———————————
   Below this width the 8-item nav and 2-column hero stop fitting comfortably,
   so we switch to the mobile nav and stack the hero. */
@media (max-width: 1180px) {
  :root {
    --page-gutter: clamp(1.5rem, 4vw, 3rem);
    --topbar-height: 4.25rem;
  }

  .nav-hero { display: none; }
  .menu-toggle { display: inline-flex; }

  .nav-wrap { padding: 12px 0; }

  .section { padding: 52px 0; }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-media-premium {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-premium .hero-media-frame img { max-height: 460px; }

  .hero-copy { text-align: left; }

  .hero-benefit-icons {
    justify-content: space-around;
    max-width: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 22px;
  }

  .hero-stat:nth-child(2n)::after { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .pricing-card-best { grid-column: auto; max-width: 460px; }

  .ingredient-grid-numbered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ambassador-wrap,
  .amb-grid { grid-template-columns: 1fr; }

  .wisdom-block { grid-template-columns: 1fr; }
  .wisdom-image { min-height: 280px; }
  .wisdom-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .pillars-iconed,
  .proof-grid-iconed { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .usage-grid-iconed { grid-template-columns: 1fr; }

  .benefit-grid-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .making-grid-iconed { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .science-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
  .footer-brand,
  .footer-connect { grid-column: span 2; }
  .footer-trustbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* —— Phones / small tablets — up to 768px ——————————————————— */
@media (max-width: 768px) {
  :root {
    --page-gutter: 1.25rem;
    --topbar-height: 4rem;
  }

  body { line-height: 1.6; }

  .section { padding: 40px 0; }

  .brand { font-size: 0.98rem; letter-spacing: 0.08em; }

  .menu-toggle { width: 40px; height: 40px; }

  .hero-eyebrow {
    font-size: 0.6rem;
    gap: 10px;
  }
  .hero-eyebrow-line { width: 30px; }

  .hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
    max-width: none;
  }

  .hero-body {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-pills { gap: 8px; }
  .hero-pill { font-size: 0.58rem; padding: 7px 11px; }

  .hero-cta { gap: 10px; flex-wrap: wrap; }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 11px 16px 11px 20px;
    font-size: 0.62rem;
    flex: 1 1 auto;
    justify-content: center;
  }
  .btn-hero-iconcircle { width: 30px; height: 30px; }
  .btn-hero-iconcircle--ghost { width: 28px; height: 28px; }

  .hero-benefit-icons {
    gap: 14px 8px;
    justify-content: space-between;
  }
  .hero-benefit-item { min-width: 54px; gap: 6px; font-size: 0.52rem; }
  .hero-benefit-svg { width: 28px; height: 28px; }

  .hero-premium .hero-media-frame img { max-height: 360px; }

  h2 {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    margin-bottom: 12px;
  }
  h3 { font-size: 1.02rem; }

  .ingredient-grid-numbered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .ingredient-grid-numbered .card-media-ingredient { height: 130px; }

  .benefit-grid-cards,
  .making-grid-iconed,
  .pillars-iconed,
  .proof-grid-iconed,
  .science-pillars,
  .wisdom-grid {
    grid-template-columns: 1fr;
  }

  .wisdom-text { padding: 28px 22px 24px; }
  .wisdom-image { min-height: 220px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand,
  .footer-connect { grid-column: span 1; }
  .footer-trustbar { grid-template-columns: 1fr; gap: 18px; }
  .footer-trust-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .faq-list-deluxe summary { padding: 16px 18px; gap: 14px; }
  .faq-list-deluxe .faq-item p { padding: 0 22px 18px 22px; }
  .faq-side-icon { display: none; }
}

/* —— Small phones — up to 480px ————————————————————————— */
@media (max-width: 480px) {
  :root {
    --page-gutter: 1rem;
  }

  .section { padding: 34px 0; }

  .brand { font-size: 0.9rem; letter-spacing: 0.06em; }

  .hero-pills { gap: 6px; }
  .hero-pill { font-size: 0.55rem; padding: 6px 10px; letter-spacing: 0.06em; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: space-between;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    padding: 22px 12px 16px;
    row-gap: 16px;
    column-gap: 8px;
  }
  .hero-stat::after { display: none !important; }
  .hero-stat-num { font-size: 1.6rem; }

  .ingredient-grid-numbered {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid { max-width: 100%; }

  .footer-trust-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-newsletter input { padding: 12px 52px 12px 14px; font-size: 0.88rem; }
}
