:root {
  --charcoal: #171715;
  --cream: #fff8e9;
  --gold: #f5c518;
  --orange: #f08a25;
  --coral: #e6533c;
  --peach: #ffe1c5;
  --pale: #fff4b8;
  --white: #ffffff;
  --muted: #68645e;
  --line: rgba(23, 23, 21, 0.12);
  --shadow: 0 24px 70px rgba(76, 47, 18, 0.16);
  --soft-shadow: 0 16px 36px rgba(76, 47, 18, 0.11);
  --radius: 8px;
  --small-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

img.image-missing {
  opacity: 0;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.top-bar {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.9rem;
}

.top-bar-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 233, 0.9);
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1160px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-image {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: rgba(23, 23, 21, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--coral);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  cursor: pointer;
}

.toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
  border-radius: 2px;
}

.main-action,
.order-button,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.main-action,
.order-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--orange));
  box-shadow: 0 18px 32px rgba(230, 83, 60, 0.22);
}

.secondary-action {
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line);
}

.main-action:hover,
.order-button:hover,
.secondary-action:hover,
.main-action:focus-visible,
.order-button:focus-visible,
.secondary-action:focus-visible {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 80px;
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 197, 24, 0.36), transparent 30%),
    linear-gradient(145deg, #fff8e9 0%, #fff0cd 48%, #ffe1c5 100%);
}

.hero-section::after,
.final-section::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -72px;
  height: 145px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
}

.hero-grid,
.final-grid,
.split-section,
.quality-grid,
.formula-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(23, 23, 21, 0.76);
  font-size: 1.18rem;
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.fact-chips span {
  padding: 9px 13px;
  border: 1px solid rgba(23, 23, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(23, 23, 21, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 0;
}

.small-note,
.wide-note,
.notice-inline {
  color: rgba(23, 23, 21, 0.72);
  font-weight: 700;
}

.small-note {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-bottle {
  position: relative;
  z-index: 2;
  width: min(430px, 88%);
  aspect-ratio: 16 / 19;
  object-fit: contain;
  filter: drop-shadow(0 32px 44px rgba(77, 46, 11, 0.22));
}

.sun-mark {
  position: absolute;
  width: min(430px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 8deg, rgba(245, 197, 24, 0.28) 0 6deg, transparent 6deg 14deg),
    radial-gradient(circle, rgba(255, 244, 184, 0.88), rgba(255, 225, 197, 0.34) 58%, transparent 60%);
}

.floating-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 86px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
}

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

.quick-facts {
  position: relative;
  z-index: 3;
  padding: 0 0 68px;
  margin-top: -26px;
}

.facts-grid,
.pillar-grid,
.nutrient-grid,
.steps-grid,
.price-grid,
.review-grid,
.responsible-grid {
  display: grid;
  gap: 18px;
}

.facts-grid {
  grid-template-columns: repeat(4, 1fr);
}

.facts-grid article,
.pillar-grid article,
.nutrient-grid article,
.steps-grid article,
.price-card,
.review-card,
.trust-panel,
.product-panel,
.storage-panel {
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.facts-grid article {
  min-height: 184px;
  padding: 24px;
}

.facts-grid span,
.nutrient-grid span,
.review-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.facts-grid h2,
.facts-grid h3 {
  margin-top: 18px;
  font-size: 1.28rem;
}

.content-section,
.pillar-section,
.formula-section,
.routine-section,
.quality-section,
.price-section,
.buy-section,
.review-section,
.responsible-section,
.storage-section,
.faq-section,
.final-section {
  padding: 84px 0;
}

.split-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
}

.product-panel {
  padding: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 225, 197, 0.62));
}

.product-panel img {
  width: min(300px, 90%);
  height: 300px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.check-list,
.feature-list,
.price-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.price-card li {
  position: relative;
  padding-left: 26px;
  margin-top: 12px;
  color: rgba(23, 23, 21, 0.76);
  font-weight: 600;
}

.check-list li::before,
.feature-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.notice-inline {
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 244, 184, 0.45);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  max-width: 660px;
}

.pillar-section,
.price-section,
.faq-section {
  background: var(--white);
}

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

.pillar-grid article,
.nutrient-grid article,
.steps-grid article,
.review-card {
  padding: 28px;
}

.card-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--pale), var(--peach));
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.nutrient-grid {
  grid-template-columns: repeat(5, 1fr);
}

.nutrient-grid article {
  min-height: 245px;
}

.nutrient-grid article:nth-child(2),
.nutrient-grid article:nth-child(5) {
  background: linear-gradient(160deg, #ffffff, rgba(255, 225, 197, 0.68));
}

.nutrient-grid span {
  display: inline-block;
  margin-top: 12px;
}

.formula-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 138, 37, 0.12), transparent 28%),
    var(--cream);
}

.formula-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
}

.ingredient-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.ingredient-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(23, 23, 21, 0.08);
}

.ingredient-table div:last-child {
  border-bottom: 0;
}

.ingredient-table strong {
  color: var(--charcoal);
}

.ingredient-table span {
  color: var(--muted);
}

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

.steps-grid article {
  position: relative;
  min-height: 230px;
}

.steps-grid span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.wide-note {
  max-width: 860px;
  margin: 28px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(240, 138, 37, 0.28);
  border-radius: 999px;
  background: rgba(255, 244, 184, 0.48);
  text-align: center;
}

.quality-section {
  background: linear-gradient(135deg, var(--charcoal), #2b231c);
}

.quality-section h2,
.quality-section h3,
.quality-section .feature-list li {
  color: var(--white);
}

.quality-section p {
  color: rgba(255, 248, 233, 0.78);
}

.quality-section .notice-inline {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.quality-image {
  display: grid;
  place-items: center;
  min-height: 440px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 50%, rgba(245, 197, 24, 0.34), transparent 54%),
    rgba(255, 255, 255, 0.06);
}

.quality-image img {
  width: min(440px, 88%);
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.3));
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card-featured {
  transform: translateY(-12px);
  border-color: rgba(230, 83, 60, 0.38);
  background: linear-gradient(160deg, #ffffff, #fff0cd);
  box-shadow: var(--shadow);
}

.price-card img {
  height: 190px;
  width: 100%;
  margin-bottom: 20px;
  object-fit: contain;
}

.price-card ul {
  margin: 18px 0 24px;
}

.price-card .price {
  display: block;
  margin-top: auto;
  color: var(--charcoal);
  font-family: "Manrope", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.price-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
}

.price-card .order-button {
  width: 100%;
  margin-top: 22px;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-alt {
  background: var(--coral);
}

.buy-section {
  background: linear-gradient(135deg, #fff8e9, #ffe1c5);
}

.trust-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.74);
}

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

.review-card {
  background: #ffffff;
}

.review-card h3 {
  margin-top: 18px;
  font-size: 1.15rem;
}

.review-card small {
  color: var(--muted);
  font-weight: 700;
}

.responsible-section {
  background: var(--charcoal);
}

.responsible-section h2 {
  color: var(--white);
}

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

.responsible-grid p {
  min-height: 92px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--small-radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 248, 233, 0.84);
  font-weight: 700;
}

.storage-section {
  padding-top: 54px;
}

.storage-panel {
  padding: 36px;
  background: linear-gradient(135deg, var(--white), var(--pale));
}

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

.faq-list details {
  border: 1px solid rgba(23, 23, 21, 0.08);
  border-radius: 20px;
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(76, 47, 18, 0.06);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  color: var(--charcoal);
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 1.7rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--orange) 55%, var(--coral));
}

.final-section::before {
  top: -74px;
  bottom: auto;
  background: var(--white);
  border-radius: 0 0 50% 50% / 0 0 65% 65%;
}

.final-section h2,
.final-section p {
  color: var(--charcoal);
}

.final-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
}

.final-grid img {
  width: min(330px, 90%);
  height: 380px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(93, 51, 4, 0.24));
}

.site-footer {
  padding: 64px 0 0;
  background: var(--charcoal);
  color: var(--cream);
}

.site-footer p,
.site-footer a,
.site-footer button {
  color: rgba(255, 248, 233, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 42px;
}

.footer-brand {
  color: var(--cream);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer nav a,
.legal-link {
  display: block;
  width: fit-content;
  margin: 9px 0;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.site-footer nav a:hover,
.legal-link:hover,
.site-footer nav a:focus-visible,
.legal-link:focus-visible {
  color: var(--gold);
}

.footer-note {
  font-weight: 700;
}

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin: 46px auto 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.legal-modal,
.leave-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 20px;
}

.legal-modal[hidden],
.leave-modal[hidden] {
  display: none;
}

.exit-layer {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 21, 0.62);
  backdrop-filter: blur(6px);
}

.legal-content,
.leave-content {
  position: relative;
  width: min(720px, 100%);
  max-height: min(78vh, 760px);
  overflow: auto;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.leave-content {
  width: min(640px, 100%);
  padding: clamp(28px, 5vw, 46px);
  background:
    radial-gradient(circle at 86% 8%, rgba(245, 197, 24, 0.34), transparent 25%),
    linear-gradient(145deg, var(--white), var(--cream));
}

.leave-content h2 {
  max-width: 520px;
  margin: 8px 0 12px;
}

.leave-content p {
  max-width: 560px;
}

.leave-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 14px;
}

.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid rgba(23, 23, 21, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 800;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-body h3 {
  margin: 8px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}

.modal-body p {
  margin: 0 0 14px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .header-action {
    justify-self: end;
  }

  .hero-grid,
  .split-section,
  .quality-grid,
  .formula-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

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

  .hero-lead,
  .section-heading,
  .fact-chips,
  .hero-actions {
    justify-content: center;
  }

  .facts-grid,
  .pillar-grid,
  .nutrient-grid,
  .steps-grid,
  .price-grid,
  .review-grid,
  .responsible-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card-featured {
    transform: none;
  }

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

@media (max-width: 720px) {
  .section-shell,
  .header-inner,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .top-bar-inner {
    justify-content: flex-start;
    gap: 10px 14px;
    padding: 8px 0;
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-image {
    width: 32px;
    height: 32px;
  }

  .header-action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
  }

  .hero-section {
    padding: 46px 0 66px;
  }

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

  .hero-lead {
    font-size: 1.04rem;
  }

  .fact-chips,
  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-bottle {
    width: min(330px, 86%);
  }

  .floating-card {
    right: 6px;
    bottom: 30px;
    width: 158px;
    padding: 14px;
  }

  .content-section,
  .pillar-section,
  .formula-section,
  .routine-section,
  .quality-section,
  .price-section,
  .buy-section,
  .review-section,
  .responsible-section,
  .storage-section,
  .faq-section,
  .final-section {
    padding: 58px 0;
  }

  .facts-grid,
  .pillar-grid,
  .nutrient-grid,
  .steps-grid,
  .price-grid,
  .review-grid,
  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wide-note {
    border-radius: 22px;
    text-align: left;
  }

  .quality-image {
    min-height: 300px;
  }

  .footer-bottom {
    display: grid;
  }
}

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