@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Nunito:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700&display=swap");

:root {
  --bg-top: #f0f9ff;
  --bg-mid: #f5f3ff;
  --bg-btm: #ecfeff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --teal: #0d9488;
  --teal-light: #5eead4;
  --violet: #7c3aed;
  --rose: #e11d48;
  --link: #0e7490;
  --link-hover: #155e75;
  --font-sans: "Nunito", system-ui, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --radius: 1.5rem;
  --radius-pill: 100px;
  --shadow-soft: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 20px 25px -10px rgba(15, 23, 42, 0.06);
  --shadow-lift: 0 10px 40px -8px rgba(6, 182, 212, 0.18);
  --legal-tint: #f0f9ff;
  --legal-line: #bae6fd;
  --reveal-dur: 0.6s;
  --reveal-ease: cubic-bezier(0.33, 1, 0.68, 1);
  --ring: 1px solid rgba(148, 163, 184, 0.35);
}

*,
*::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(--ink-soft);
  line-height: 1.7;
  background: linear-gradient(165deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-btm) 100%);
  min-height: 100vh;
}

/* ——— Header: floating glass ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 100%);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border-bottom: var(--ring);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.site-header--glass {
  border: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0 0 var(--radius) var(--radius);
  margin: 0 0.5rem;
  max-width: calc(100% - 1rem);
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.4rem;
}

@media (min-width: 1024px) {
  .site-header--glass {
    margin: 0.5rem 1.25rem 0;
    max-width: 960px;
    border-radius: var(--radius-pill);
  }
}

.site-header--compact {
  border-radius: 0 0 1.25rem 1.25rem;
  margin-top: 0;
  max-width: none;
}

@media (min-width: 1024px) {
  .site-header--compact.site-header--glass {
    margin: 0.4rem 1.25rem 0;
    max-width: 920px;
    border-radius: 1.25rem;
  }
}

.site-header--compact .site-header__inner {
  padding: 0.55rem 0.9rem;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  max-width: min(100%, 22rem);
}

.site-logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  background: linear-gradient(145deg, #2dd4bf, #7dd3fc 45%, #a78bfa 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 20px -6px rgba(6, 182, 212, 0.55);
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.site-logo__title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.site-logo__title strong {
  font-weight: 800;
  color: #0e7490;
}

.site-logo__sub {
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.nav-legal a {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #0e7490;
  padding: 0.45rem 0.75rem;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-legal a:hover {
  background: #fff;
  box-shadow: var(--shadow-lift);
  transform: translateY(-1px);
  color: #0f766e;
}

/* ——— Main ——— */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.1rem 1.1rem 2.8rem;
}

main.legal-surface {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  padding: 2rem 1.4rem 2.25rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(148, 163, 184, 0.1);
  border-radius: 2rem;
  backdrop-filter: blur(12px);
}

/* ——— Hero: aurora + glass card ——— */
.article-hero {
  position: relative;
  margin: 0 0 1.75rem;
  border-radius: 2rem;
  overflow: hidden;
  isolation: isolate;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lift);
}

.article-hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg, #ccfbf1 0%, #e0e7ff 38%, #fce7f3 70%, #cffafe 100%);
  overflow: hidden;
}

.article-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.85;
  will-change: transform;
}

.article-hero__blob--1 {
  width: 280px;
  height: 280px;
  background: #22d3ee;
  top: -8%;
  right: -5%;
  animation: floaty 12s ease-in-out infinite;
}

.article-hero__blob--2 {
  width: 200px;
  height: 200px;
  background: #a78bfa;
  bottom: 5%;
  left: -6%;
  animation: floaty 15s ease-in-out infinite 2s;
}

.article-hero__blob--3 {
  width: 150px;
  height: 150px;
  background: #f472b6;
  top: 35%;
  left: 40%;
  opacity: 0.5;
  animation: floaty 10s ease-in-out infinite 1s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.05);
  }
}

.article-hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.article-hero__content {
  position: relative;
  z-index: 1;
  padding: 1.35rem 0.9rem 1.5rem;
}

@media (min-width: 640px) {
  .article-hero__content {
    padding: 1.75rem 1.35rem 1.9rem;
  }
}

.article-hero__glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.75rem;
  padding: 1.4rem 1.15rem 1.5rem;
  box-shadow: 0 4px 30px -8px rgba(6, 182, 212, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .article-hero__glass {
    padding: 1.65rem 1.4rem 1.75rem;
  }
}

.article-hero__grid {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

@media (min-width: 800px) {
  .article-hero__grid {
    grid-template-columns: 1fr 11.5rem;
    gap: 1.5rem 1.75rem;
  }
}

.article-hero__side {
  margin: 0;
}

.hero-side-card {
  position: relative;
  padding: 1.15rem 1.05rem 1.2rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(224, 242, 254, 0.5) 100%);
  box-shadow: 0 8px 32px -10px rgba(6, 182, 212, 0.35);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.hero-side-card__ring {
  position: absolute;
  inset: -1px;
  background: conic-gradient(from 210deg, #2dd4bf, #7dd3fc, #a78bfa, #2dd4bf);
  border-radius: inherit;
  z-index: 0;
  opacity: 0.5;
  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: 2px;
  pointer-events: none;
}

.hero-side-card__eyebrow,
.hero-side-card__strong,
.hero-side-card__note {
  position: relative;
  z-index: 1;
}

.hero-side-card__eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0e7490;
  margin: 0 0 0.35rem;
  display: block;
}

.hero-side-card__strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  margin: 0 0 0.25rem;
  color: #0e7490;
}

.hero-side-card__note {
  margin: 0;
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.4;
  font-weight: 500;
}

.tagline {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0e7490;
  margin: 0 0 0.5rem;
}

.tagline::before {
  content: "✦ ";
  color: #2dd4bf;
  font-size: 0.6rem;
  letter-spacing: 0;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.75rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-brand {
  color: #0f766e;
  font-style: italic;
  font-weight: 700;
}

@media (min-width: 600px) {
  .hero-brand,
  .hero-title-rest {
    display: inline;
  }
}

.hero-title-rest {
  color: #1e293b;
  font-weight: 500;
  font-style: normal;
  font-size: 0.92em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  margin: 0 0 0.15rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  color: #475569;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lead {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.7;
  margin: 0.9rem 0 0;
  max-width: 60ch;
}

.lead strong {
  color: #0f172a;
}

.hero-enter {
  opacity: 0;
  animation: heroRise 0.75s var(--reveal-ease) both;
}

.hero-enter--1 {
  animation-delay: 0.04s;
}
.hero-enter--2 {
  animation-delay: 0.12s;
}
.hero-enter--3 {
  animation-delay: 0.2s;
}
.hero-enter--4 {
  animation-delay: 0.3s;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

main a:not(.btn):not(.site-logo) {
  color: var(--link);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 116, 144, 0.4);
  transition: color 0.15s, border-color 0.15s;
}

main a:not(.btn):not(.site-logo):hover {
  color: var(--link-hover);
  border-bottom-color: var(--link);
}

/* ——— Títulos sección: línea cian ——— */
.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.1rem 0 0.4rem;
  color: var(--ink);
  position: relative;
  padding-bottom: 0.45rem;
  font-style: italic;
}

.section-title::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 4px;
  margin-top: 0.4rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #2dd4bf, #a78bfa 90%);
}

.section-intro {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 64ch;
  margin-bottom: 1rem;
}

h2:not(.section-title) {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  margin: 1.4rem 0 0.55rem;
  color: var(--ink);
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.3rem 0 0.45rem;
  color: #1e293b;
}

.legal-box {
  background: linear-gradient(180deg, var(--legal-tint) 0%, #ecfeff 100%);
  border: 1px solid var(--legal-line);
  border-radius: 1.25rem;
  padding: 1rem 1.05rem 1.1rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #0f172a;
  box-shadow: 0 4px 20px -6px rgba(2, 132, 199, 0.12);
}

.legal-box strong {
  color: #0369a1;
}

/* ——— Product ——— */
.product-card {
  position: relative;
  background: var(--surface-solid);
  border: 1px solid rgba(203, 213, 225, 0.55);
  border-radius: 1.75rem;
  padding: 1.35rem 1.2rem 1.45rem;
  margin: 1.5rem 0 1.9rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2dd4bf, #38bdf8, #a78bfa, #f472b6);
  border-radius: 0;
}

.product-card::after {
  content: none;
  display: none;
}

.product-card__label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d9488;
  background: rgba(204, 251, 241, 0.5);
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.35rem;
  border: 1px solid rgba(20, 184, 166, 0.25);
}

.product-card > h2 {
  font-family: var(--font-serif);
  margin: 0.2rem 0 0.45rem;
  font-size: 1.38rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

.product-card--ingredients {
  padding: 1rem 0.9rem 1.15rem;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.product-card__label--accent {
  color: #7c3aed;
  background: rgba(237, 233, 254, 0.5);
  border-color: rgba(124, 58, 237, 0.2);
}

.product-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin: 0.95rem 0 1.1rem;
}

.product-images figure {
  margin: 0;
  border-radius: 1.15rem;
  border: 1px solid #e2e8f0;
  background: #f1f5f9;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.product-images img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--reveal-ease);
}

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

.btn-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  transition: filter 0.2s, transform 0.15s;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0d9488 0%, #0891b2 50%, #0ea5e9 100%);
  box-shadow: 0 4px 18px -4px rgba(6, 182, 212, 0.55);
}

.btn--primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 8px 24px -4px rgba(6, 182, 212, 0.45);
}

.btn__text {
  position: relative;
}

.btn--ghost {
  color: #0e7490;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.btn--ghost:hover {
  background: #fff;
  box-shadow: var(--shadow-lift);
}

button.btn {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

/* ——— Form ——— */
.order-form-section {
  scroll-margin-top: 5.25rem;
  margin-top: 2rem;
}

.order-form-section .section-title {
  margin-top: 0.15rem;
}

.order-form {
  background: var(--surface-solid);
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  padding: 1.2rem 1.1rem 1.3rem;
  max-width: 100%;
  box-shadow: 0 8px 30px -8px rgba(6, 182, 212, 0.12);
}

.order-form__field {
  margin-bottom: 0.95rem;
}

.order-form__field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569;
  margin-bottom: 0.28rem;
}

.order-form__req {
  color: #e11d48;
}

.order-form input[type="text"],
.order-form input[type="email"],
.order-form input[type="tel"],
.order-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  background: #f8fafc;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #2dd4bf;
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.2);
}

.order-form textarea {
  resize: vertical;
  min-height: 5.25rem;
}

.order-form__field--check {
  margin-bottom: 0.55rem;
}

.order-form__check-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.83rem;
  line-height: 1.5;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
}

.order-form__check-label input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  accent-color: #0d9488;
  border-radius: 4px;
}

.order-form__status {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0 0 0.5rem;
  min-height: 1.1em;
}

.order-form__actions {
  margin-top: 0.1rem;
}

.order-form__input--invalid {
  border-color: #e11d48 !important;
  background: #fff1f2 !important;
  box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.1) !important;
}

.order-form__error {
  display: none;
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e11d48;
  line-height: 1.3;
}

.order-form__error:not(:empty) {
  display: block;
}

.order-form__error--check {
  margin-top: 0.4rem;
  margin-left: 1.5rem;
}

body.order-modal-open {
  overflow: hidden;
}

.order-modal[hidden] {
  display: none !important;
}

.order-modal:not([hidden]) {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  box-sizing: border-box;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.order-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.35rem 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  animation: modalIn 0.4s var(--reveal-ease) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.order-modal__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.order-modal__text {
  margin: 0 0 1.05rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

.order-modal__text strong {
  color: var(--ink);
}

.order-modal__mail {
  color: #0d9488;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(13, 148, 136, 0.4);
}

.order-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-modal__actions .btn {
  flex: 1 1 auto;
  min-width: 8rem;
  justify-content: center;
}

.order-modal__actions--single {
  justify-content: center;
}

.order-modal__actions--single .btn {
  flex: 0 1 auto;
  min-width: 10.5rem;
}

/* ——— Ingredientes: bento 2 col ——— */
.ingredients-wrap {
  counter-reset: ing;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 0.3rem;
}

@media (min-width: 700px) {
  .ingredients-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 1rem;
  }
}

.ingredient-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.65rem 0.8rem;
  background: #fff;
  border-radius: 1.1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s;
}

.ingredient-card::after {
  counter-increment: ing;
  content: counter(ing, decimal-leading-zero);
  position: absolute;
  top: 0.55rem;
  left: 0.6rem;
  z-index: 1;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  width: 1.35rem;
  height: 1.35rem;
  line-height: 1.35rem;
  text-align: center;
  background: linear-gradient(135deg, #0d9488, #06b6d4);
  border-radius: 50%;
  font-family: var(--font-sans);
  box-shadow: 0 2px 6px rgba(6, 182, 212, 0.3);
  pointer-events: none;
}

.ingredient-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px -6px rgba(6, 182, 212, 0.15);
  transform: translateY(-2px);
}

.ingredient-card__visual {
  order: 0;
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4/3;
  max-height: 9rem;
  width: 100%;
  background: #f1f5f9;
  border: none;
}

.ingredient-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--reveal-ease);
}

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

.ingredient-card__body {
  order: 1;
  padding: 0.5rem 0.15rem 0 0.1rem;
}

.ingredient-card__body strong {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.3;
  display: block;
}

.ingredient-card__body p {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 699px) {
  .ingredient-card__visual {
    max-height: 10rem;
  }
}

/* ——— Features ——— */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}

@media (min-width: 600px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-pill {
  position: relative;
  padding: 0.7rem 0.75rem 0.7rem 2.4rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--reveal-ease), transform 0.4s var(--reveal-ease);
}

.feature-pill::before {
  content: "●";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  margin-top: -0.4rem;
  font-size: 0.55rem;
  color: #2dd4bf;
  line-height: 1;
  background: #ecfdf5;
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.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;
}

ul.minus,
ul.check {
  font-size: 0.88rem;
  padding-left: 1.05rem;
  max-width: 50ch;
}

ul.minus li,
ul.check li {
  margin-bottom: 0.32rem;
}

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

/* ——— Footer: claro ——— */
.site-footer {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #64748b;
  padding: 1.9rem 1.1rem 2.1rem;
  font-size: 0.86rem;
  border-top: 1px solid #cbd5e1;
  margin-top: 0.5rem;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -2px 12px rgba(15, 23, 42, 0.04);
}

.site-footer a {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(13, 148, 136, 0.25);
}

.site-footer a:hover {
  color: #0f766e;
  border-bottom-color: #0f766e;
}

.site-footer p strong {
  color: #1e293b;
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin: 0.65rem 0 0.85rem;
  padding: 0.4rem 0 0.55rem;
  border-top: 1px dashed #cbd5e1;
  border-bottom: 1px dashed #cbd5e1;
}

/* ——— Legal ——— */
.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 0.2rem;
  line-height: 1.2;
  color: #0c4a6e;
  padding-bottom: 0.35rem;
  border: none;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .legal-page h1 {
    background: linear-gradient(120deg, #0f172a, #0e7490);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

.legal-surface a[href^="index"] {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  margin-top: 0.45rem;
  color: #0d9488;
  border: none;
}

.legal-surface a[href^="index"]::before {
  content: "‹";
  font-size: 1.1rem;
}

.legal-page .updated {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin: 0 0 1.35rem;
}

.legal-page h2 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.4rem 0 0.45rem;
  color: #0d9488;
  padding: 0;
  background: none;
  border: none;
  display: block;
}

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

.legal-page ul,
.legal-page p {
  font-size: 0.9rem;
  color: #334155;
  max-width: 80ch;
}

.legal-page ul li {
  margin-bottom: 0.35rem;
}

.contact-inline {
  font-weight: 600;
  color: #0d9488;
  border: none;
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--reveal-dur) var(--reveal-ease), transform var(--reveal-dur) var(--reveal-ease);
}

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

.legal-box.reveal {
  transition-delay: 0.03s;
}

.site-footer.reveal {
  transition-delay: 0.06s;
  transition-duration: 0.7s;
}

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

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
  .article-hero__blob--1,
  .article-hero__blob--2,
  .article-hero__blob--3 {
    animation: none;
  }

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

  .order-modal__panel {
    animation: none;
  }

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

  .reveal--visible,
  .feature-grid.reveal--visible .feature-pill {
    opacity: 1;
    transform: none;
  }
}
