.topbar {
  background: linear-gradient(
    90deg,
    rgba(15, 76, 129, 0.96),
    rgba(70, 195, 198, 0.92)
  );
  color: #fff;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 62px;
}

.topbar p {
  margin: 0;
  font-weight: 700;
  max-width: 72ch;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch button {
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lang-switch .is-active {
  background: #fff;
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(18, 62, 92, 0.08);
  box-shadow: 0 10px 24px rgba(9, 37, 60, 0.05);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease;
}

.header__inner {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr auto;
  align-items: center;
  min-height: 90px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
}

.brand__text small {
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav,
.header__actions,
.hero__actions,
.hero__trust,
.footer-bottom,
.footer-grid,
.hero__grid,
.about-grid,
.pricing-layout,
.event-pack__grid,
.order-layout,
.topbar__inner {
  display: flex;
}

.desktop-nav {
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.desktop-nav a {
  font-weight: 700;
  color: var(--navy-deep);
}

.header__actions {
  gap: 12px;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  color: var(--navy-deep);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 34, 0.45);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.26s ease,
    visibility 0.26s ease;
}

.mobile-nav.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  margin-left: auto;
  width: min(86vw, 340px);
  height: 100%;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(22px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
  opacity: 1;
}

.mobile-nav__panel a,
.mobile-nav__panel .btn,
.mobile-nav__panel .menu-close {
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

.mobile-nav__panel a:hover,
.mobile-nav__panel .btn:hover {
  transform: translateX(3px);
}

.mobile-nav__panel .btn {
  margin-top: 6px;
}

.menu-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 2rem;
}

.hero__grid {
  align-items: center;
  gap: 64px;
}

.hero__content {
  flex: 1 1 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__content .display {
  max-width: 10.5ch;
}

.hero__content .lead {
  max-width: 34ch;
}

.hero__microtrust {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero__visual {
  flex: 1 1 0;
  max-width: 620px;
  margin-left: auto;
  display: grid;
  gap: 18px;
}

.hero__actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__trust {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-showcase {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  perspective: 1000px;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 22%,
      rgba(255, 236, 188, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 18%,
      rgba(120, 224, 229, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 62% 70%,
      rgba(255, 255, 255, 0.08),
      transparent 34%
    );
  opacity: 0.9;
  transform: translate(var(--hero-light-x, 0), var(--hero-light-y, 0));
  transition:
    transform 0.5s ease,
    opacity 0.35s ease;
  will-change: transform, opacity;
}

.hero-showcase:hover::before {
  opacity: 1;
}

/* =========================================================
   HERO TEXT REVEAL
========================================================= */

.hero__content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: opacity, transform;
}

.hero__content h1,
.hero__content .display {
  animation-delay: 0.12s;
}

.hero__content p,
.hero__content .lead {
  animation-delay: 0.24s;
}

.hero__actions {
  animation-delay: 0.36s;
}

.hero__trust {
  animation-delay: 0.48s;
}

.hero__microtrust {
  animation-delay: 0.6s;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-showcase img {
  width: 100%;
  aspect-ratio: 5 / 5.2;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
  transition: transform 0.55s ease;
  will-change: transform;
}

.hero-showcase:hover img {
  transform: scale(1.035);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 58% 58%,
      rgba(255, 255, 255, 0.22),
      transparent 58%
    ),
    linear-gradient(180deg, rgba(4, 22, 36, 0.02), rgba(4, 22, 36, 0.12));
  transition: opacity 0.35s ease;
}

.hero-showcase:hover::after {
  opacity: 0.92;
}

.hero-note {
  position: absolute;
  z-index: 2;
  max-width: 250px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    0 8px 20px rgba(10, 24, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    opacity 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease;
  will-change: transform, opacity;
}

.hero-note strong {
  display: block;
  color: var(--navy-deep);
  font-size: 1.2rem;
  margin-bottom: 8px;
  transition: transform 0.25s ease;
}

.hero-note p {
  margin: 0;
  color: rgba(28, 49, 66, 0.92);
  line-height: 1.5;
}

.hero-note:hover {
  transform: translateY(-6px) scale(1.03);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 18px 40px rgba(10, 40, 70, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-note:hover strong {
  transform: translateY(-1px);
}

.hero-note--top {
  top: 54px;
  left: 22px;
  max-width: 235px;
}

.hero-note--bottom {
  right: 18px;
  bottom: 20px;
  max-width: 230px;
}

.hero-caption {
  padding: 22px 24px;
}

.hero-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.hero-caption p {
  margin: 0;
  color: var(--text-muted);
}

.abundance-cue {
  padding: 8px 0 0;
}

.abundance-cue__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95),
    rgba(242, 251, 253, 0.95)
  );
  box-shadow: 0 16px 32px rgba(15, 76, 129, 0.08);
}

.about-grid {
  gap: 30px;
  align-items: center;
}

.about-grid > * {
  flex: 1 1 0;
}

.about-points {
  display: grid;
  gap: 10px;
  color: var(--navy-deep);
  font-weight: 700;
}

.about-card {
  padding: 16px;
}

.about-card img {
  border-radius: 20px;
  margin-bottom: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
}

.gallery-grid,
.menu-grid,
.trust-strip__grid,
.zones-grid,
.steps-grid,
.faq-list {
  display: grid;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  filter: saturate(1.02) contrast(1.01);
}

.gallery-grid figcaption {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-strip__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card,
.step-card,
.pricing-aside__card,
.zone-card,
.corridor-card,
.order-rules,
.payment-card,
.faq-item,
.order-form-card {
  padding: 24px;
}

.menu-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dish-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 62, 92, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.dish-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dish-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 42%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dish-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.28s ease;
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 54px rgba(8, 34, 54, 0.16);
  border-color: rgba(70, 195, 198, 0.18);
  filter: saturate(1.02);
}

.dish-card:hover::before,
.dish-card:hover::after {
  opacity: 1;
}

.dish-card__media {
  position: relative;
  overflow: hidden;
  background: #f7fafc;
}

.dish-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, rgba(7, 24, 39, 0) 52%, rgba(7, 24, 39, 0.14) 100%);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.dish-card:hover .dish-card__media::before {
  opacity: 1;
}

.dish-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 24, 39, 0) 58%,
    rgba(7, 24, 39, 0.08) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.dish-card:hover .dish-card__media::after {
  opacity: 0.9;
}

.dish-card__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.01);
  transform-origin: center center;
  transition: transform 0.48s ease;
  will-change: transform;
}

.dish-card:hover .dish-card__media img {
  transform: scale(1.065);
}

.dish-card__body {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.dish-card__body h3 {
  margin: 10px 0 8px;
  color: var(--navy-deep);
  font-size: 1.35rem;
  transition:
    color 0.26s ease,
    transform 0.26s ease;
}

.dish-card:hover .dish-card__body h3 {
  color: var(--navy);
  transform: translateY(-1px);
}

.dish-card__body p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.6;
}

.dish-card__body small {
  color: var(--navy);
  font-weight: 700;
}

.dish-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(229, 122, 93, 0.12);
  color: var(--coral);
  font-weight: 800;
  font-size: 0.82rem;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    background 0.26s ease;
}

.dish-card:hover .dish-badge {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(229, 122, 93, 0.12);
}

.pricing-layout {
  align-items: flex-start;
  gap: 24px;
}

.pricing-table-wrap {
  flex: 1 1 auto;
  padding: 20px;
}

.pricing-chip {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
  margin-bottom: 14px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 22px;
}

.pricing-table thead th {
  background: linear-gradient(90deg, var(--navy), var(--turquoise));
  color: #fff;
  padding: 18px 16px;
  text-align: left;
}

.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(18, 62, 92, 0.08);
  background: #fff;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-aside {
  width: min(340px, 100%);
  display: grid;
  gap: 18px;
}

.event-pack__grid {
  align-items: center;
  gap: 28px;
}

.event-pack__media,
.event-pack__content {
  flex: 1 1 0;
}

.event-pack__media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  filter: saturate(1.02) contrast(1.01);
}

.event-pack__price {
  display: grid;
  gap: 6px;
  margin: 18px 0;
}

.event-pack__price strong {
  font-size: 2rem;
  color: var(--navy-deep);
}

.zones-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.zone-card--accent {
  background: linear-gradient(180deg, var(--navy), #154c7b);
  color: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.zone-card--accent * {
  color: #fff;
}

.zone-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.zone-card__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.corridor-card {
  margin-top: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(70, 195, 198, 0.18);
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  margin-bottom: 12px;
}

.order-layout {
  align-items: flex-start;
  gap: 28px;
}

.order-aside {
  width: min(380px, 100%);
  display: grid;
  gap: 18px;
}

.order-form-card {
  flex: 1 1 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field--full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-note,
.form-contact {
  color: var(--text-muted);
}

.faq-list {
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  font-weight: 800;
  color: var(--navy-deep);
}

.faq-panel {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.is-open .faq-panel {
  display: block;
}

.site-footer {
  padding: 50px 0 24px;
  background: #0e2943;
  color: #eaf5fb;
}

.footer-grid {
  justify-content: space-between;
  gap: 26px;
}

.footer-grid > div {
  flex: 1 1 0;
}

.footer-grid h3,
.footer-bottom p,
.footer-grid li,
.footer-grid a {
  color: #eaf5fb;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.34);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
  animation: whatsappPulse 2.6s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
  filter: brightness(1.03);
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(
    180deg,
    rgba(14, 41, 67, 0),
    rgba(14, 41, 67, 0.08) 28%,
    rgba(14, 41, 67, 0.18) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}

.mobile-sticky-cta .btn {
  width: 100%;
  justify-content: center;
  box-shadow: 0 18px 36px rgba(15, 76, 129, 0.2);
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================
   SECTION REVEAL
========================================================= */

.section-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.992);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================
   HERO TEXT GPU SMOOTHING
========================================== */

.hero__content h1,
.hero__content p,
.hero__actions,
.hero__trust,
.hero__microtrust {
  will-change: transform, opacity;
}

/* ==========================================
   PREMIUM STICKY HEADER
========================================== */

.site-header .brand__mark,
.site-header .brand__text strong,
.site-header .desktop-nav a,
.site-header .header__actions .btn {
  transition:
    transform 0.24s ease,
    opacity 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(18, 62, 92, 0.1);
  box-shadow: 0 16px 34px rgba(9, 37, 60, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled .header__inner {
  min-height: 78px;
}

.site-header.is-scrolled .brand__mark {
  transform: scale(0.92);
}

.site-header.is-scrolled .brand__text strong {
  transform: translateY(-1px);
}

.site-header.is-scrolled .desktop-nav a {
  opacity: 0.9;
}

.site-header.is-scrolled .header__actions .btn--ghost {
  background: rgba(15, 76, 129, 0.05);
  border-color: rgba(15, 76, 129, 0.08);
}

.site-header.is-scrolled .header__actions .btn--primary {
  box-shadow: 0 10px 22px rgba(15, 76, 129, 0.14);
}

/* ==========================================
   HERO CTA PREMIUM
========================================== */

.hero__actions .btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
  will-change: transform;
}

.hero__actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 32%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translateX(-130%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.hero__actions .btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.01);
}

.hero__actions .btn:hover::after {
  transform: translateX(130%);
}

.hero__actions .btn--primary:hover {
  box-shadow: 0 18px 34px rgba(15, 76, 129, 0.18);
}

.hero__actions .btn--ghost:hover {
  box-shadow: 0 14px 28px rgba(9, 37, 60, 0.08);
  border-color: rgba(15, 76, 129, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

@media (min-width: 901px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: block;
  }

  .whatsapp-fab {
    bottom: 84px;
  }

  .site-header.is-scrolled .header__inner {
    min-height: 74px;
  }

  .site-header.is-scrolled .brand__mark {
    transform: scale(0.9);
  }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero-showcase,
  .hero__content > *,
  .hero__content h1,
  .hero__content .display,
  .hero__content p,
  .hero__content .lead,
  .hero__actions,
  .hero__trust,
  .hero__microtrust,
  .dish-card,
  .section-reveal,
  .section-reveal.is-visible,
  .whatsapp-fab {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-showcase img,
  .hero-note,
  .dish-card__media img,
  .dish-card__body h3,
  .dish-badge,
  .mobile-sticky-cta,
  .hero__actions .btn,
  .hero__actions .btn::after,
  .mobile-nav,
  .mobile-nav__panel,
  .mobile-nav__panel a,
  .mobile-nav__panel .btn,
  .mobile-nav__panel .menu-close,
  .site-header,
  .site-header .brand__mark,
  .site-header .brand__text strong,
  .site-header .desktop-nav a,
  .site-header .header__actions .btn {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}
/* ==========================================
   HEADER / LOGO RESPONSIVE POLISH
========================================== */

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: minmax(150px, 210px) 1fr auto;
    gap: 14px;
  }

  .brand__mark {
    width: 96px;
    height: 96px;
  }

  .brand__text strong {
    font-size: 1.42rem;
  }

  .desktop-nav {
    gap: 14px;
  }
}

@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: minmax(140px, 190px) 1fr auto;
    min-height: 82px;
  }

  .brand__mark {
    width: 84px;
    height: 84px;
    border-radius: 16px;
  }

  .brand__text strong {
    font-size: 1.34rem;
  }

  .brand__text small {
    font-size: 0.86rem;
  }

  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a {
    font-size: 0.95rem;
  }

  .header__actions {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .header__inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .desktop-nav,
  .header__actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .brand {
    gap: 12px;
  }

  .brand__mark {
    width: 68px;
    height: 68px;
    border-radius: 14px;
  }

  .brand__text strong {
    font-size: 1.22rem;
  }

  .brand__text small {
    font-size: 0.8rem;
    max-width: 24ch;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 0;
  }

  .header__inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand__mark {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .brand__text strong {
    font-size: 1.08rem;
  }

  .brand__text small {
    font-size: 0.74rem;
  }

  .menu-toggle {
    font-size: 1.45rem;
  }
}
