:root {
  --header-height-desktop: 96px;
  --header-height-mobile: 84px;
  --header-height: var(--header-height-desktop);
  --page-x: clamp(1.25rem, 6vw, 7rem);
  --section-y: clamp(4.25rem, 7vw, 6.75rem);
  --content-max: 1370px;
  --copy-max: 720px;
  --surface-warm: #fffdf4;
  --surface-cool: #f3faf7;
  --line-soft: rgba(4, 50, 86, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--surface-warm);
  color: var(--color-texto-principal);
  font-family: var(--font-body);
  line-height: 1.55;
}

main {
  overflow: hidden;
  background: var(--color-blanco-leche);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 16px;
  left: -9999px;
  z-index: 9999;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--color-azul-linaje);
  color: var(--color-blanco-leche);
  font-weight: 700;
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-height);
  padding: .55rem var(--page-x);
  border-bottom: 1px solid rgba(4, 50, 86, .075);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(7, 31, 61, .035);
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  width: auto;
  max-width: 118px;
  max-height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  color: var(--color-texto-suave);
  font-weight: 800;
  font-size: 1rem;
}

.site-nav a {
  position: relative;
  padding: .62rem .1rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: .36rem;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-dorado-sello);
  content: "";
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .18s ease, transform .18s ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-sm);
  background: var(--color-blanco-leche);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--color-azul-linaje);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.35rem;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.header-cta,
.btn-primary {
  background: var(--color-azul-linaje);
  color: var(--color-blanco-leche);
}

.header-cta {
  padding-inline: 1.55rem;
  box-shadow: 0 16px 34px rgba(10, 85, 144, .18);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.header-cta:focus-visible,
.btn:focus-visible,
.filter:focus-visible,
.nav-toggle:focus-visible,
.floating-whatsapp:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(227, 189, 62, .72);
  outline-offset: 4px;
}

.btn-secondary {
  background: var(--color-dorado-sello);
  color: var(--color-azul-profundo);
}

.btn-muted {
  border: 1px solid rgba(4, 50, 86, .16);
  background: rgba(4, 50, 86, .06);
  color: var(--color-azul-linaje);
}

.brand-picture,
.brand-picture img {
  display: block;
  width: 100%;
}

.brand-picture img {
  height: auto;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(233, 227, 201, .82);
  background: linear-gradient(135deg, var(--color-crema-vainilla), var(--color-blanco-leche));
  box-shadow: 0 24px 60px rgba(4, 50, 86, .14);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(4.5rem, 7vw, 6.6rem) var(--page-x);
  background:
    radial-gradient(circle at 85% 16%, rgba(33, 130, 181, .16), transparent 27rem),
    radial-gradient(circle at 18% 86%, rgba(227, 189, 62, .16), transparent 22rem),
    linear-gradient(120deg, #fffdf4 0%, #fff 46%, #f2faf6 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  max-width: var(--content-max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--color-azul-lina);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--color-azul-linaje);
  font-family: var(--font-heading);
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(4.85rem, 7.15vw, 6.35rem);
}

h2 {
  font-size: clamp(3.2rem, 5vw, 4.35rem);
}

.hero-lede {
  max-width: 680px;
  margin: 1.45rem 0 0;
  color: var(--color-texto-suave);
  font-size: 1.22rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.trust-strip span {
  padding: .55rem .95rem;
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .82);
  color: var(--color-azul-profundo);
  font-weight: 900;
}

.hero__visual {
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(4, 50, 86, .18);
  transform: translateY(.25rem);
}

.hero__visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.product-band,
.locations-section {
  padding: var(--section-y) var(--page-x);
  background:
    linear-gradient(180deg, #fff 0%, #fffdf7 48%, #fff 100%);
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--color-texto-suave);
  font-size: 1.14rem;
}

.section-heading.compact {
  margin-inline: 0;
  text-align: left;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem);
}

.filter {
  min-height: 46px;
  padding: .64rem 1.25rem;
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-pill);
  background: var(--color-blanco-leche);
  color: var(--color-azul-linaje);
  cursor: pointer;
  font-weight: 900;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.filter.active {
  background: var(--color-azul-linaje);
  color: var(--color-blanco-leche);
}

.filter:hover {
  border-color: rgba(4, 50, 86, .28);
  transform: translateY(-1px);
}

.product-groups {
  display: grid;
  gap: clamp(3rem, 6vw, 4.8rem);
  max-width: var(--content-max);
  margin: 0 auto;
}

.product-group {
  display: grid;
  gap: 1.65rem;
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line-soft);
}

.product-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.product-group__intro {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.product-group__image {
  border-radius: 28px;
}

.product-group__image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.product-group__copy {
  max-width: var(--copy-max);
}

.product-group__copy h3 {
  margin: 0;
  color: var(--color-azul-linaje);
  font-family: var(--font-heading);
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  line-height: 1;
  text-wrap: balance;
}

.product-group__copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--color-texto-suave);
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-group--cheeses .product-grid {
  grid-template-columns: minmax(245px, 360px);
  justify-content: center;
}

.upcoming-grid {
  grid-template-columns: repeat(5, minmax(170px, 1fr));
}

.product-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff 0%, #fffdf5 100%);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card::before {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--color-azul-lina), var(--color-dorado-sello));
  content: "";
}

.product-card:hover {
  border-color: rgba(10, 85, 144, .26);
  box-shadow: 0 18px 38px rgba(7, 31, 61, .13);
  transform: translateY(-2px);
}

.product-card__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(233, 227, 201, .78);
  background: linear-gradient(135deg, var(--surface-warm), var(--color-blanco-leche));
}

.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.product-card h3 {
  margin: .8rem 0 .45rem;
  color: var(--color-azul-linaje);
  font-family: var(--font-heading);
  font-size: 1.46rem;
  line-height: 1.12;
  text-wrap: balance;
}

.product-category {
  width: fit-content;
  padding: .28rem .65rem;
  border-radius: var(--radius-pill);
  background: rgba(33, 130, 181, .12);
  color: var(--color-azul-lina);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta {
  margin: 0 0 1rem;
  color: var(--color-texto-suave);
  font-weight: 700;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.benefits li {
  padding: .28rem .55rem;
  border-radius: var(--radius-pill);
  background: var(--color-crema-vainilla);
  color: var(--color-texto-principal);
  font-size: .78rem;
  font-weight: 900;
}

.status {
  margin-top: auto;
  color: var(--color-exito-natural);
  font-weight: 900;
}

.status.coming {
  color: var(--color-dorado-sello);
}

.product-card__cta {
  width: 100%;
  margin-top: .75rem;
  min-height: 44px;
  font-size: .9rem;
}

.product-card.is-coming {
  background: linear-gradient(180deg, #fff 0%, #fbfaf0 100%);
}

.product-card.is-coming::before {
  background: linear-gradient(90deg, rgba(227, 189, 62, .92), rgba(235, 182, 87, .72));
}

.product-card.is-coming .product-card__media {
  background: linear-gradient(135deg, #fffdf4, #f6f4e2);
}

.story-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 660px);
  justify-content: center;
  align-items: center;
  gap: clamp(3rem, 6vw, 6rem);
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 10% 18%, rgba(227, 189, 62, .12), transparent 20rem),
    var(--color-crema-vainilla);
}

.story-media {
  border-radius: 30px;
  background: var(--color-azul-linaje);
  box-shadow: 0 22px 56px rgba(4, 50, 86, .16);
}

.story-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.story-copy p {
  max-width: var(--copy-max);
  color: var(--color-texto-suave);
  font-size: 1.18rem;
}

.value-list {
  display: grid;
  gap: .9rem;
  margin-top: 1.7rem;
}

.value-list article {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(7, 31, 61, .045);
}

.value-list strong {
  display: block;
  color: var(--color-azul-linaje);
}

.value-list span {
  color: var(--color-texto-suave);
}

.distributor-section {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(520px, 680px);
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding: var(--section-y) var(--page-x);
  background:
    radial-gradient(circle at 12% 16%, rgba(33, 130, 181, .22), transparent 22rem),
    linear-gradient(135deg, var(--color-azul-profundo), var(--color-azul-linaje));
  color: var(--color-blanco-leche);
}

.distributor-section h2,
.distributor-section .eyebrow {
  color: var(--color-blanco-leche);
}

.distributor-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, .76);
  font-size: 1.16rem;
}

.distributor-visual {
  margin-top: 2rem;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .24);
}

.distributor-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.lead-form {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 24px;
  border: 1px solid rgba(233, 227, 201, .72);
  background: var(--color-blanco-leche);
  color: var(--color-texto-principal);
  box-shadow: var(--shadow-hero);
}

.form-group {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid rgba(233, 227, 201, .88);
}

.form-group:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.form-group legend {
  padding: 0;
  color: var(--color-azul-lina);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem 1rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--color-texto-principal);
  font-size: .95rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-texto-principal);
  padding: .78rem .9rem;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(10, 85, 144, .34);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-azul-lina);
  box-shadow: 0 0 0 3px rgba(10, 85, 144, .12);
}

.span-2 {
  grid-column: span 2;
}

.consent {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.form-status {
  margin: 0;
  min-height: 1.4rem;
  color: var(--color-azul-lina);
  font-weight: 800;
}

.form-required-note {
  margin: 0;
  color: var(--color-texto-suave);
  font-size: .84rem;
  font-weight: 750;
}

.form-required-note span,
.required-marker {
  color: #a52620;
  font-weight: 1000;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: .22rem;
}

.field-error {
  display: block;
  color: #9d211c;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.35;
}

.field-error[hidden] {
  display: none;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b42318;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .1);
}

.form-status.is-error {
  color: #9d211c;
}

.form-status.is-success {
  color: #17633a;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.consent {
  align-items: flex-start;
}

.consent > span {
  line-height: 1.45;
}

.consent a {
  color: var(--color-azul-lina);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.locations-section {
  background: #fff;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(.9rem, 2vw, 1.15rem);
  border: 1px solid var(--color-borde-suave);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff 0%, #fffdf4 100%);
  box-shadow: var(--shadow-card);
}

.location-visual {
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(4, 50, 86, .12);
}

.location-visual img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.location-panel__copy {
  display: grid;
  gap: .35rem;
}

.location-panel strong {
  display: block;
  color: var(--color-azul-linaje);
}

.location-panel span {
  color: var(--color-texto-suave);
}

.location-notice {
  margin: .65rem 0 0;
  padding-left: .8rem;
  border-left: 3px solid var(--color-dorado-sello);
  color: var(--color-azul-linaje);
  font-size: .86rem;
  font-weight: 800;
}

.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .8rem;
}

.zone-chips span {
  padding: .34rem .6rem;
  border-radius: var(--radius-pill);
  background: rgba(33, 130, 181, .12);
  color: var(--color-azul-lina);
  font-size: .78rem;
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(33, 130, 181, .12), transparent 24rem),
    linear-gradient(135deg, var(--color-crema-vainilla), #fff);
}

.contact-section > div > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--color-azul-linaje);
  font-size: 1.18rem;
}

.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  box-shadow: var(--shadow-hero);
}

.contact-form .consent,
.contact-form .btn,
.contact-form .form-status {
  grid-column: span 2;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: .8rem;
  padding: 3.2rem 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 130, 181, .18), transparent 18rem),
    var(--color-azul-profundo);
  color: rgba(255, 255, 255, .8);
  text-align: center;
}

.site-footer img {
  width: auto;
  max-width: 118px;
  max-height: 78px;
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-weight: 900;
}

.legal-header {
  grid-template-columns: auto 1fr;
}

.legal-back {
  justify-self: end;
}

.legal-main {
  overflow: visible;
  padding: 5.5rem var(--page-x) 6rem;
  background: linear-gradient(135deg, #fff 0%, var(--color-crema-vainilla) 100%);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: 4.5rem;
}

.legal-content h2 {
  margin: 2.5rem 0 .65rem;
  color: var(--color-azul-linaje);
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
}

.legal-content p {
  max-width: 760px;
  color: var(--color-texto-suave);
  font-size: 1.05rem;
}

.legal-updated {
  margin-bottom: 2rem;
  font-weight: 800;
}

.legal-content .btn {
  margin-top: 1rem;
}

.legal-note {
  margin-top: 2.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--color-dorado-sello);
  background: rgba(255, 255, 255, .7);
  font-size: .9rem !important;
}

@media (max-width: 640px) {
  .legal-main {
    padding-block: 3.5rem 4rem;
  }

  .legal-content h1 {
    font-size: 2.8rem;
  }

  .legal-content h2 {
    font-size: 1.7rem;
  }

  .legal-back {
    min-height: 44px;
    padding: .65rem 1rem;
  }
}

.floating-whatsapp {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 900;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #07351b;
  font-weight: 1000;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
  transition: transform .18s ease, box-shadow .18s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, .24);
}

.floating-whatsapp.is-recessed {
  opacity: .36;
  pointer-events: none;
  transform: translateX(72px) scale(.72);
  transition-duration: .08s;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 5.25rem;
  }

  h2 {
    font-size: 3.7rem;
  }

  .product-group__copy h3 {
    font-size: 2.9rem;
  }

  .upcoming-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }

  .distributor-section {
    grid-template-columns: minmax(280px, 440px) minmax(460px, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: var(--header-height-mobile);
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .product-group__copy h3 {
    font-size: 2.6rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-inline: 1.45rem;
  }

  .site-logo img {
    max-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: start;
    width: 100%;
    gap: .2rem;
    padding: .8rem 0 .4rem;
    background: #fff;
  }

  .site-nav.open a {
    width: 100%;
    padding: .75rem .2rem;
  }

  .hero {
    min-height: auto;
    padding-block: 3.4rem 4rem;
  }

  .hero__grid,
  .story-section,
  .distributor-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero__visual img,
  .product-group__image img,
  .story-media img,
  .distributor-visual img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .product-group__intro {
    grid-template-columns: 1fr;
  }

  .product-group__copy {
    order: -1;
  }

  .product-group--cheeses .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card__cta {
    align-self: flex-start;
    width: auto;
    max-width: calc(100% - 78px);
  }

  .location-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .location-panel .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 14px;
    font-size: .92rem;
  }

  .floating-whatsapp.is-recessed {
    transform: translateX(64px) scale(.72);
  }

  .lead-form,
  .product-card {
    scroll-margin-bottom: 96px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-x: 1.35rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.58rem;
  }

  .product-group__copy h3 {
    font-size: 2.2rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .product-grid,
  .form-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .span-2,
  .contact-form .consent,
  .contact-form .btn,
  .contact-form .form-status {
    grid-column: auto;
  }

  .product-card__content {
    padding: 1.05rem;
  }

  .product-card__media {
    aspect-ratio: 16 / 9;
  }

  .lead-form {
    border-radius: 18px;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
  }
}


/* Catalog integration */
img.brand-picture {
  height: auto;
}

.hero-product-family {
  position: relative;
  min-height: clamp(440px, 38vw, 520px);
  overflow: hidden;
  border-color: rgba(227, 189, 62, .42);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(145deg, var(--color-azul-lina) 0%, var(--color-azul-linaje) 58%, #021f38 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--color-blanco-leche);
}

.hero-product-family::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--color-dorado-sello);
  content: "";
}

.hero-product-family__products {
  position: absolute;
  inset: 1rem .65rem 4.9rem;
}

.hero-packshot {
  position: absolute;
  display: block;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, .28));
}

.hero-packshot img,
.hero-packshot source {
  display: block;
  width: 100%;
}

.hero-packshot img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-packshot--individual {
  z-index: 3;
  bottom: .5rem;
  left: 1%;
  width: 37%;
  transform: rotate(-1deg);
}

.hero-packshot--medium {
  z-index: 2;
  bottom: .6rem;
  left: 21%;
  width: 55%;
}

.hero-packshot--large {
  z-index: 1;
  right: -4%;
  bottom: -.25rem;
  width: 62%;
  transform: rotate(1.5deg);
}

.hero-product-family figcaption {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 1rem 1.35rem;
  border-top: 4px solid var(--color-dorado-sello);
  background: rgba(3, 33, 58, .96);
}

.hero-product-family figcaption strong {
  color: var(--color-dorado-sello);
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-product-family figcaption span {
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
  font-weight: 700;
  text-align: right;
}

.catalog-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto 2.2rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--color-borde-suave);
  border-bottom: 1px solid var(--color-borde-suave);
  list-style: none;
}

.catalog-facts li {
  display: grid;
  gap: .18rem;
  padding: .1rem 1.45rem;
  border-right: 1px solid var(--color-borde-suave);
  text-align: center;
}

.catalog-facts li:last-child {
  border-right: 0;
}

.catalog-facts strong {
  color: var(--color-azul-linaje);
  font-size: 1rem;
}

.catalog-facts span {
  color: var(--color-texto-suave);
  font-size: .86rem;
}

.product-group--yogurts .product-card__media {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(rgba(4, 50, 86, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 50, 86, .028) 1px, transparent 1px),
    var(--color-blanco-leche);
  background-size: 28px 28px, 28px 28px, auto;
}

.product-group--yogurts .product-card__media img {
  padding: .7rem .9rem .35rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(4, 50, 86, .15));
}

.business-benefits {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}

.business-benefits article {
  display: grid;
  gap: .2rem;
  padding: .85rem 1rem;
  border-left: 4px solid var(--color-dorado-sello);
  background: rgba(255, 255, 255, .075);
}

.business-benefits strong {
  color: var(--color-dorado-sello);
  font-size: .88rem;
  text-transform: uppercase;
}

.business-benefits span {
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
}

body.nav-open .floating-whatsapp {
  opacity: .36;
  pointer-events: none;
  transform: translateX(72px) scale(.72);
  transition-duration: .08s;
}

@media (max-width: 900px) {
  .hero-product-family {
    min-height: 440px;
  }

  .story-copy {
    order: -1;
  }

  .hero-product-family .hero-packshot img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .business-benefits {
    margin-top: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hero-product-family {
    min-height: 365px;
  }

  .hero-product-family__products {
    inset: 1rem .45rem 5.6rem;
  }

  .hero-packshot--individual {
    left: 1%;
    width: 37%;
  }

  .hero-packshot--medium {
    left: 22%;
    width: 54%;
  }

  .hero-packshot--large {
    right: -5%;
    width: 59%;
  }

  .hero-product-family figcaption {
    display: grid;
    gap: .1rem;
    min-height: 84px;
    padding: .85rem 1rem;
  }

  .hero-product-family figcaption span {
    font-size: .78rem;
    text-align: left;
  }

  .catalog-facts {
    grid-template-columns: 1fr;
    margin-bottom: 1.7rem;
    padding: .25rem 0;
  }

  .catalog-facts li {
    padding: .75rem .25rem;
    border-right: 0;
    border-bottom: 1px solid var(--color-borde-suave);
    text-align: left;
  }

  .catalog-facts li:last-child {
    border-bottom: 0;
  }

  .product-group--yogurts .product-card__media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  body.nav-open .floating-whatsapp {
    transform: translateX(64px) scale(.72);
  }
}
