@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700&display=swap");

:root {
  --bg-0: #f0f4f2;
  --bg-1: #e6f0ea;
  --card: #ffffff;
  --text: #14221a;
  --muted: #5a6b62;
  --accent: #1b6b4a;
  --accent-2: #0d4a32;
  --accent-glow: rgba(27, 107, 74, 0.12);
  --accent-soft: #e3f2eb;
  --gold: #c9a227;
  --gold-soft: #faf6e8;
  --border: rgba(20, 34, 26, 0.1);
  --shadow: 0 18px 50px rgba(15, 42, 28, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 42, 28, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --warn-bg: linear-gradient(135deg, #fffbf0 0%, #fff4dc 100%);
  --warn-border: #e8c96b;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  background-color: var(--bg-0);
  background-image:
    radial-gradient(1000px 520px at 12% -8%, rgba(27, 107, 74, 0.16), transparent 58%),
    radial-gradient(780px 480px at 96% 4%, rgba(201, 162, 39, 0.11), transparent 52%),
    radial-gradient(600px 400px at 50% 100%, rgba(27, 107, 74, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 48%, #e9f2ec 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: bgBreathe 18s ease-in-out infinite alternate;
  min-height: 100vh;
}

@keyframes bgBreathe {
  0% {
    filter: saturate(1) hue-rotate(0deg);
  }
  100% {
    filter: saturate(1.06) hue-rotate(-4deg);
  }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 40px rgba(15, 42, 28, 0.06);
  animation: headerDrop 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.85rem 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  opacity: 0;
  animation: navFade 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.brand strong {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav-legal a {
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-2);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
  opacity: 0;
  animation: navFade 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.nav-legal a:nth-child(1) {
  animation-delay: 0.15s;
}
.nav-legal a:nth-child(2) {
  animation-delay: 0.22s;
}
.nav-legal a:nth-child(3) {
  animation-delay: 0.29s;
}
.nav-legal a:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes navFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-legal a:hover {
  background: var(--accent-soft);
  border-color: rgba(27, 107, 74, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 107, 74, 0.12);
}

/* ——— Main layout ——— */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.25rem 1.35rem 3.5rem;
}

.article-hero {
  position: relative;
  padding: 0;
  border-radius: calc(var(--radius) + 8px);
  margin-bottom: 2.25rem;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  animation: heroCardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.article-hero__border-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(27, 107, 74, 0.45),
    rgba(60, 184, 120, 0.35),
    rgba(201, 162, 39, 0.4),
    rgba(27, 107, 74, 0.45)
  );
  background-size: 300% 300%;
  animation: borderGlowShift 8s linear infinite;
  opacity: 0.55;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}

@keyframes borderGlowShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.article-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(155deg, #fbfffc 0%, #f0f7f2 42%, #e8f3ec 100%);
}

.article-hero__mesh {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 30%, rgba(27, 107, 74, 0.09) 0%, transparent 42%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 38%),
    radial-gradient(circle at 60% 80%, rgba(27, 107, 74, 0.06) 0%, transparent 45%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}

@keyframes meshDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(2%, 3%) rotate(4deg);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-orb--a {
  width: 220px;
  height: 220px;
  background: rgba(27, 107, 74, 0.35);
  top: -12%;
  right: -5%;
  animation: orbFloatA 14s ease-in-out infinite alternate;
}

.hero-orb--b {
  width: 180px;
  height: 180px;
  background: rgba(201, 162, 39, 0.28);
  bottom: -8%;
  left: -6%;
  animation: orbFloatB 17s ease-in-out infinite alternate;
}

.hero-orb--c {
  width: 120px;
  height: 120px;
  background: rgba(60, 184, 120, 0.25);
  top: 40%;
  left: 35%;
  animation: orbFloatC 12s ease-in-out infinite alternate;
}

@keyframes orbFloatA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-18px, 22px) scale(1.08);
  }
}

@keyframes orbFloatB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(24px, -14px) scale(1.06);
  }
}

@keyframes orbFloatC {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(12px, 18px);
  }
}

.article-hero__content {
  position: relative;
  z-index: 2;
  padding: 2.15rem 1.85rem 2.35rem;
}

@media (max-width: 520px) {
  .article-hero__content {
    padding: 1.65rem 1.25rem 1.9rem;
  }
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.tagline::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform-origin: left center;
  animation: taglineBar 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes taglineBar {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero-enter {
  opacity: 0;
  animation: heroLine 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-enter--1 {
  animation-delay: 0.12s;
}
.hero-enter--2 {
  animation-delay: 0.22s;
}
.hero-enter--3 {
  animation-delay: 0.32s;
}
.hero-enter--4 {
  animation-delay: 0.42s;
}

@keyframes heroLine {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-brand {
  display: inline;
  background: linear-gradient(110deg, var(--accent-2) 0%, var(--accent) 35%, #3cb878 65%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: brandShimmer 6s ease-in-out infinite alternate;
}

@keyframes brandShimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 100% center;
  }
}

.hero-title-rest {
  color: var(--text);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 107, 74, 0.12);
  box-shadow: 0 2px 12px rgba(15, 42, 28, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.meta-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 42, 28, 0.08);
  border-color: rgba(27, 107, 74, 0.2);
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.25rem;
}

main > p:not(.lead):not(.meta) {
  max-width: 68ch;
}

main a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
}

main a:not(.btn):hover {
  color: var(--accent-2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 2.75rem 0 0.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-title::after {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  max-width: 120px;
  opacity: 0.35;
  transform-origin: left center;
}

.section-title.reveal:not(.reveal--visible)::after {
  opacity: 0;
  transform: scaleX(0);
}

.section-intro {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 65ch;
  margin-bottom: 1.25rem;
}

h2:not(.section-title) {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  font-weight: 700;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  margin: 1.75rem 0 0.6rem;
  font-weight: 600;
}

.legal-box {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  line-height: 1.65;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.08);
}

.legal-box strong {
  color: #7a5f18;
}

/* ——— Product card ——— */
.product-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.65rem 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--accent), #3cb878, var(--gold));
  opacity: 0.85;
}

.product-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.product-card > h2 {
  font-family: var(--font-serif);
  margin-top: 0.2rem;
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.product-card--ingredients {
  padding-top: 1.35rem;
}

.product-card__label--accent {
  color: var(--accent);
}

.product-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.15rem 0 1.35rem;
}

.product-images figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #fafcfb, #eef3ef);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.product-images figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 42, 28, 0.12);
  border-color: rgba(27, 107, 74, 0.18);
}

.product-images img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-images figure:hover img {
  transform: scale(1.04);
}

.btn-row {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-row--center {
  margin-top: 2rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background 0.25s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary:active {
  transform: scale(0.98) translateY(0);
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(27, 107, 74, 0.35);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border-radius: inherit;
}

.btn__text {
  position: relative;
  z-index: 1;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(27, 107, 74, 0.45);
}

.btn--primary:hover::before {
  transform: translateX(120%);
}

.btn--ghost {
  background: var(--card);
  color: var(--accent-2);
  border-color: rgba(27, 107, 74, 0.35);
}

.btn--ghost:hover {
  background: var(--accent-soft);
}

/* ——— Ingredients grid ——— */
.ingredients-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ingredient-card {
  display: grid;
  grid-template-columns: minmax(132px, 160px) 1fr;
  gap: 1.15rem 1.25rem;
  align-items: stretch;
  padding: 1.15rem 1.2rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ingredient-card:hover {
  border-color: rgba(27, 107, 74, 0.22);
  box-shadow: 0 16px 40px rgba(15, 42, 28, 0.1);
  transform: translateY(-3px);
}

.ingredient-card__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 132px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #eef4f0, #e3ede6);
  border: 1px solid rgba(27, 107, 74, 0.18);
}

.ingredient-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ingredient-card:hover .ingredient-card__visual img {
  transform: scale(1.07);
}

.ingredient-card__body strong {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text);
  font-size: 1.02rem;
}

.ingredient-card__body p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.62;
}

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

  .ingredient-card__visual {
    min-height: 160px;
    max-height: 200px;
  }
}

/* ——— Lists ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.feature-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-grid.reveal--visible .feature-pill {
  opacity: 1;
  transform: translateY(0);
}

.feature-grid.reveal--visible .feature-pill:nth-child(1) {
  transition-delay: 0.04s;
}
.feature-grid.reveal--visible .feature-pill:nth-child(2) {
  transition-delay: 0.1s;
}
.feature-grid.reveal--visible .feature-pill:nth-child(3) {
  transition-delay: 0.16s;
}
.feature-grid.reveal--visible .feature-pill:nth-child(4) {
  transition-delay: 0.22s;
}
.feature-grid.reveal--visible .feature-pill:nth-child(5) {
  transition-delay: 0.28s;
}

.feature-pill:hover {
  border-color: rgba(27, 107, 74, 0.2);
  box-shadow: 0 10px 28px rgba(15, 42, 28, 0.08);
}

.feature-pill::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #4ade80);
}

ul.check,
ul.minus {
  font-size: 0.93rem;
  padding-left: 1.15rem;
  max-width: 52ch;
}

ul.check li,
ul.minus li {
  margin-bottom: 0.45rem;
  padding-left: 0.15rem;
}

ul.check li::marker {
  color: var(--accent);
}

ul.minus li::marker {
  color: #b45309;
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(180deg, #15221c 0%, #0f1814 100%);
  color: #b8c4be;
  padding: 2.5rem 1.35rem;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: #7ee0b0;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__inner {
  max-width: 960px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0.5rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.1rem 0;
}

.footer-links a {
  opacity: 0.95;
  display: inline-block;
  transition: color 0.2s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.footer-links a:hover {
  transform: translateX(4px);
}

/* ——— Legal pages ——— */
.legal-page h1 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.legal-page .updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-top: 2rem;
}

.legal-page section {
  margin-bottom: 1.5rem;
}

.contact-inline {
  font-weight: 600;
}

/* ——— Scroll reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title.reveal {
  transition-delay: 0.05s;
}

.section-title.reveal--visible::after {
  animation: titleLineGrow 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes titleLineGrow {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.35;
  }
}

.product-card.reveal {
  transition-delay: 0.04s;
}

.product-card::before {
  animation: topBarShine 4s ease-in-out infinite alternate;
}

@keyframes topBarShine {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(12deg);
  }
}

.legal-box.reveal {
  transition-duration: 0.7s;
}

.site-footer.reveal {
  transition-duration: 0.85s;
}

/* ——— Riduci animazioni (accessibilità) ——— */
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
    filter: none;
  }

  .site-header {
    animation: none;
  }

  .brand,
  .nav-legal a {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .article-hero {
    animation: none;
  }

  .article-hero__border-glow,
  .article-hero__mesh,
  .hero-orb {
    animation: none;
  }

  .hero-enter {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .tagline::before {
    animation: none;
    transform: scaleX(1);
    opacity: 1;
  }

  .hero-brand {
    animation: none;
    background: var(--accent);
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--accent);
    -webkit-text-fill-color: currentColor;
  }

  .product-card::before {
    animation: none;
    filter: none;
  }

  .section-title.reveal--visible::after {
    animation: none;
    opacity: 0.35;
    transform: scaleX(1);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .feature-pill {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn--primary::before {
    display: none;
  }

  .btn--primary:hover {
    transform: none;
  }

  .product-images figure:hover,
  .ingredient-card:hover {
    transform: none;
  }

  .footer-links a:hover {
    transform: none;
  }

  .meta-chip:hover {
    transform: none;
  }

  .ingredient-card:hover .ingredient-card__visual img {
    transform: none;
  }

  .product-images figure:hover img {
    transform: none;
  }
}
