:root {
  --sky: #81dbf5ff;
  --sky-deep: #6eb0e0;
  --navy: #003366;
  --ink: #111111;
  --paper: #ffffff;
  --mist: #f4f7fa;
  --frame: 28px;
  --font-brand: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  min-height: auto;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.55;
  background:
    linear-gradient(var(--sky), var(--sky)) left top / var(--frame) 100% no-repeat,
    linear-gradient(var(--sky), var(--sky)) right top / var(--frame) 100% no-repeat,
    var(--paper);
}

/* Only the home page (with .hero) fills the viewport */
body:has(.hero) {
  min-height: 100vh;
  min-height: 100dvh;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: absolute;
  inset: 0 var(--frame);
  z-index: -1;
  pointer-events: none;
  background-color: var(--paper);
  background-image: url("../img/pattern.svg");
  background-size: 220px 220px;
  opacity: 0.18;
}

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

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

.site-shell {
  min-height: auto;
  display: flex;
  flex-direction: column;
  margin: 0 var(--frame);
  background: transparent;
}

body:has(.hero) .site-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  padding-top: max(0.85rem, env(safe-area-inset-top));
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--sky) 45%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  animation: floaty 4.5s ease-in-out infinite;
}

.brand__wordmark {
  display: grid;
  line-height: 0.92;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__wordmark--image {
  display: block;
  line-height: 0;
  font-size: 0;
}

.brand__wordmark--image img {
  display: block;
  height: 2.35rem;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.brand__wordmark span:first-child {
  position: relative;
  width: fit-content;
}

.brand__wordmark span:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: -4px;
  bottom: -2px;
  height: 7px;
  background: var(--sky);
  border-radius: 999px;
  transform: scaleX(0.2);
  transform-origin: left center;
  animation: brush-in 1s var(--ease) 0.25s forwards;
}

.nav-toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.55rem 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--sky);
  color: var(--navy);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}

.socials a:hover {
  background: var(--sky);
  color: var(--navy);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* Content pages: size to content so the footer stays compact */
main.page {
  flex: 0 1 auto;
}

.page {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.page-intro {
  max-width: 38rem;
  margin-bottom: 2.5rem;
  animation: rise 0.8s var(--ease) both;
}

.servicios-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
  /* Match .page left edge so text stays in place */
  padding: 2.5rem 0 2.5rem calc((100% - min(var(--max), 100% - 2.5rem)) / 2);
  margin: 0;
}

.servicios-hero .page-intro {
  flex: 0 1 min(38rem, calc(60% - 1rem));
  max-width: min(38rem, calc(60% - 1rem));
  margin-bottom: 0;
  animation: rise 0.8s var(--ease) both;
}

.servicios-hero__image {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: 180px;
  height: auto;
  margin: 0;
  /* Right edge sits on site-shell edge = start of blue frame */
  object-fit: contain;
}

.page--servicios {
  padding-top: 0;
}

.page-intro h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.page-intro p {
  margin: 0;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--ink) 78%, white);
}

/* Hero — Inicio */
.hero {
  position: relative;
  flex: 1;
  min-height: calc(100vh - 190px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__stage {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 3rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero__brand {
  margin: 0 0 1.25rem;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: rise 0.9s var(--ease) both;
}

.hero__brand--image {
  font-size: unset;
  font-weight: normal;
  line-height: 0;
  letter-spacing: 0;
  text-transform: none;
}

.hero__brand--image img {
  display: block;
  width: min(100%, 420px);
  height: auto;
}

.hero__brand .algo {
  position: relative;
  display: inline-block;
}

.hero__brand .algo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.14em;
  background: var(--sky);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: brush-in 1.05s var(--ease) 0.35s forwards;
}

.hero__brand--image .algo::after {
  display: none;
}

.hero__headline {
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero__support {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: 1.12rem;
  animation: rise 0.9s var(--ease) 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.28s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 2.5px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.02em;
  touch-action: manipulation;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--sky);
  color: var(--navy);
}

.btn--ghost {
  background: var(--paper);
}

.hero__visual {
  justify-self: center;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: rise 1s var(--ease) 0.15s both;
}

.hero__visual img,
.hero__visual svg {
  width: 88%;
  height: auto;
  filter: drop-shadow(0 18px 28px color-mix(in srgb, var(--navy) 18%, transparent));
  animation: floaty 5s ease-in-out infinite;
}

.section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0 3.5rem;
}

.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section > p {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

/* Nosotros (and other short content pages with the about video):
   fill the viewport, keep the footer compact at the bottom,
   and center the page content in the remaining space. */
body:has(.about-media) {
  min-height: 100vh;
  min-height: 100dvh;
}

body:has(.about-media) .site-shell {
  min-height: 100vh;
  min-height: 100dvh;
}

body:has(.about-media) main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

body:has(.about-media) .site-footer {
  margin-top: 0;
  flex-shrink: 0;
}

.about-media {
  width: min(50%, 280px);
  justify-self: center;
}

.about-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 1.4rem;
  background: #000;
}

.prose p + p {
  margin-top: 1rem;
}

.flavor-grid {
  display: grid;
  width: 80%;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}

.flavor {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  container-type: inline-size;
  container-name: flavor-card;
  /* aspect ratio matches Agua.png — 958×572 ≈ 5:3 */
  aspect-ratio: 958 / 572;
  padding: 1.1rem 1.1rem 1.35rem;
  border: 2.5px solid var(--ink);
  border-radius: 1.4rem;
  overflow: hidden;
  /* background-color: color-mix(in srgb, var(--paper) 82%, var(--sky)); */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s var(--ease);
}

/* Darken overlay so text stays readable over any image */
.flavor::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(0, 0, 0, 0.55) 100%
  ); */
  border-radius: inherit;
  pointer-events: none;
}

/* All card children sit above the overlay */
.flavor > * {
  position: relative;
  z-index: 1;
}

.flavor:hover {
  transform: translateY(-4px);
}

/* .flavor--agua  { background-color: #80dcf4; }
.flavor--crema { background-color: #f280f9; }
.flavor--dulces-premium { background-color: #fc5475; }
.flavor--mixologia { background-color: #71edd7; } */

.flavor h3 {
  position: absolute;
  top: var(--title-y, 1.1rem);
  left: var(--title-x, 1.1rem);
  z-index: 2;
  margin: 0;
  font-family: var(--font-brand);
  /* Scales with card width (~1.875rem at ~400px wide) */
  font-size: 7.0cqw;
  /* Controls space between lines created by <br> — override with data-title-line-height */
  line-height: var(--title-line-height, 0.95);
  text-transform: uppercase;
  color: #4a4848;
}

.flavor__list {
  position: absolute;
  top: var(--list-y, 45%);
  left: var(--list-x, 1.1rem);
  right: 1.1rem;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flavor__list.is-two-cols {
  grid-template-columns: 0.75fr 2fr;
}

.flavor__list li {
  position: relative;
  margin: 0;
  padding-left: 0.55em;
  /* Scales with card width (~0.98rem+4pt at ~400px wide) */
  font-size: 4.5cqw;
  line-height: 1.35;
  color: #000000;
}

.flavor__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  z-index: -1;
  width: 0.95em;
  height: 0.95em;
  background-image: var(--vignette, url("../img/image17.png"));
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-bottom: 2px solid color-mix(in srgb, var(--sky) 70%, white);
}

.service-list strong {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--sky);
  border: 2px solid var(--ink);
  font-family: var(--font-brand);
  font-weight: 600;
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.service-photo {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin-top: 0.85rem;
  border-radius: 1rem;
  object-fit: cover;
}

.coverage-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.zone {
  padding: 1.25rem 1.35rem;
  border-left: 6px solid var(--sky);
  background: color-mix(in srgb, var(--paper) 70%, var(--mist));
}

.zone h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-brand);
  text-transform: uppercase;
}

.zone p {
  margin: 0;
}

.page-figure {
  display: flex;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: 0 auto 2.5rem;
}

.page-figure img {
  width: auto;
  height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border: none;
  border-radius: 0;
  background: transparent;
}

.page-figure figcaption {
  margin-top: 0.65rem;
  text-align: center;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ink) 70%, white);
}

.contacto-layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  width: 100%;
  display: grid;
  gap: 1.15rem;
}

.contacto-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  justify-self: end;
  object-fit: contain;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 800;
  font-size: 0.98rem;
}

.form-field label span {
  color: var(--navy);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2.5px solid var(--ink);
  border-radius: 0.9rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  resize: vertical;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sky) 55%, transparent);
}

.form-field input:invalid:not(:placeholder-shown):not(:focus),
.form-field textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #c62828;
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #c62828;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 65%, white);
}

.contact-form .btn {
  justify-self: start;
  cursor: pointer;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  font-weight: 700;
}

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

.form-status.is-ok {
  color: var(--navy);
}

/* Footer */
.site-footer {
  margin-top: 0;
  flex-shrink: 0;
  padding: 0 0 0.75rem;
}

.footer-stripes {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.65rem;
}

.footer-stripes span:nth-child(1) {
  height: 3px;
  background: var(--sky);
}

.footer-stripes span:nth-child(2),
.footer-stripes span:nth-child(3) {
  height: 7px;
  background: var(--navy);
}

.footer-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
  padding-bottom: env(safe-area-inset-bottom);
  font-weight: 700;
  font-size: 0.92rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1.5rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact p {
  margin: 0;
}

.footer-contact__address {
  flex: 1 1 12rem;
  max-width: 36rem;
}

.footer-contact__whatsapp {
  flex: 0 1 auto;
  text-align: right;
  white-space: nowrap;
}

.footer-inner a:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes brush-in {
  to {
    transform: scaleX(1);
  }
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 860px) {
  :root {
    --frame: 12px;
  }

  .site-header {
    padding-inline: 0.85rem;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__wordmark {
    font-size: 1rem;
  }

  .brand__wordmark--image img {
    height: 2rem;
    max-width: 120px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .header-tools {
    gap: 0.4rem;
  }

  .socials a {
    width: 38px;
    height: 38px;
  }

  .socials svg {
    width: 16px;
    height: 16px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0.5rem;
    left: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 0.65rem;
    background: var(--paper);
    border: 2.5px solid var(--ink);
    border-radius: 1rem;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--navy) 12%, transparent);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
  }

  .page,
  .section,
  .hero__stage,
  .footer-inner {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .page {
    padding: 1.75rem 0 3rem;
  }

  .page-intro {
    margin-bottom: 1.75rem;
  }

  .servicios-hero {
    flex-direction: column;
    align-items: flex-end;
    gap: 1.25rem;
    padding: 1.75rem 0 1.75rem calc((100% - min(var(--max), 100% - 1.5rem)) / 2);
  }

  .servicios-hero .page-intro {
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
    padding-right: calc((100% - min(var(--max), 100% - 1.5rem)) / 2);
  }

  .servicios-hero__image {
    max-width: 130px;
    order: -1;
  }

  .contacto-layout {
    grid-template-columns: 1fr;
  }

  .contacto-image {
    max-width: 280px;
    justify-self: center;
    order: -1;
  }

  .site-shell {
    min-height: auto;
  }

  main {
    flex: 0 0 auto;
  }

  .site-footer {
    margin-top: 1rem;
  }

  .hero {
    min-height: 0;
    flex: 0 0 auto;
  }

  .hero__stage,
  .split {
    grid-template-columns: 1fr;
  }

  .hero__stage {
    padding: 1.75rem 0 2.75rem;
    gap: 1.25rem;
    text-align: center;
  }

  .hero__brand {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero__headline,
  .hero__support {
    margin-inline: auto;
    max-width: 28ch;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    flex: 1 1 100%;
    max-width: 280px;
  }

  .hero__visual {
    order: -1;
    width: min(100%, 220px);
  }

  .section {
    padding: 0.5rem 0 2.75rem;
    text-align: left;
  }

  .split {
    gap: 1.5rem;
  }

  .split .about-media {
    width: min(50%, 220px);
    justify-self: center;
  }

  .split .hero__visual {
    order: 0;
    justify-self: center;
  }

  .coverage-map {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-list li {
    gap: 0.85rem;
    padding: 1rem 0;
  }

  .service-list strong {
    font-size: 1.05rem;
  }

  .footer-contact {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 1rem;
  }

  .footer-contact__whatsapp {
    text-align: left;
    white-space: normal;
  }

  .footer-inner {
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  :root {
    --frame: 8px;
  }

  body::before {
    background-size: 160px 160px;
  }

  .socials a {
    width: 34px;
    height: 34px;
  }

  .flavor-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero__actions .btn {
    max-width: none;
  }

  .page-intro h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .zone {
    padding: 1.1rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
