@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --forest: #101709;
  --forest-soft: #1a2112;
  --ivory: #f7f3e9;
  --paper: #fffdf7;
  --ink: #1f2119;
  --body: #45453d;
  --gold: #e7b430;
  --gold-dark: #945b19;
  --sage: #9ca287;
  --line: rgba(31, 33, 25, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 20px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--forest);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
figure, h1, h2, h3, p { margin-top: 0; }
figure { margin: 0; }
h1, h2, h3 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}
h1 { font-size: 4.1rem; text-transform: uppercase; }
h2 { font-size: 3.1rem; }
h3 { font-size: 1.25rem; }
p { color: var(--body); text-wrap: pretty; }
.shell-wide { width: min(1220px, calc(100% - 64px)); margin-inline: auto; }
.section-label {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--forest);
  background: var(--gold);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: 116px;
  color: var(--paper);
}
.header-bar { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand, .footer-brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 54px; height: 76px; object-fit: contain; }
.brand span, .footer-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 0.98;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  padding: 8px 0;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1);
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--gold); border-color: var(--gold); }
.desktop-nav .desktop-cta {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: var(--forest);
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}
.desktop-nav .desktop-cta:hover { color: var(--forest); background: #f1c64d; transform: translateY(-1px); }
.menu-button {
  width: 58px;
  height: 52px;
  display: none;
  align-content: center;
  gap: 7px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span { width: 38px; height: 4px; display: block; background: var(--gold); transition: transform 180ms ease, opacity 180ms ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(11px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-11px) rotate(-45deg); }
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: min(420px, 100%);
  height: 100dvh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 100px 56px 56px;
  color: var(--paper);
  background: rgba(16, 23, 9, 0.98);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(.16, 1, .3, 1);
}
.menu-panel.is-open { transform: translateX(0); }
.menu-panel a { width: fit-content; font-family: Georgia, serif; font-size: 2rem; border-bottom: 1px solid transparent; }
.menu-panel a:hover { color: var(--gold); border-color: var(--gold); }

.hero { position: relative; min-height: 820px; display: grid; align-items: center; overflow: hidden; color: var(--paper); background: var(--forest); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 17, 7, 0.98) 0%, rgba(11, 17, 7, 0.88) 31%, rgba(11, 17, 7, 0.24) 62%, rgba(11, 17, 7, 0.08) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 100px; }
.hero-copy { max-width: 570px; }
.hero-copy h1 { max-width: 12ch; margin-bottom: 16px; color: var(--paper); }
.hero-copy h1 em { color: var(--gold); font-style: normal; }
.gold-rule { width: 60px; height: 3px; display: block; margin: 0 0 24px; background: var(--gold); }
.hero-copy > p { max-width: 48ch; margin-bottom: 30px; color: rgba(255, 253, 247, 0.92); font-family: Georgia, serif; font-size: 1.08rem; line-height: 1.55; }
.hero-actions { display: grid; justify-items: start; gap: 20px; }
.button {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(.22, 1, .36, 1), background-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.98); }
.button-gold { color: var(--forest); background: var(--gold); }
.button-gold:hover { background: #f1c64d; }
.button-gold::before,
.desktop-nav .desktop-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -55% -25%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='46' viewBox='0 0 52 46'%3E%3Cg fill='none' stroke='%23101709' stroke-opacity='.48' stroke-width='1.25'%3E%3Cpath d='M13 1.5 24.5 8v13L13 27.5 1.5 21V8Z'/%3E%3Cpath d='M39 18.5 50.5 25v13L39 44.5 27.5 38V25Z'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  opacity: 0;
  transform: translate3d(-9%, 0, 0) rotate(-2deg);
  transition: opacity 220ms ease, transform 440ms cubic-bezier(.22, 1, .36, 1);
}
.button-label,
.button-arrow { position: relative; z-index: 1; }
.button-arrow { font-size: 1.2em; transition: transform 280ms cubic-bezier(.22, 1, .36, 1); }
.button-gold:is(:hover, :focus-visible)::before,
.desktop-nav .desktop-cta:is(:hover, :focus-visible)::before { opacity: 0.22; transform: translate3d(5%, 0, 0) rotate(-2deg); }
.button-gold:is(:hover, :focus-visible) .button-arrow { transform: translateX(5px); }
.overlap-panel { position: relative; z-index: 3; margin-top: -34px; border-radius: 26px 26px 0 0; }
.cooperative { padding: 90px 0 84px; overflow: hidden; background: var(--ivory) url("assets/fondo-botanico.webp") center / cover no-repeat; }
.cooperative-grid { display: grid; gap: 56px; }
.cooperative-copy { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 96px; }
.cooperative-heading h2 { max-width: 17ch; margin-bottom: 0; }
.cooperative-intro { padding-top: 28px; }
.cooperative-intro p { max-width: 58ch; font-family: Georgia, serif; font-size: 1rem; }
.cooperative-intro p:last-child { margin-bottom: 0; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.principles article { min-height: 150px; display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: center; gap: 22px; padding: 0 34px; border-right: 1px solid rgba(157, 99, 29, 0.42); }
.principles article:first-child { padding-left: 0; }
.principles article:last-child { padding-right: 0; border-right: 0; }
.principle-icon { width: 112px; height: 112px; display: grid; place-items: center; }
.principles img { width: 100%; height: 100%; object-fit: contain; }
.principles h3 { margin-bottom: 6px; font-size: 1.18rem; font-weight: 700; }
.principles p { max-width: 43ch; margin: 0; font-family: Georgia, serif; font-size: 0.9rem; line-height: 1.45; }
.line-bee { position: absolute; pointer-events: none; mix-blend-mode: multiply; }

.collection-feature { position: relative; min-height: 590px; display: grid; align-items: center; overflow: hidden; color: var(--paper); background: var(--forest) url("assets/fondo-coleccion.webp") center / cover no-repeat; border-radius: 24px 24px 0 0; }
.collection-feature::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 15, 7, 0.98) 0%, rgba(10, 15, 7, 0.92) 33%, rgba(10, 15, 7, 0.38) 58%, rgba(10, 15, 7, 0.08) 100%); }
.collection-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.78fr 1.22fr; align-items: center; gap: 30px; padding-top: 70px; padding-bottom: 70px; }
.collection-copy h2 { max-width: 13ch; margin-bottom: 12px; color: var(--paper); font-size: 2.5rem; }
.collection-copy h3 { max-width: 15ch; color: var(--gold); font-size: 2.55rem; }
.collection-feature .section-label { color: var(--gold); }
.source-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0; }
.source-list > div { min-width: 0; display: flex; flex-direction: column; align-items: center; padding: 0 18px; text-align: center; border-right: 1px solid rgba(231, 180, 48, 0.65); }
.source-list div:last-child { border-right: 0; }
.source-icon { width: 58px; height: 52px; display: grid; place-items: center; margin-bottom: 10px; }
.source-list img { width: 100%; height: 100%; object-fit: contain; }
.source-list > div:first-child .source-icon img { transform: translateY(-12px) scale(0.76); }
.source-list strong, .source-description { display: block; }
.source-list strong { color: var(--paper); font-size: 0.8rem; text-transform: uppercase; }
.source-description { margin-top: 5px; color: rgba(255, 253, 247, 0.8); font-size: 0.7rem; }
.collection-image { min-width: 0; }
.collection-image img { width: 113%; max-width: none; height: auto; transform: translate(0, 3%) rotate(-1.5deg); transform-origin: center; filter: drop-shadow(0 32px 38px rgba(0, 0, 0, 0.55)); }

.benefit-strip { position: relative; z-index: 3; padding: 28px 0; background: var(--ivory); border-radius: 24px 24px 0 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefit-grid article { min-height: 116px; display: grid; grid-template-columns: 92px minmax(0, 1fr); grid-template-rows: auto auto; align-content: center; align-items: center; column-gap: 18px; padding: 8px 24px; border-right: 1px solid var(--line); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-icon { grid-row: 1 / 3; width: 92px; height: 92px; display: grid; place-items: center; }
.benefit-grid img { width: 100%; height: 100%; object-fit: contain; }
.benefit-grid strong { grid-column: 2; display: block; align-self: end; margin-bottom: 5px; font-family: Georgia, serif; font-size: 1rem; line-height: 1.2; }
.benefit-grid p { grid-column: 2; max-width: 22ch; align-self: start; margin: 0; font-family: Georgia, serif; font-size: 0.82rem; line-height: 1.35; }

.origin { padding: 110px 0; background: var(--ivory); }
.origin-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 90px; }
.origin-gallery { position: relative; min-height: 570px; }
.origin-main { position: absolute; inset: 0 74px 38px 0; width: calc(100% - 74px); height: 530px; object-fit: cover; border-radius: 8px; box-shadow: 0 18px 38px rgba(31, 33, 25, 0.14); }
.origin-detail { position: absolute; right: 0; bottom: 0; width: 210px; height: 345px; object-fit: cover; border: 12px solid var(--ivory); border-radius: 8px; box-shadow: 0 20px 42px rgba(31, 33, 25, 0.18); }
.origin-copy h2 { max-width: 11ch; }
.origin-copy > p:not(.section-label) { max-width: 43ch; font-family: Georgia, serif; font-size: 1rem; }
.origin-copy ol { margin: 34px 0 0; padding: 0; list-style: none; }
.origin-copy li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.origin-copy li > span { color: var(--gold-dark); font-family: Georgia, serif; font-size: 1.3rem; }
.origin-copy li strong { font-family: Georgia, serif; }
.origin-copy li p { margin: 2px 0 0; font-size: 0.84rem; }

.catalog { padding: 100px 0 120px; background: var(--paper); }
.catalog-heading { margin-bottom: 52px; text-align: center; }
.catalog-heading h2 { margin-bottom: 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-image { width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--ivory); border-radius: 8px; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms cubic-bezier(.16, 1, .3, 1); }
.product:hover .product-image img { transform: scale(1.035); }
.product:last-child .product-image img { transform: scale(1.45); }
.product:last-child:hover .product-image img { transform: scale(1.5); }
.product h3 { margin: 18px 0 7px; font-size: 1.25rem; }
.product p { margin-bottom: 0; font-size: 0.84rem; }

.community { padding: 86px 0; overflow: hidden; background: var(--ivory); }
.community-grid { display: grid; grid-template-columns: 0.8fr 0.55fr 0.8fr; align-items: center; gap: 54px; }
.community-copy h2 { max-width: 12ch; }
.community-copy > p:not(.section-label) { max-width: 42ch; font-family: Georgia, serif; }
.community-photo img { width: 100%; height: auto; }
.community-list { display: grid; }
.community-list p { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 0; padding: 18px 0; color: var(--ink); font-weight: 700; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.community-list span { color: var(--gold-dark); font-size: 1.7rem; }

.wholesale { padding: 70px 0; color: var(--paper); background: var(--forest-soft); }
.wholesale-grid { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 54px; }
.wholesale .section-label { color: var(--gold); }
.wholesale h2 { margin-bottom: 10px; color: var(--paper); font-size: 2.6rem; }
.wholesale p:not(.section-label) { max-width: 42ch; margin-bottom: 0; color: rgba(255, 253, 247, 0.8); }
.sizes { display: grid; grid-template-columns: repeat(3, 1fr); }
.sizes div { padding: 4px 24px; text-align: center; border-right: 1px solid rgba(231, 180, 48, 0.45); }
.sizes strong, .sizes span { display: block; }
.sizes strong { color: var(--gold); font-family: Georgia, serif; font-size: 3.8rem; line-height: 0.9; }
.sizes span { font-size: 0.7rem; text-transform: uppercase; }

.site-footer { position: relative; padding: 48px 0; overflow: hidden; color: var(--paper); background: var(--forest); border-top: 1px solid rgba(231, 180, 48, 0.35); }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.8fr 1.2fr auto; align-items: center; gap: 48px; }
.footer-brand img { width: 65px; height: 96px; object-fit: contain; }
.contact-list { display: grid; gap: 8px; padding-left: 45px; border-left: 1px solid var(--gold); }
.contact-list a, .contact-list address { color: var(--paper); font-size: 0.9rem; font-style: normal; }
.line-bee, .footer-bee { height: auto; }
.footer-bee { position: absolute; right: 5%; bottom: -35%; width: 300px; opacity: 0.22; }
.platform-footer { padding: 18px 32px; color: rgba(255, 253, 247, 0.72); background: #090d07; border-top: 1px solid rgba(231, 180, 48, 0.18); }
.platform-footer a { width: fit-content; display: flex; align-items: center; gap: 10px; margin-inline: auto; font-size: 0.78rem; transition: color 180ms ease; }
.platform-footer a:hover { color: var(--paper); }
.platform-footer img { width: 30px; height: 30px; object-fit: contain; }
.platform-footer strong { color: var(--paper); }
.platform-url { padding-left: 10px; border-left: 1px solid rgba(231, 180, 48, 0.38); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity 560ms ease, transform 560ms cubic-bezier(.16, 1, .3, 1); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.65rem; }
  .cooperative-copy { gap: 48px; }
  .principles article { grid-template-columns: 86px 1fr; gap: 16px; padding-inline: 20px; }
  .principles img { width: auto; height: 92px; }
  .origin-grid { gap: 55px; }
  .collection-grid { grid-template-columns: 0.9fr 1.1fr; gap: 30px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid article { min-height: 144px; padding: 18px 32px; border-bottom: 1px solid var(--line); }
  .benefit-grid article:nth-child(even) { border-right: 0; }
  .benefit-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 28px; }
  .community-grid { grid-template-columns: 0.8fr 0.65fr; }
  .community-list { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .community-list p { padding: 18px 14px; border-right: 1px solid var(--line); }
  .wholesale-grid { grid-template-columns: 1fr 1fr; }
  .wholesale-grid > .button { grid-column: 2; justify-self: start; }
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 0.68rem; }
  .desktop-nav .desktop-cta { padding-inline: 16px; }
}

@media (max-width: 760px) {
  .shell-wide { width: min(100% - 32px, 1220px); }
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2.25rem; }
  .site-header { height: 88px; }
  .brand img { width: 42px; height: 60px; }
  .brand span { font-size: 1.25rem; }
  .desktop-nav { display: none; }
  .menu-button { position: absolute; top: 18px; right: 16px; width: 48px; display: grid; }
  .menu-button span { width: 31px; height: 3px; }
  .menu-panel { padding-inline: 32px; }
  .hero { min-height: 760px; align-items: end; }
  .hero-image { object-position: 66% center; }
  .hero-scrim { background: linear-gradient(180deg, rgba(11, 17, 7, 0.34) 0%, rgba(11, 17, 7, 0.7) 42%, rgba(11, 17, 7, 0.98) 76%); }
  .hero-inner { padding-top: 180px; padding-bottom: 78px; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { max-width: 13ch; }
  .hero-copy > p { max-width: 37ch; font-size: 1rem; }
  .button { min-height: 52px; padding-inline: 22px; }
  .overlap-panel { margin-top: -22px; border-radius: 18px 18px 0 0; }
  .cooperative { padding: 68px 0 64px; }
  .origin-grid, .collection-grid, .community-grid, .wholesale-grid { grid-template-columns: 1fr; }
  .cooperative-grid, .origin-grid { gap: 48px; }
  .cooperative-copy { grid-template-columns: 1fr; gap: 18px; }
  .cooperative-intro { padding-top: 0; }
  .principles { grid-template-columns: 1fr; }
  .principles article { grid-template-columns: 80px minmax(0, 1fr); min-height: 132px; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(157, 99, 29, 0.42); }
  .principles article:last-child { border-bottom: 0; }
  .principle-icon { width: 80px; height: 92px; }
  .collection-feature { border-radius: 16px 16px 0 0; }
  .collection-feature { background-position: 72% center; }
  .collection-feature::before { background: linear-gradient(180deg, rgba(10, 15, 7, 0.38) 0%, rgba(10, 15, 7, 0.7) 36%, rgba(10, 15, 7, 0.97) 66%, rgba(10, 15, 7, 0.99) 100%); }
  .collection-grid { gap: 42px; padding-top: 64px; padding-bottom: 68px; }
  .collection-image { grid-row: 1; }
  .collection-image img { width: 108%; transform: translate(-3%, 0) rotate(-1.5deg); }
  .collection-copy h2 { font-size: 2.15rem; }
  .collection-copy h3 { font-size: 2.25rem; }
  .source-list div { padding-inline: 10px; }
  .benefit-strip { border-radius: 16px 16px 0 0; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid article { grid-template-columns: 76px minmax(0, 1fr); padding: 18px; border-bottom: 1px solid var(--line); }
  .benefit-icon { width: 76px; height: 76px; }
  .benefit-grid article:nth-child(even) { border-right: 0; }
  .benefit-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
  .origin { padding: 82px 0; }
  .origin-gallery { min-height: 440px; }
  .origin-main { height: 405px; }
  .origin-detail { width: 165px; height: 265px; }
  .catalog { padding: 80px 0 92px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 16px; }
  .community { padding: 70px 0; }
  .community-grid { gap: 36px; }
  .community-photo { max-width: 420px; }
  .community-list { grid-column: auto; grid-template-columns: 1fr; }
  .community-list p { border-right: 0; }
  .wholesale { padding: 62px 0; }
  .sizes div { padding-inline: 12px; }
  .sizes strong { font-size: 3.2rem; }
  .wholesale-grid > .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-list { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid var(--gold); }
  .site-footer .button { justify-self: start; }
}

@media (max-width: 430px) {
  h1 { font-size: 2.15rem; }
  .hero { min-height: 720px; }
  .hero-inner { padding-bottom: 62px; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .principles h3 { font-size: 1.05rem; }
  .principles p { font-size: 0.82rem; }
  .product h3 { font-size: 1.05rem; }
  .product p { font-size: 0.78rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article:nth-last-child(-n + 2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-grid article:last-child { border-bottom: 0; }
  .origin-gallery { min-height: 390px; }
  .origin-main { width: calc(100% - 50px); height: 360px; }
  .source-list { gap: 0; }
  .source-list div { padding-inline: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .menu-panel, .menu-button span, .motion-ready .reveal, .product-image img, .button, .button-gold::before, .desktop-nav .desktop-cta, .desktop-nav .desktop-cta::before, .button-arrow { transition: none; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .button-gold:is(:hover, :focus-visible)::before,
  .desktop-nav .desktop-cta:is(:hover, :focus-visible)::before { transform: none; }
  .button-gold:is(:hover, :focus-visible) .button-arrow { transform: none; }
}
