:root {
  --figata-text: #f0efed;
  --figata-bg: #101012;
  --figata-accent: #b47636;
  --figata-accent-hover: #c88642;
  --figata-accent-dark: #8a5624;
  --figata-border: rgba(240, 239, 237, 0.18);
  --figata-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  --navbar-height: 76px;
  --hero-bottom-tone: rgba(8, 7, 6, 0.96);
  --nav-w-expanded: 100%;
  --nav-w-collapsed: min(clamp(760px, 78vw, 980px), calc(100vw - 32px));
  --nav-h-expanded: 76px;
  --nav-h-collapsed: 56px;
  --nav-pad-y-expanded: 20px;
  --nav-pad-y-collapsed: 10px;
  --nav-pad-x-expanded: 40px;
  --nav-pad-x-collapsed: 26px;
  --nav-gap-expanded: 30px;
  --nav-gap-collapsed: 24px;
  --nav-shift-y: 16px;
  --nav-scale-boost: 0.02;
  --seamless-fade-size: 120px;
  --seamless-fade-mask: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 1) calc(100% - var(--seamless-fade-size) - 0.5px),
    rgba(0, 0, 0, 0.84) calc(100% - var(--seamless-fade-size)),
    rgba(0, 0, 0, 0.56) calc(100% - (var(--seamless-fade-size) - 14px)),
    rgba(0, 0, 0, 0.34) calc(100% - (var(--seamless-fade-size) - 30px)),
    rgba(0, 0, 0, 0.2) calc(100% - (var(--seamless-fade-size) - 46px)),
    rgba(0, 0, 0, 0.1) calc(100% - (var(--seamless-fade-size) - 60px)),
    rgba(0, 0, 0, 0.04) calc(100% - (var(--seamless-fade-size) - 72px)),
    rgba(0, 0, 0, 0) 100%
  );
}

html {
  --nav-collapse: 0;
  --nav-collapse-inv: 1;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--figata-bg);
  color: var(--figata-text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.preview-open {
  overflow: hidden;
}

body.preview-open .site-header {
  display: none;
}

main {
  position: relative;
  isolation: isolate;
}

.top-bg {
  position: relative;
  isolation: isolate;
  background-image: url("assets/home/seamless-bg.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.top-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--seamless-fade-size);
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 18, 0) 0%,
    rgba(16, 16, 18, 1) 100%
  );
}

.top-bg > * {
  position: relative;
  z-index: 1;
}

.is-hidden-by-config {
  display: none !important;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--navbar-height);
}

.site-header[data-menu-detail-nav] {
  transform-origin: top center;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar {
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.navbar__inner {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  column-gap: calc(
    var(--nav-gap-expanded) -
      (var(--nav-gap-expanded) - var(--nav-gap-collapsed)) * var(--nav-collapse)
  );
  width: calc(
    var(--nav-w-expanded) -
      (var(--nav-w-expanded) - var(--nav-w-collapsed)) * var(--nav-collapse)
  );
  max-width: 100%;
  height: calc(
    var(--nav-h-expanded) -
      (var(--nav-h-expanded) - var(--nav-h-collapsed)) * var(--nav-collapse)
  );
  margin-inline: auto;
  padding-block: calc(
    var(--nav-pad-y-expanded) -
      (var(--nav-pad-y-expanded) - var(--nav-pad-y-collapsed)) * var(--nav-collapse)
  );
  padding-inline: calc(
    var(--nav-pad-x-expanded) -
      (var(--nav-pad-x-expanded) - var(--nav-pad-x-collapsed)) * var(--nav-collapse)
  );
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  transform-origin: top center;
  border-radius: calc(999px * var(--nav-collapse));
  background-color: rgba(14, 12, 10, calc(0.38 * var(--nav-collapse)));
  backdrop-filter: blur(calc(18px * var(--nav-collapse)))
    saturate(calc(1 + 0.06 * var(--nav-collapse)));
  -webkit-backdrop-filter: blur(calc(18px * var(--nav-collapse)))
    saturate(calc(1 + 0.06 * var(--nav-collapse)));
  box-shadow:
    0 12px 30px rgba(0, 0, 0, calc(0.28 * var(--nav-collapse))),
    inset 0 0 0 1px rgba(255, 255, 255, calc(0.12 * var(--nav-collapse)));
  transform:
    translateY(calc(var(--nav-shift-y) * var(--nav-collapse)))
    scale(calc(1 + var(--nav-scale-boost) * var(--nav-collapse)));
}

html.nav--collapsed .navbar {
  width: 100%;
  height: 100%;
}

html.nav--collapsed .navbar__inner {
  will-change: transform, backdrop-filter;
}

.navbar__brand {
  justify-self: stretch;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 30px;
  min-width: 0;
}

.navbar__brand-icon {
  width: 30px;
  height: 30px;
  padding-bottom: 4px;
  aspect-ratio: 1 / 1;
  flex: 0 0 30px;
  display: block;
  opacity: 0.98;
}

.navbar__brand-text {
  width: auto;
  height: 20px;
  aspect-ratio: 375 / 83.25;
  flex: 0 0 auto;
  display: block;
  opacity: 0.98;
}

.navbar__links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  color: var(--figata-text);
  white-space: nowrap;
}

.navbar__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 8px;
  opacity: 0.96;
  transform-origin: center;
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.8;
  transition: transform 180ms ease;
}

.navbar__links a:hover,
.navbar__links a:focus-visible {
  transform: scale(1.08);
  opacity: 1;
}

.navbar__links:hover:has(a:hover) a:not(:hover) {
  opacity: 0.4;
}

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

.navbar__actions {
  justify-self: end;
  display: flex;
  align-items: center;
}

.navbar--menu-route .navbar__inner {
  --menu-route-nav-pad-y: calc(
    var(--nav-pad-y-expanded) -
      (var(--nav-pad-y-expanded) - var(--nav-pad-y-collapsed)) * var(--nav-collapse)
  );
  grid-template-columns: minmax(max-content, auto) minmax(0, 1fr) auto;
  transition:
    border-radius 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 360ms ease,
    box-shadow 360ms ease;
}

.navbar--menu-route .navbar__brand-slot {
  justify-self: stretch;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar--menu-route .navbar__brand {
  flex: 0 1 auto;
  gap: 8px;
  transition: gap 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar--menu-route .navbar__brand-text {
  width: 92px;
  max-width: 92px;
  overflow: hidden;
  opacity: 1;
  transform: translateX(0);
  transform-origin: left center;
  transition:
    max-width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__menu-mode-toggle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(240, 239, 237, 0.76);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px) scale(0.9);
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms ease,
    background-color 180ms ease;
}

.navbar__menu-mode-toggle svg {
  width: 16px;
  height: 16px;
}

.site-header[data-menu-sticky-availability="visible"] .navbar__menu-mode-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.site-header[data-menu-sticky-mode="sticky"] .navbar__menu-mode-toggle {
  color: #f0efed;
  transform: translateX(0) scale(1) rotate(180deg);
}

.navbar__menu-mode-toggle:hover,
.navbar__menu-mode-toggle:focus-visible {
  background: rgba(240, 239, 237, 0.08);
  color: #f0efed;
}

.navbar--menu-route .navbar__center-shell {
  justify-self: stretch;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  height: 100%;
  position: relative;
  display: block;
  overflow: visible;
}

.navbar--menu-route .navbar__center-default,
.navbar--menu-route .navbar__center-sticky {
  position: absolute;
  inset-inline: 0;
  min-width: 0;
}

.navbar--menu-route .navbar__center-default {
  inset-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar--menu-route .navbar__center-sticky {
  inset-block: calc(var(--menu-route-nav-pad-y) * -1);
  display: grid;
  align-items: stretch;
  justify-items: stretch;
}

.navbar--menu-route .navbar__links-clip {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.navbar--menu-route .navbar__links {
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar--menu-route .navbar__center-sticky {
  opacity: 0;
  pointer-events: none;
  transform: translateX(46px);
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__links {
  opacity: 0;
  transform: translateX(-72px);
  pointer-events: none;
}

html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__center-sticky {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.navbar--menu-route .navbar__actions {
  position: relative;
  min-width: max-content;
}

html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__actions {
  width: 86px;
  min-width: 86px;
  transition:
    width 760ms cubic-bezier(0.42, 0, 0.18, 1),
    min-width 760ms cubic-bezier(0.42, 0, 0.18, 1);
}

html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"][data-menu-sticky-search="open"] .navbar--menu-route .navbar__actions {
  width: 348px;
  min-width: 348px;
}

.navbar--menu-route .cta-button--nav {
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 180ms ease;
}

.navbar--menu-route .navbar__mobile-actions,
.navbar--menu-route .navbar__mobile-menu-panel {
  display: none;
}

.navbar--menu-route .navbar__mobile-actions {
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.navbar--menu-route .navbar__mobile-search-tool {
  position: relative;
  flex: 0 0 auto;
  width: 38px;
  min-width: 38px;
  height: 38px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 999px;
  background: rgb(14 12 10 / 0%);
  box-shadow:
    4px 4px 9px rgba(0, 0, 0, 0.26),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    width 760ms cubic-bezier(0.42, 0, 0.18, 1),
    background-color 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease;
}

.navbar--menu-route .navbar__mobile-search-trigger {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  transition:
    transform 760ms cubic-bezier(0.42, 0, 0.18, 1),
    color 220ms ease,
    opacity 220ms ease;
}

.navbar--menu-route .navbar__mobile-action {
  flex: 0 0 auto;
}

.navbar--menu-route .navbar__mobile-action svg {
  width: 18px;
  height: 18px;
}

.navbar--menu-route .navbar__mobile-action--burger {
  color: rgba(240, 239, 237, 0.82);
  --burger-icon-size: 16.32px;
}

.navbar--menu-route .navbar__mobile-action--burger .navbar__burger-icon {
  width: var(--burger-icon-size);
  height: var(--burger-icon-size);
  overflow: visible;
}

.navbar--menu-route .navbar__mobile-action--burger .navbar__burger-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.navbar--menu-route .navbar__mobile-action--account svg {
  width: 15.3px;
  height: 15.3px;
}

.navbar--menu-route .navbar__mobile-search-panel,
.navbar--menu-route .navbar__mobile-search-clear,
.navbar--menu-route .navbar__mobile-search-filter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 239, 237, 0.44);
}

.navbar--menu-route .navbar__mobile-search-panel {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  gap: 0;
  padding: 0 0 0 2px;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  pointer-events: none;
  filter: blur(4px);
  transform: translateX(12px);
  transition:
    opacity 220ms ease,
    max-width 760ms cubic-bezier(0.42, 0, 0.18, 1),
    padding 760ms cubic-bezier(0.42, 0, 0.18, 1),
    transform 620ms cubic-bezier(0.42, 0, 0.18, 1),
    filter 320ms ease;
}

.navbar--menu-route .navbar__sticky-search-input-shell {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.navbar--menu-route .navbar__sticky-search-helper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: calc(0.42em - 1px);
  min-width: 0;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  font: inherit;
  font-size: inherit;
  font-weight: 500;
  letter-spacing: inherit;
  transition:
    opacity 160ms ease,
    visibility 0s linear 0s;
}

.navbar--menu-route .navbar__mobile-search-panel .navbar__sticky-search-helper {
  font-size: 0.85em;
}

.navbar--menu-route .navbar__sticky-search-helper-prefix {
  flex: 0 0 auto;
  color: rgba(240, 239, 237, 0.28);
}

.navbar--menu-route .navbar__sticky-search-helper-word {
  position: relative;
  display: inline-grid;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(240, 239, 237, 0.28);
}

.navbar--menu-route .navbar__sticky-search-helper-layer {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  width: max-content;
  white-space: nowrap;
}

.navbar--menu-route .navbar__sticky-search-helper-char {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 0;
  will-change: transform, opacity, filter;
}

.navbar--menu-route .navbar__mobile-search-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 0 12px 0 0;
  background: transparent;
  color: #f0efed;
  caret-color: #c28e5c;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  outline: none;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 220ms ease,
    transform 520ms cubic-bezier(0.42, 0, 0.18, 1),
    color 220ms ease;
}

.navbar--menu-route .navbar__mobile-search-input::placeholder {
  color: rgba(240, 239, 237, 0.34);
  font-weight: 500;
}

.navbar--menu-route .navbar__mobile-search-panel[data-helper-visible="false"] .navbar__sticky-search-helper {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 160ms ease,
    visibility 0s linear 160ms;
}

.navbar--menu-route .navbar__mobile-search-input::-webkit-search-decoration,
.navbar--menu-route .navbar__mobile-search-input::-webkit-search-cancel-button,
.navbar--menu-route .navbar__mobile-search-input::-webkit-search-results-button,
.navbar--menu-route .navbar__mobile-search-input::-webkit-search-results-decoration {
  display: none;
}

.navbar--menu-route .navbar__mobile-search-filter {
  flex: 0 0 auto;
  align-self: stretch;
  width: 34px;
  height: 100%;
  padding: 0;
  margin-left: 0;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    color 180ms ease,
    border-color 180ms ease;
}

.navbar--menu-route .navbar__mobile-search-filter svg {
  width: 18px;
  height: 18px;
}

.navbar--menu-route .navbar__mobile-search-filter:hover,
.navbar--menu-route .navbar__mobile-search-filter:focus-visible {
  color: #f0efed;
  border-left-color: rgba(255, 255, 255, 0.2);
}

.navbar--menu-route .navbar__mobile-search-filter:disabled {
  cursor: default;
}

.navbar--menu-route .navbar__mobile-search-clear {
  padding: 0;
  margin-inline-end: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 160ms ease,
    color 160ms ease,
    visibility 160ms ease;
}

.navbar--menu-route .navbar__mobile-search-clear svg {
  width: 16px;
  height: 16px;
}

.navbar--menu-route .navbar__mobile-search-clear.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar--menu-route .navbar__mobile-search-clear:hover,
.navbar--menu-route .navbar__mobile-search-clear:focus-visible {
  color: var(--figata-accent);
}

.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-tool {
  width: var(--mobile-search-open-width, clamp(194px, calc(100vw - 198px), 284px));
  background-color: rgba(14, 12, 10, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-trigger,
.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-trigger:hover,
.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-trigger:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translateX(1px) scale(0.985);
}

.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-panel {
  opacity: 1;
  max-width: calc(100% - 44px);
  padding-right: 0;
  pointer-events: auto;
  filter: none;
  transform: translateX(0);
  transition-delay: 185ms, 0ms, 0ms, 135ms, 135ms;
}

.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-input {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 220ms, 170ms, 0ms;
}

.site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-filter {
  color: #f0efed;
  border-left-color: rgba(255, 255, 255, 0.14);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 240ms, 170ms, 0ms, 0ms;
}

.site-header[data-menu-mobile-nav="open"] .navbar--menu-route .navbar__mobile-action--burger {
  color: rgba(240, 239, 237, 0.82);
  background: rgb(14 12 10 / 0%);
  box-shadow:
    6px 6px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.12);
}

.navbar--menu-route .navbar__mobile-menu-panel {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  --menu-mobile-panel-max-height: min(74vh, 520px);
  max-height: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform-origin: top center;
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    visibility 0s linear 420ms;
}

.navbar--menu-route .navbar__mobile-menu-links {
  margin: 0;
  padding: 20px 0 8px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.navbar--menu-route .navbar__mobile-menu-card {
  margin: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    0 6px 6px -3px rgba(0, 0, 0, 0.2),
    0 3px 3px -1.5px rgba(0, 0, 0, 0.15),
    0 1px 1px -0.5px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.navbar--menu-route .navbar__mobile-menu-link {
  min-height: 82px;
  padding: 4px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(240, 239, 237, 0.92);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.navbar--menu-route .navbar__mobile-menu-thumb {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 58%),
    linear-gradient(150deg, rgba(182, 116, 60, 0.52), rgba(26, 22, 19, 0.94));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: rgba(240, 239, 237, 0.98);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar--menu-route .navbar__mobile-menu-thumb-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.navbar--menu-route .navbar__mobile-menu-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.navbar--menu-route .navbar__mobile-menu-title {
  color: currentColor;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar--menu-route .navbar__mobile-menu-meta {
  color: rgba(240, 239, 237, 0.66);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar--menu-route .navbar__mobile-menu-chevron {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  padding-right: 15px;
  box-sizing: content-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 239, 237, 0.74);
  transition:
    color 200ms ease,
    transform 200ms ease;
}

.navbar--menu-route .navbar__mobile-menu-chevron svg {
  width: auto;
  height: 13.5px;
}

.navbar--menu-route .navbar__mobile-menu-card:hover,
.navbar--menu-route .navbar__mobile-menu-card:focus-within {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 10px 14px -7px rgba(0, 0, 0, 0.28),
    0 4px 6px -3px rgba(0, 0, 0, 0.2),
    0 1px 1px -0.5px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.navbar--menu-route .navbar__mobile-menu-link:hover,
.navbar--menu-route .navbar__mobile-menu-link:focus-visible,
.navbar--menu-route .navbar__mobile-menu-card:focus-within .navbar__mobile-menu-link {
  color: #fff;
}

.navbar--menu-route .navbar__mobile-menu-link:hover .navbar__mobile-menu-chevron,
.navbar--menu-route .navbar__mobile-menu-link:focus-visible .navbar__mobile-menu-chevron,
.navbar--menu-route .navbar__mobile-menu-card:focus-within .navbar__mobile-menu-chevron {
  color: rgba(240, 239, 237, 0.98);
  transform: translateX(1px);
}

.site-header[data-menu-mobile-nav="open"] .navbar--menu-route .navbar__inner,
.site-header[data-menu-mobile-nav="closing"] .navbar--menu-route .navbar__inner {
  border-radius: 24px;
}

.site-header[data-menu-mobile-nav="open"] .navbar--menu-route .navbar__mobile-menu-panel {
  max-height: var(--menu-mobile-panel-max-height);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s, 0s;
}

.site-header[data-menu-mobile-nav="closing"] .navbar--menu-route .navbar__mobile-menu-panel {
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
}

html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .cta-button--nav {
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px) scale(0.94);
}

.navbar__menu-tools {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  overflow: visible;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar__menu-tools {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.navbar__menu-tool {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.navbar__menu-tool svg {
  width: 18px;
  height: 18px;
}

.navbar__menu-tool:hover,
.navbar__menu-tool:focus-visible {
  transform: translateY(-1px);
}

.navbar__menu-tool:disabled {
  cursor: default;
}

.navbar--menu-route .navbar__menu-tabs-scroll {
  width: 100%;
  height: 100%;
  min-width: 0;
}

.navbar--menu-route .navbar__menu-tabs-scroll {
  display: flex;
  align-items: stretch;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  border: none;
  color: var(--figata-text);
  font-family: "Montserrat", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: #54361b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.cta-button img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-1px);
  background: #644024;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.cta-button:focus-visible,
.navbar__links a:focus-visible {
  outline: 2px solid rgba(240, 239, 237, 0.85);
  outline-offset: 3px;
}

.btn-liquid-glass {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.016);
  border: 1px solid rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px) saturate(0.9) brightness(1) url("#liquidDisplace");
  -webkit-backdrop-filter: blur(2px) saturate(0.9) brightness(1) url("#liquidDisplace");
  box-shadow:
    rgba(0,0,0,0.15) 0px 15px 36px,
    rgba(255,255,255,0.95) 0px 1px inset,
    rgba(15,23,42,0.26) 0px -1px inset,
    rgba(255,255,255,0.5) 1px 1px inset,
    rgba(186,230,253,0.3) -1px -1px inset;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.btn-liquid-glass > * {
  position: relative;
  z-index: 1;
}

.btn-liquid-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    linear-gradient(
      132deg,
      rgba(255,255,255,0.30) 0%,
      rgba(255,255,255,0.10) 34%,
      rgba(255,255,255,0.03) 65%,
      rgba(255,255,255,0.00) 100%
    ),
    radial-gradient(
      120% 95% at 2% 0%,
      rgba(255,255,255,0.24) 0%,
      rgba(255,255,255,0.00) 46%
    ),
    radial-gradient(
      120% 90% at 98% 100%,
      rgba(148,163,184,0.15) 0%,
      rgba(148,163,184,0.00) 52%
    );
  transition: opacity 160ms ease;
}

.btn-liquid-glass:hover,
.btn-liquid-glass:focus-visible {
  background: rgba(255, 255, 255, 0.016);
  border-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px) saturate(0.9) brightness(1) url("#liquidDisplace");
  -webkit-backdrop-filter: blur(2px) saturate(0.9) brightness(1) url("#liquidDisplace");
  box-shadow:
    rgba(0,0,0,0.18) 0px 17px 38px,
    rgba(255,255,255,0.95) 0px 1px inset,
    rgba(15,23,42,0.26) 0px -1px inset,
    rgba(255,255,255,0.55) 1px 1px inset,
    rgba(186,230,253,0.35) -1px -1px inset;
}

.btn-liquid-glass:hover::after,
.btn-liquid-glass:focus-visible::after {
  opacity: 1;
}

.btn-liquid-glass:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.016);
  border-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px) saturate(0.9) brightness(1) url("#liquidDisplace");
  -webkit-backdrop-filter: blur(2px) saturate(0.9) brightness(1) url("#liquidDisplace");
  box-shadow:
    rgba(0,0,0,0.12) 0px 9px 20px,
    rgba(255,255,255,0.95) 0px 1px inset,
    rgba(15,23,42,0.26) 0px -1px inset,
    rgba(255,255,255,0.5) 1px 1px inset,
    rgba(186,230,253,0.28) -1px -1px inset;
}

.btn-liquid-glass:active::after {
  opacity: 0.9;
}

.btn-liquid-glass:focus-visible {
  outline: 2px solid rgba(255, 244, 217, 0.95);
  outline-offset: 4px;
}

.cta-button--nav {
  height: 36px;
  padding: 0 14px 0 16px;
  font-size: 16px;
}

.cta-button--nav img {
  width: 18px;
  height: 18px;
}

html.nav--collapsed .navbar__actions .cta-button--nav.btn-liquid-glass {
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, calc(0.14 * var(--nav-collapse)));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, calc(0.22 * var(--nav-collapse))),
    inset 0 1px 0 rgba(255, 255, 255, calc(0.09 * var(--nav-collapse)));
}

html.nav--collapsed .navbar__actions .cta-button--nav.btn-liquid-glass::after {
  content: none;
}

html.nav--collapsed .navbar__actions .cta-button--nav.btn-liquid-glass:hover,
html.nav--collapsed .navbar__actions .cta-button--nav.btn-liquid-glass:focus-visible,
html.nav--collapsed .navbar__actions .cta-button--nav.btn-liquid-glass:active {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, calc(0.16 * var(--nav-collapse)));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, calc(0.24 * var(--nav-collapse))),
    inset 0 1px 0 rgba(255, 255, 255, calc(0.1 * var(--nav-collapse)));
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  display: grid;
  place-items: start center;
  padding: calc(var(--navbar-height) + 490px) 24px 72px;
  isolation: isolate;
  overflow: clip;
}

.hero__content {
  width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 32px;
}

.hero__eyebrow {
  margin: 0;
}

.cta-button--eyebrow {
  height: 32px;
  padding: 0 12px;
  border-radius: 99px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

.cta-button--eyebrow img {
  width: 18px;
  height: 18px;
}

.hero__title {
  margin: 0;
  max-width: 14ch;
  color: var(--figata-text);
  font-family: "Roca One", "Book Antiqua", "Palatino Linotype", Georgia, serif;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.hero__subtitle {
  margin: 0;
  width: min(760px, 100%);
  color: rgba(240, 239, 237, 0.92);
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.cta-button--hero {
  height: 46px;
  min-width: 132px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 1.05rem;
}

.cta-button--hero img {
  width: 18px;
  height: 18px;
}

.home-announcement {
  width: 100%;
  padding: 0 16px 22px;
}

.home-announcement__inner {
  width: min(1300px, 100%);
  margin-inline: auto;
}

.home-announcement__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(240, 239, 237, 0.15);
  background: rgba(29, 29, 29, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 30px rgba(0, 0, 0, 0.2);
}

.home-announcement__link.is-static {
  pointer-events: none;
}

.home-announcement__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f0efed;
  background: rgba(182, 116, 60, 0.9);
}

.home-announcement__message {
  color: rgba(240, 239, 237, 0.96);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.home-announcement--warning .home-announcement__badge {
  background: rgba(193, 83, 28, 0.95);
}

.home-announcement--info .home-announcement__badge {
  background: rgba(56, 95, 170, 0.95);
}

#mas-pedidas {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

#mas-pedidas > * {
  position: relative;
  z-index: 1;
}

.mas-pedidas__container {
  width: min(1300px, calc(100% - 32px));
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 0;
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.mas-pedidas__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title link"
    "subtitle link";
  align-items: end;
  gap: 8px 24px;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.mas-pedidas__headline {
  grid-area: title;
  margin: 0;
  color: #f0efed;
  font-size: clamp(1.3rem, 2.8vw, 2.15rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mas-pedidas__subtitle {
  grid-area: subtitle;
  margin: 0;
  color: rgba(240, 239, 237, 0.72);
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  font-weight: 500;
  line-height: 1.2;
}

.mas-pedidas__link {
  grid-area: link;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f0efed;
  font-weight: 600;
  line-height: 1;
  opacity: 0.92;
}

.mas-pedidas__link::after {
  content: "›";
  font-size: 1.25em;
  line-height: 1;
}

.mas-pedidas__grid {
  display: grid;
  grid-template-columns: repeat(4, 312px);
  justify-content: center;
  gap: 15px;
}

.mas-pedidas-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 312px;
  height: 400px;
  padding: 22px 30px 24px;
  border-radius: 20px;
  border: 0;
  background: #19191b;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.42),
    0 6px 16px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(240, 239, 237, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
}

.reload-transition-cover {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, -100.2%, 0);
  pointer-events: none;
  will-change: transform;
}

html.page-reload-transition .reload-transition-cover {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.page-reload-transition main {
  transform: translate3d(0, 200px, 0);
  will-change: transform;
}

.reload-transition-cover__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.reload-transition-cover__bg {
  fill: #143f2b;
}

.reload-transition-cover__morph-leave,
.reload-transition-cover__morph-enter {
  visibility: hidden;
}

.preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 10, 12, 0.62);
}

.preview-transition-cover {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
  pointer-events: none;
  will-change: transform;
}

.preview-transition-cover.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.preview-transition-cover__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.preview-transition-cover__bg {
  fill: #143f2b;
}

.preview-transition-cover__morph-leave,
.preview-transition-cover__morph-enter {
  visibility: hidden;
}

.preview-overlay__root {
  position: fixed;
  inset: 20px;
  width: auto;
  height: auto;
  max-width: none;
  margin: 0;
  border-radius: 28px;
  padding: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(14, 12, 10, 0.38);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
  backdrop-filter: blur(18px) saturate(1.06);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  overflow: hidden;
  will-change: transform, opacity;
}

.preview-overlay__media {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.preview-overlay__picture {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform-origin: 50% 50%;
}

.preview-overlay__image.mas-pedidas-card__image {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 240px);
  object-fit: contain;
}

.preview-overlay__info {
  min-width: 0;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 24px;
  padding: 28px;
  background: #2b2b2b;
  border: 1px solid rgba(240, 239, 237, 0.08);
  box-shadow:
    0 36px 62px rgba(0, 0, 0, 0.56),
    0 18px 30px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transform-origin: 50% 50%;
}

.preview-overlay__info-border-overlay {
  position: absolute;
  inset: 0;
  border: 0 solid #143f2b;
  border-radius: inherit;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 0;
}

.preview-overlay__info > :not(.preview-overlay__info-border-overlay) {
  position: relative;
  z-index: 1;
}

.preview-overlay__close-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 239, 237, 0.08);
  color: #f0efed;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
}

.preview-overlay__rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  padding-right: 40px;
}

.preview-overlay__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.preview-overlay__star {
  width: 19px;
  height: 19px;
}

.preview-overlay__reviews {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(240, 239, 237, 0.78);
}

.preview-overlay__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.preview-overlay__title {
  margin: 0;
  color: #f0efed;
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.preview-overlay__price.mas-pedidas-card__price {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1;
  white-space: nowrap;
  text-align: right;
}

.preview-overlay__description {
  margin: 0;
  color: rgba(240, 239, 237, 0.82);
  font-size: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.preview-overlay__availability {
  display: grid;
  gap: 8px;
}

.preview-overlay__availability-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.preview-overlay__availability-badge.is-available {
  background: rgba(42, 129, 78, 0.22);
  color: #9ce5be;
  border: 1px solid rgba(77, 201, 130, 0.4);
}

.preview-overlay__availability-badge.is-unavailable {
  background: rgba(158, 58, 41, 0.24);
  color: #ffc2b8;
  border: 1px solid rgba(216, 95, 72, 0.4);
}

.preview-overlay__soldout-reason {
  margin: 0;
  color: rgba(255, 194, 184, 0.92);
  font-size: 0.9rem;
  line-height: 1.25;
}

.preview-overlay__ingredients {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-overlay__ingredients-title {
  margin: 0;
  color: #f0efed;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.preview-overlay__ingredients-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: 210px;
  overflow: auto;
  color: rgba(240, 239, 237, 0.88);
  font-size: 0.94rem;
  line-height: 1.3;
}

.preview-overlay__ingredient-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-overlay__ingredient-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.preview-overlay__ingredient-label {
  display: inline-block;
}

.preview-overlay__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-overlay__button {
  flex: 1 1 0;
  min-height: 44px;
  border-radius: 12px;
  border: 0;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.preview-overlay__button--primary {
  background: #b6743c;
  color: #f0efed;
}

.preview-overlay__button--primary.is-available {
  background: #2e8357;
  color: #f0efed;
}

.preview-overlay__button--primary.is-unavailable {
  background: #984934;
  color: #f0efed;
}

.preview-overlay__button--secondary {
  background: rgba(240, 239, 237, 0.08);
  color: #f0efed;
  border: 1px solid rgba(240, 239, 237, 0.2);
}

.preview-overlay__button:disabled {
  opacity: 1;
  cursor: default;
}

.preview-overlay__button:hover,
.preview-overlay__close-icon:hover {
  filter: brightness(1.07);
}

.preview-overlay__button:active,
.preview-overlay__close-icon:active {
  transform: translateY(1px);
}

.mas-pedidas-card__media {
  flex: 0 0 226px;
  width: 226px;
  height: 226px;
  border-radius: 0;
  overflow: visible;
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  margin-inline: auto;
  margin-bottom: 18px;
  background: transparent;
}

.mas-pedidas-card__media.is-empty::after {
  content: "";
  width: 42%;
  max-width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(240, 239, 237, 0.18);
  opacity: 0.45;
}

.mas-pedidas-card__image {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  position: relative;
  z-index: 1;
  background: transparent;
  filter:
    drop-shadow(0px 12px 20px rgba(0, 0, 0, 0.42))
    drop-shadow(0px 22px 28px rgba(0, 0, 0, 0.22));
  transition: opacity 200ms ease;
  pointer-events: none;
  will-change: opacity;
}

.mas-pedidas-card__image--base {
  opacity: 1;
}

.mas-pedidas-card__image--hover {
  opacity: 0;
  z-index: 2;
}

.mas-pedidas-card.has-hover-image:hover .mas-pedidas-card__image--base {
  opacity: 0;
}

.mas-pedidas-card.has-hover-image:hover .mas-pedidas-card__image--hover {
  opacity: 1;
}

/* While hovering the CTA, keep the original image visible (disable card image swap). */
.mas-pedidas-card.has-hover-image:hover:has(.mas-pedidas-card__button:hover) .mas-pedidas-card__image--base {
  opacity: 1;
}

.mas-pedidas-card.has-hover-image:hover:has(.mas-pedidas-card__button:hover) .mas-pedidas-card__image--hover {
  opacity: 0;
}

.mas-pedidas-card__body {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 64px;
  margin-bottom: 8px;
}

.mas-pedidas-card__title {
  margin: 0;
  color: #f0efed;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 24px;
}

.mas-pedidas-card__description {
  margin: 0;
  color: #f0efed;
  opacity: 0.7;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 32px;
}

.mas-pedidas-card.is-unavailable .mas-pedidas-card__price {
  color: #d7a47a;
}

.mas-pedidas-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  min-height: 30px;
  margin-top: auto;
  gap: 10px 14px;
  flex-wrap: nowrap;
}

.mas-pedidas-card__price {
  margin: 0;
  color: #c28e5c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  min-height: 16px;
}

.mas-pedidas-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100px;
  height: 30px;
  min-height: 0;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: #b6743c;
  color: #f0efed;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.mas-pedidas-card__button img {
  width: 14px;
  height: 14px;
}

.mas-pedidas-card__button:hover {
  filter: brightness(1.06);
}

.mas-pedidas-card__button:active {
  transform: translateY(1px);
}

.mas-pedidas-card.is-placeholder .mas-pedidas-card__title,
.mas-pedidas-card.is-placeholder .mas-pedidas-card__description,
.mas-pedidas-card.is-placeholder .mas-pedidas-card__price {
  opacity: 0.78;
}

.delivery-section {
  width: 100%;
  margin-top: 50px;
  padding-inline: 15px;
  position: relative;
}

.delivery-shell {
  width: 100%;
  height: 700px;
  padding: 15px;
  background: #2b2b2b;
  border-radius: 52px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.delivery-card {
  position: relative;
  width: 1372px;
  max-width: 100%;
  height: 550px;
  background: #1d1d1d;
  border-radius: 40px;
  box-shadow:
    0 30px 63px rgba(0, 0, 0, 0.43),
    0 13px 29px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 54px 70px 54px 0;
  overflow: visible;
}

.delivery-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  flex: 0 1 820px;
  padding-left: 120px;
  padding-right: 80px;
}

.delivery-eyebrow {
  margin: 0;
  color: rgba(240, 239, 237, 0.8);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.delivery-title {
  margin: 14px 0 0;
  color: #f0efed;
  font-family: "Roca One", "Book Antiqua", "Palatino Linotype", Georgia, serif;
  font-size: 60px;
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.delivery-subtitle {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(240, 239, 237, 0.86);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.28;
  text-wrap: pretty;
}

.delivery-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.delivery-action {
  --delivery-icon-size: 36px;
  width: 270px;
  height: 70px;
  border-radius: 18px;
  background: #1d1d1d;
  border: 1px solid rgba(240, 239, 237, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.delivery-action__icon {
  width: auto;
  height: var(--delivery-icon-size);
  max-width: calc(var(--delivery-icon-size) * 5);
  max-height: var(--delivery-icon-size);
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.delivery-action--text span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f0efed;
}

.delivery-action--text {
  gap: 12px;
}

.delivery-action--text .delivery-action__icon {
  width: var(--delivery-icon-size);
  max-width: var(--delivery-icon-size);
}

.delivery-action[hidden] {
  display: none !important;
}

.delivery-action:hover,
.delivery-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(240, 239, 237, 0.26);
  background: #313131;
}

.delivery-action:focus-visible {
  outline: 2px solid rgba(240, 239, 237, 0.82);
  outline-offset: 3px;
}

.delivery-pills {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  width: auto;
  max-width: 100%;
}

.delivery-pill {
  margin: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #2b2b2b;
  color: rgba(240, 239, 237, 0.92);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.delivery-pill-icon,
.delivery-pill-plus {
  display: inline-block;
  flex: 0 0 auto;
  background-color: var(--figata-accent);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.delivery-pill-icon {
  width: 18px;
  height: 18px;
  background-color: var(--figata-accent);
}

.delivery-pill-icon--eta {
  -webkit-mask-image: url("assets/svg-icons/eta.svg");
  mask-image: url("assets/svg-icons/eta.svg");
}

.delivery-pill-icon--fire {
  -webkit-mask-image: url("assets/svg-icons/fire.svg");
  mask-image: url("assets/svg-icons/fire.svg");
}

.delivery-pill-icon--pin {
  -webkit-mask-image: url("assets/svg-icons/pin.svg");
  mask-image: url("assets/svg-icons/pin.svg");
}

.delivery-pill--zone {
}

.delivery-pill--zone > span:nth-child(2) {
  min-width: 0;
}

.delivery-pill-plus {
  margin-left: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask-image: url("assets/svg-icons/plus.svg");
  mask-image: url("assets/svg-icons/plus.svg");
}

.delivery-note {
  margin: 22px 0 0;
  color: rgba(240, 239, 237, 0.58);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.delivery-right {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: 44%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.delivery-box-image {
  width: 1020px;
  max-width: none;
  object-fit: contain;
  position: relative;
  right: -245px;
  top: 50%;
  transform: translateY(-50%);
  filter:
    drop-shadow(0 34px 62px rgba(0, 0, 0, 0.42))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.testimonials-section {
  width: 100%;
  margin-top: 0;
  padding: 104px 15px;
}

.testimonials-shell {
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonials-container {
  width: min(1250px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.testimonials-header {
  width: min(900px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.testimonials-header h2 {
  margin: 0;
  width: 900px;
  max-width: 100%;
  white-space: nowrap;
  text-wrap: nowrap;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.testimonials-header h2 span {
  color: #9a9a9a;
}

.testimonials-header p {
  margin: 0;
  color: #606060;
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}

.testimonials-section .testimonials-grid {
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonials-section .testimonials-grid-wrap {
  width: 100%;
  position: relative;
  margin-top: 56px;
}

.testimonials-section .masonry {
  width: 100%;
  display: flex;
  justify-content: center;
  -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 7.47642%, rgb(0, 0, 0) 49.0446%);
  mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 7.47642%, rgb(0, 0, 0) 49.0446%);
  opacity: 1;
}

.testimonials-section .masonry-grid {
  width: min(1136px, 100%);
  display: grid;
  grid-template-columns: repeat(var(--testimonials-columns, 3), minmax(200px, 362.664px));
  justify-content: center;
  gap: 24px;
}

.testimonials-section .column {
  min-width: 200px;
  max-width: 362.664px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials-section .card-wrapper {
  width: 100%;
}

.testimonials-section .card {
  width: 100%;
  min-height: 0;
  padding: 32px;
  border-radius: 32px;
  background: #2b2b2b;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 12px 48px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.testimonials-section .card-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonials-section .card-quote img {
  width: 24px;
  height: 24px;
}

.testimonials-section .card-text {
  margin: 0;
  color: #F0EFEDDB;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.testimonials-section .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.testimonials-section .user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.testimonials-section .avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 44px;
  background: linear-gradient(145deg, #ece9e5, #e3dfda);
}

.testimonials-section .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-section .user-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.testimonials-section .user-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonials-section .user-role {
  margin: 0;
  color: #8a8a8a;
  font-size: 14px;
  line-height: 1.25;
}

.testimonials-section .stars {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.testimonials-section .star {
  width: 16px;
  height: 16px;
}

.testimonials-section .star--muted {
  opacity: 0.38;
  filter: grayscale(1) saturate(0) brightness(1.45);
}

#testimonials.testimonials-section .all-access-pass__container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: clip;
  pointer-events: none;
  padding-bottom: 0;
}

#testimonials.testimonials-section #aap-testimonials.all-access-pass {
  position: sticky;
  bottom: 32px;
  z-index: 50;
  width: 284px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate3d(0px, 180px, 0px);
  will-change: transform;
  pointer-events: auto;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.374px;
  text-rendering: auto;
  color: rgb(245 245 247);
}

#testimonials.testimonials-section #aap-testimonials .all-access-pass__intro-element {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-15px, 0px, 0px) scale(1.3);
  width: 30px;
  height: 80px;
  margin-top: -40px;
  border-radius: 56px;
  background-color: rgb(42 42 45);
  opacity: 0;
}

#testimonials.testimonials-section #aap-testimonials .all-access-pass__element {
  position: relative;
  width: 100%;
  height: 56px;
  border-radius: 28px;
  transform: translate3d(0px, 0px, 0px);
  opacity: 0;
  --alpha: 0;
}

#testimonials.testimonials-section #aap-testimonials .all-access-pass__background {
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: content-box;
  z-index: -1;
  width: 40px;
  height: 40px;
  border-radius: 28px;
  background-color: rgb(42 42 45);
  box-shadow: none;
  border: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: var(--alpha);
  transform: translate3d(-50%, -50%, 0) scale(var(--scale, 1.3));
  will-change: transform;
}

#testimonials.testimonials-section #aap-testimonials .aap-text-icon-control {
  position: relative;
  width: 100%;
  height: 56px;
  border: none;
  outline: none;
  border-radius: 32px;
  background-color: transparent;
  box-shadow: none;
  color: rgb(41 151 255);
  text-rendering: auto;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: normal;
  padding: 0;
  cursor: pointer;
}

#testimonials.testimonials-section #aap-testimonials .icon-copy {
  display: block;
  box-sizing: content-box;
  color: rgb(245 245 247);
  text-rendering: auto;
  font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 21.0012px;
  letter-spacing: -0.374px;
  margin: 0 62px 0 24px;
  padding: 15px 0 16px;
  width: 198px;
  height: 21px;
  transform: translate3d(0, 0, 0) scale(0.5);
  opacity: 0;
}

#testimonials.testimonials-section #aap-testimonials .aap-text-icon-control__icon {
  position: absolute;
  left: 238px;
  right: 0;
  top: 28px;
  bottom: -8px;
  margin: 0 10px 0 0;
  width: 36px;
  height: 36px;
  padding: 9px;
  border: none;
  outline: none;
  border-radius: 50px;
  background-color: #B47636;
  color: rgb(41 151 255);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: none;
  filter: none;
  transform: translate3d(0px, -18px, 0px) scale(0);
  opacity: 0;
  will-change: transform;
}

#testimonials.testimonials-section #aap-testimonials .aap-text-icon-control__icon .icon-control {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: block;
  fill: rgb(255 255 255);
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

#testimonials.testimonials-section #aap-testimonials .aap-text-icon-control:hover .aap-text-icon-control__icon .icon-control,
#testimonials.testimonials-section #aap-testimonials .aap-text-icon-control:focus-visible .aap-text-icon-control__icon .icon-control {
  opacity: 1;
}

#testimonials.testimonials-section #aap-testimonials.is-activated .icon-copy {
  transition: opacity 0.38s ease-in-out 0.6s;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  #testimonials.testimonials-section #aap-testimonials {
    transform: translate3d(0, 0, 0) !important;
  }

  #testimonials.testimonials-section #aap-testimonials .icon-copy,
  #testimonials.testimonials-section #aap-testimonials .aap-text-icon-control__icon {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1200px) {
  .testimonials-section {
    padding-block: 90px;
  }

  .testimonials-section .testimonials-grid-wrap {
    margin-top: 46px;
  }

  .testimonials-header p {
    font-size: 17px;
  }
}

@media (max-width: 760px) {
  .testimonials-section {
    padding-block: 74px;
  }

  .testimonials-section .masonry-grid {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .testimonials-section .column {
    min-width: 0;
    max-width: none;
  }

  .testimonials-section .testimonials-grid-wrap {
    margin-top: 36px;
  }

  .testimonials-header h2 {
    white-space: normal;
    text-wrap: balance;
    font-size: clamp(1.8rem, 9.2vw, 2.4rem);
  }

  .testimonials-header p {
    font-size: 15px;
  }

  .testimonials-section .card {
    padding: 26px;
    border-radius: 24px;
    gap: 24px;
  }

  .testimonials-section .card-footer {
    flex-wrap: wrap;
  }

  #testimonials.testimonials-section #aap-testimonials {
    bottom: 20px;
    width: min(284px, calc(100vw - 48px));
  }

  #testimonials.testimonials-section .all-access-pass__container {
    padding-bottom: 0;
  }

  #testimonials.testimonials-section #aap-testimonials .aap-text-icon-control {
    width: 100%;
  }
}

@media (max-width: 1500px) {
  .delivery-card {
    padding-right: 42px;
  }

  .delivery-subtitle {
    font-size: 20px;
  }

  .delivery-box-image {
    width: 920px;
    right: -205px;
  }
}

@media (max-width: 1280px) {
  .delivery-shell {
    min-height: 700px;
    height: auto;
  }

  .delivery-card {
    display: block;
    height: auto;
    min-height: 550px;
    padding: 44px 24px;
  }

  .delivery-left {
    flex: none;
    padding-left: 56px;
    padding-right: 300px;
  }

  .delivery-title {
    font-size: 54px;
  }

  .delivery-subtitle {
    font-size: 18px;
  }

  .delivery-pills {
    flex-wrap: wrap;
  }

  .delivery-right {
    position: absolute;
    inset: 0 0 0 auto;
    align-items: center;
    width: 48%;
  }

  .delivery-box-image {
    width: 760px;
    right: -165px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.92;
  }
}

@media (max-width: 1024px) {
  .delivery-shell {
    border-radius: 42px;
  }

  .delivery-card {
    padding: 40px 22px 28px;
    overflow: hidden;
  }

  .delivery-left {
    padding-left: 26px;
    padding-right: 26px;
  }

  .delivery-right {
    position: relative;
    inset: auto;
    justify-content: center;
    margin-top: 10px;
  }

  .delivery-box-image {
    width: min(560px, 100%);
    right: auto;
    top: auto;
    transform: none;
    opacity: 1;
  }

  .delivery-pills {
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .delivery-shell {
    border-radius: 32px;
  }

  .delivery-card {
    border-radius: 30px;
    min-height: 0;
    padding: 30px 16px 20px;
  }

  .delivery-left {
    padding-left: 14px;
    padding-right: 14px;
  }

  .delivery-title {
    font-size: clamp(2.2rem, 8.4vw, 3.2rem);
  }

  .delivery-subtitle {
    margin-top: 18px;
    font-size: 17px;
  }

  .delivery-actions {
    margin-top: 22px;
    flex-wrap: wrap;
  }

  .delivery-action {
    width: min(270px, 100%);
    flex: 1 1 270px;
  }

  .delivery-pill {
    font-size: 16px;
    width: 100%;
    height: 42px;
    min-height: 42px;
  }
}

@media (max-width: 520px) {
  .delivery-shell {
    border-radius: 26px;
  }

  .delivery-card {
    border-radius: 22px;
  }

  .delivery-subtitle {
    font-size: 16px;
  }

  .delivery-pill {
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .mas-pedidas__container {
    width: min(1300px, calc(100% - 24px));
  }

  .mas-pedidas__header {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "subtitle"
      "link";
    align-items: flex-start;
    gap: 10px;
  }

  .mas-pedidas__subtitle {
    max-width: 36ch;
  }
}

@media (max-width: 520px) {
  .home-announcement {
    padding-inline: 8px;
    padding-bottom: 18px;
  }

  .home-announcement__link {
    align-items: flex-start;
    gap: 10px;
  }

  .home-announcement__badge {
    min-width: 76px;
    height: 28px;
    font-size: 11px;
  }

  .home-announcement__message {
    font-size: 14px;
  }

  .mas-pedidas__container {
    width: min(1300px, calc(100% - 16px));
  }

  .mas-pedidas__headline {
    max-width: 18ch;
  }

  .mas-pedidas__subtitle {
    max-width: 24ch;
  }

  .mas-pedidas-card {
    width: 100%;
    max-width: 312px;
    min-height: 0;
    padding: 22px 30px 24px;
    border-radius: 18px;
  }

  .mas-pedidas-card__footer {
    align-items: stretch;
  }

  .mas-pedidas-card__button {
    width: 100px;
  }
}

@media (max-width: 1331px) {
  .mas-pedidas__grid {
    grid-template-columns: repeat(3, 312px);
  }
}

@media (max-width: 1004px) {
  .mas-pedidas__grid {
    grid-template-columns: repeat(2, 312px);
  }
}

@media (max-width: 679px) {
  .mas-pedidas__grid {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .mas-pedidas-card {
    width: 100%;
    max-width: 312px;
    justify-self: center;
  }
}

@media (max-width: 1480px) {
  .preview-overlay__root {
    padding: 72px;
    gap: 44px;
  }

  .preview-overlay__image.mas-pedidas-card__image {
    max-height: calc(100vh - 184px);
  }
}

@media (max-width: 1120px) {
  .preview-overlay__root {
    padding: 38px;
    gap: 26px;
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .preview-overlay__media {
    min-height: 240px;
  }

  .preview-overlay__image.mas-pedidas-card__image {
    max-height: min(52vh, 420px);
  }

  .preview-overlay__ingredients-list {
    max-height: 170px;
  }
}

@media (max-width: 700px) {
  .preview-overlay__root {
    inset: 12px;
    padding: 22px;
    gap: 16px;
    border-radius: 22px;
  }

  .preview-overlay__info {
    border-radius: 18px;
    padding: 20px;
    gap: 14px;
  }

  .preview-overlay__rating-row {
    padding-right: 30px;
  }

  .preview-overlay__actions {
    flex-direction: column;
  }

  .preview-overlay__button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .navbar__links {
    gap: 12px;
  }

  .navbar__links a {
    padding-inline: 6px;
  }

  .hero {
    background-position: 58% center;
  }

}

@media (max-width: 820px) {
  html {
    --nav-w-collapsed: min(620px, calc(100vw - 28px));
  }

  .navbar__menu-mode-toggle {
    display: none;
  }

  .navbar__inner {
    grid-template-columns: auto 1fr auto;
    --nav-pad-x-expanded: 20px;
    --nav-pad-x-collapsed: 18px;
    --nav-gap-collapsed: 14px;
  }

  .navbar--menu-route .navbar__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand center actions"
      "panel panel panel";
    grid-auto-rows: auto;
    align-items: center;
    align-content: start;
    row-gap: 0;
    height: auto;
    min-height: calc(
      var(--nav-h-expanded) -
        (var(--nav-h-expanded) - var(--nav-h-collapsed)) * var(--nav-collapse)
    );
    overflow: hidden;
    transition:
      background-color 360ms ease,
      box-shadow 360ms ease;
  }

  html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__inner {
    border-radius: 24px;
  }

  .site-header[data-menu-mobile-nav="open"] .navbar--menu-route .navbar__inner,
  .site-header[data-menu-mobile-nav="closing"] .navbar--menu-route .navbar__inner {
    border-radius: 24px;
  }

  .navbar--menu-route .navbar__brand-slot {
    grid-area: brand;
  }

  .navbar--menu-route .navbar__center-shell {
    grid-area: center;
  }

  .navbar--menu-route .navbar__actions {
    grid-area: actions;
  }

  .navbar__links {
    display: none;
  }

  .navbar--menu-route .cta-button--nav,
  .navbar--menu-route .navbar__menu-tools {
    display: none;
  }

  .navbar--menu-route .navbar__mobile-actions {
    display: inline-flex;
  }

  .navbar--menu-route .navbar__mobile-action--search {
    display: none;
  }

  html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__mobile-action--search {
    display: inline-flex;
  }

  .navbar--menu-route .navbar__mobile-menu-panel {
    grid-area: panel;
    display: block;
  }

  html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__actions,
  html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"][data-menu-sticky-search="open"] .navbar--menu-route .navbar__actions {
    width: max-content;
    min-width: max-content;
  }

  html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__brand {
    gap: 0;
  }

  html.nav--collapsed .site-header[data-menu-sticky-mode="sticky"] .navbar--menu-route .navbar__brand-text {
    max-width: 0;
    opacity: 0;
    transform: translateX(-10px);
    pointer-events: none;
  }

  .site-header[data-menu-detail-nav] {
    will-change: transform;
  }

  .site-header[data-menu-detail-nav="hidden"] {
    pointer-events: none;
    transform: translateY(calc(-100% - 10px));
  }

  .site-header[data-menu-detail-nav="visible"] {
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: calc(var(--navbar-height) + 44px);
    padding-bottom: 56px;
    background-position: 62% center;
  }

  .hero__content {
    row-gap: 32px;
    width: min(720px, 100%);
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 4.1rem);
    line-height: 0.98;
  }

  .hero__subtitle {
    width: min(560px, 100%);
    font-size: 1rem;
    line-height: 1.4;
  }

}

@media (max-width: 520px) {
  html {
    --nav-w-collapsed: min(520px, calc(100vw - 24px));
  }

  .navbar__inner {
    --nav-pad-x-expanded: 16px;
    --nav-gap-expanded: 12px;
    --nav-h-collapsed: 54px;
    --nav-pad-y-collapsed: 9px;
    --nav-pad-x-collapsed: 14px;
    --nav-gap-collapsed: 10px;
    --nav-shift-y: 12px;
  }

  .navbar__brand {
    height: 30px;
  }

  .navbar__menu-mode-toggle {
    width: 26px;
    height: 26px;
  }

  .navbar__menu-tools {
    gap: 8px;
  }

  .navbar__menu-tool {
    width: 34px;
    height: 34px;
  }

  .navbar--menu-route .navbar__mobile-actions {
    gap: 8px;
  }

  .navbar--menu-route .navbar__mobile-action {
    width: 34px;
    height: 34px;
  }

  .navbar--menu-route .navbar__mobile-action svg {
    width: 16px;
    height: 16px;
  }

  .navbar--menu-route .navbar__mobile-action--account svg {
    width: 14.4px;
    height: 14.4px;
  }

  .navbar--menu-route .navbar__mobile-search-tool {
    width: 34px;
    min-width: 34px;
    height: 34px;
  }

  .site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-tool {
    width: var(--mobile-search-open-width, clamp(184px, calc(100vw - 188px), 236px));
  }

  .site-header[data-menu-sticky-search="open"] .navbar--menu-route .navbar__mobile-search-panel {
    max-width: calc(100% - 40px);
    padding-right: 0;
  }

  .navbar--menu-route .navbar__mobile-search-input {
    font-size: 1rem;
    padding-right: 10px;
  }

  .navbar--menu-route .navbar__mobile-search-filter {
    width: 32px;
  }

  .navbar--menu-route .navbar__mobile-search-filter svg {
    width: 16px;
    height: 16px;
  }

  .navbar--menu-route .navbar__mobile-menu-panel {
    --menu-mobile-panel-max-height: min(70vh, 460px);
  }

  .navbar--menu-route .navbar__mobile-menu-link {
    min-height: 74px;
    padding: 3px;
    border-radius: 14px;
  }

  .navbar--menu-route .navbar__mobile-menu-thumb {
    width: 68px;
    height: 68px;
    font-size: 1.68rem;
  }

  .navbar--menu-route .navbar__mobile-menu-title {
    font-size: 0.98rem;
  }

  .navbar--menu-route .navbar__mobile-menu-meta {
    font-size: 0.7rem;
  }

  .navbar--menu-route .navbar__mobile-menu-chevron {
    width: 20px;
    height: 20px;
    padding-right: 12px;
  }

  .navbar--menu-route .navbar__mobile-menu-chevron svg {
    width: auto;
    height: 13.5px;
  }

  .cta-button--nav {
    padding-inline: 12px;
    gap: 6px;
    font-size: 16px;
  }

  .cta-button--nav img {
    width: 18px;
    height: 18px;
  }

  .hero {
    padding-inline: 16px;
    padding-top: calc(var(--navbar-height) + 32px);
    padding-bottom: 44px;
    background-position: 68% center;
  }

  .hero__eyebrow {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hero__title {
    font-size: clamp(2.05rem, 10vw, 3rem);
    max-width: 12ch;
  }

  .hero__subtitle {
    font-size: 0.96rem;
    line-height: 1.38;
    max-width: 32ch;
  }

  .cta-button--hero {
    height: 42px;
    min-width: 118px;
    font-size: 0.98rem;
    border-radius: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .site-header[data-menu-detail-nav],
  .navbar__inner,
  .cta-button,
  .navbar__links a,
  .btn-liquid-glass::after,
  .navbar__menu-mode-toggle,
  .navbar__menu-tools,
  .navbar__menu-tool,
  .navbar--menu-route .navbar__links,
  .navbar--menu-route .navbar__center-sticky,
  .navbar--menu-route .navbar__menu-tabs-scroll,
  .navbar--menu-route .navbar__menu-search-tool,
  .navbar--menu-route .navbar__menu-search-panel,
  .navbar--menu-route .navbar__mobile-actions,
  .navbar--menu-route .navbar__mobile-action,
  .navbar--menu-route .navbar__mobile-search-tool,
  .navbar--menu-route .navbar__mobile-search-trigger,
  .navbar--menu-route .navbar__mobile-search-panel,
  .navbar--menu-route .navbar__mobile-search-input,
  .navbar--menu-route .navbar__mobile-search-clear,
  .navbar--menu-route .navbar__mobile-search-filter,
  .navbar--menu-route .navbar__mobile-menu-panel,
  .navbar--menu-route .navbar__mobile-menu-links,
  .navbar--menu-route .navbar__mobile-menu-card,
  .navbar--menu-route .navbar__mobile-menu-link,
  .navbar--menu-route .navbar__mobile-menu-links a {
    transition: none;
  }

  .preview-transition-cover {
    display: none !important;
  }
}

/* =========================
   Footer Shell (outer div)
   ========================= */
.footer-shell {
  width: 100%;
  background: transparent;
}

/* =========================
   Footer tag (padding 16)
   ========================= */
.site-footer {
  width: 100%;
  padding: 16px;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.site-footer button,
.site-footer input {
  font-family: inherit;
}

/* =========================
   Wrapper (SquareUI-like / FIGATA)
   background: #2b2b2b
   radius 52
   padding: 40 top / 40 bottom
   ========================= */
.footer-wrapper {
  position: relative;
  background: #2b2b2b;
  border-radius: 52px;
  padding: 40px 0;
  overflow: hidden;
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 100% at 0% 0%, rgba(255, 255, 255, 0.03), transparent 50%),
    radial-gradient(80% 100% at 100% 100%, rgba(0, 0, 0, 0.18), transparent 60%);
  pointer-events: none;
}

/* =========================
   Container
   Total width = 1200px -> inner content width = 1136px
   with padding-inline: 32px
   ========================= */
.footer-container {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* =========================
   Banner / Map
   No internal white frame
   ========================= */
.footer-banner {
  position: relative;
  width: 100%;
  border-radius: 40px;
  background: #1b1714;
  box-shadow:
    0 34px 60px rgba(0, 0, 0, 0.38),
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.footer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(17, 12, 9, 0.34) 0%,
    rgba(17, 12, 9, 0.29) 27%,
    rgba(17, 12, 9, 0.14) 52%,
    rgba(17, 12, 9, 0) 76%
  );
  pointer-events: none;
}

.footer-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1812 / 662;
  display: block;
  border-radius: 40px;
  object-fit: cover;
}

.footer-banner-overlay {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: min(560px, 100%);
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.footer-banner-eyebrow {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.footer-banner-title {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.footer-banner-address {
  margin: 14px 0 0;
  width: min(470px, 100%);
  max-width: 470px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-wrap: pretty;
}

.footer-banner-cta {
  margin-top: 36px;
  width: 154px;
  height: 40px;
  padding: 0 12px 0 16px;
  border-radius: 999px;
  background: #472e18;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.footer-banner-cta:hover,
.footer-banner-cta:focus-visible {
  transform: translateY(-1px);
  background: #563621;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.footer-banner-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

.footer-banner-cta-label {
  line-height: 1;
  white-space: nowrap;
}

.footer-banner-cta-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  opacity: 0.96;
}

/* =========================
   Content area wrapper
   ========================= */
.footer-content {
  width: 100%;
}

/* =========================
   TOP GRID (SquareUI-like 6 columns)
   ========================= */
.footer-top {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: center;
  column-gap: 80px;
  row-gap: 56px;
  align-items: start;
  padding-bottom: 32px;
}

.footer-brand,
.footer-col,
.footer-newsletter {
  min-width: 0;
}

/* Brand spans 2 cols, Newsletter spans 2 cols */
.footer-brand {
  grid-column: 1 / span 2;
  max-width: 300px;
}

.footer-newsletter {
  grid-column: 5 / span 2;
}

/* =========================
   Typography
   ========================= */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 22px;
  height: 22px;
  aspect-ratio: 1 / 1;
  opacity: 0.98;
  flex: 0 0 auto;
  display: block;
}

.footer-logo-wordmark {
  height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.98;
  flex: 0 0 auto;
}

.footer-col-title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.footer-muted {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-brand .footer-muted {
  max-width: 290px;
}

/* Links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 1;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.95);
}

.footer-links a > span {
  position: relative;
  display: inline-block;
}

.footer-links a > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.8;
  transition: transform 180ms ease;
}

.footer-links a:hover > span::after,
.footer-links a:focus-visible > span::after {
  transform: scaleX(1);
}

/* Dim siblings only when a specific link is hovered/focused */
.footer-links:has(a:hover) a,
.footer-links:has(a:focus-visible) a {
  opacity: 0.7;
}

.footer-links:has(a:hover) a:hover,
.footer-links:has(a:hover) a:focus-visible,
.footer-links:has(a:focus-visible) a:hover,
.footer-links:has(a:focus-visible) a:focus-visible {
  opacity: 1;
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-link-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.92;
}

/* =========================
   Newsletter/Contact form (pill)
   ========================= */
.footer-newsletter .footer-col-title {
  margin-bottom: 8px;
}

.footer-newsletter-copy {
  width: 260px;
  max-width: 100%;
}

.footer-form {
  margin-top: 24px;
  position: relative;
  height: 48px;
  width: 100%;
  max-width: none;
}

.footer-form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0.78;
  filter: invert(1) brightness(0.2);
  pointer-events: none;
}

.footer-input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: none;
  border-radius: 99px;
  padding: 0 64px 0 44px;
  background: #ffffff;
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.footer-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 600;
}

.footer-input:focus-visible {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.16),
    0 0 0 2px rgba(71, 46, 24, 0.55);
}

.footer-submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 40px;
  border: 0;
  border-radius: 99px;
  background: #6b4a2f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: filter 160ms ease, transform 160ms ease;
}

.footer-submit:hover {
  filter: brightness(1.05);
}

.footer-submit:focus-visible {
  outline: 2px solid rgba(107, 74, 47, 0.9);
  outline-offset: 2px;
}

.footer-submit-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* =========================
   Bottom bar (flex, space-between)
   ========================= */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 20px;
  padding-top: 18px;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  flex-wrap: wrap;
}

.footer-copy .footer-muted,
.footer-right .footer-muted {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-dot {
  opacity: 0.55;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Requested: reduce only the gap between "Desarrollado por" and "La Frame" from 10px to 5px */
.footer-right > .footer-muted:first-child + strong {
  margin-left: -5px;
}

.footer-right strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.footer-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}

.footer-icons a {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-icons a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.footer-icons a img[src$="tiktok.svg"] {
  width: 18px;
  height: 18px;
}

.footer-icons a.footer-icon-swap {
  position: relative;
  overflow: visible;
}

.footer-icons a.footer-icon-swap .footer-icon-swap__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.footer-icons a.footer-icon-swap .footer-icon-swap__img--default {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-icons a.footer-icon-swap .footer-icon-swap__img--hover {
  filter: none;
  opacity: 0;
  width: 20px;
  height: 21px;
  right: -10px;
  bottom: -11px;
  transform-origin: 10px 10.5px;
  transform: matrix(1.067, 0, 0, 1.067, -8.5, -10.5);
}

.footer-icons a .footer-social-icon {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.9;
  transition:
    opacity 160ms ease,
    color 160ms ease;
}

.footer-social-icon--instagram .instagram-icon {
  transition: opacity 220ms ease;
}

.footer-social-icon--instagram .instagram-icon--mono {
  fill: #ffffff;
  opacity: 1;
}

.footer-social-icon--instagram .instagram-icon--gradient {
  fill: url(#footer-instagram-gradient);
  opacity: 0;
}

.footer-social-icon--tripadvisor {
  color: #ffffff;
}

.footer-social-icon--tripadvisor path {
  fill: currentColor;
}

.footer-icons a:hover,
.footer-icons a:focus-visible,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:hover) .footer-icons .footer-icon-trigger--instagram,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:focus-visible) .footer-icons .footer-icon-trigger--instagram,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:hover) .footer-icons .footer-icon-trigger--tiktok,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:focus-visible) .footer-icons .footer-icon-trigger--tiktok,
.footer-content:has(.footer-col--socials .footer-social-link--tripadvisor:hover) .footer-icons .footer-icon-trigger--tripadvisor,
.footer-content:has(.footer-col--socials .footer-social-link--tripadvisor:focus-visible) .footer-icons .footer-icon-trigger--tripadvisor {
  transform: translateY(-1px);
}

.footer-icons a:hover img,
.footer-icons a:focus-visible img,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:hover) .footer-icons .footer-icon-trigger--tiktok img,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:focus-visible) .footer-icons .footer-icon-trigger--tiktok img {
  opacity: 0.98;
}

.footer-icons a:hover .footer-social-icon,
.footer-icons a:focus-visible .footer-social-icon,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:hover) .footer-icons .footer-icon-trigger--instagram .footer-social-icon,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:focus-visible) .footer-icons .footer-icon-trigger--instagram .footer-social-icon,
.footer-content:has(.footer-col--socials .footer-social-link--tripadvisor:hover) .footer-icons .footer-icon-trigger--tripadvisor .footer-social-icon,
.footer-content:has(.footer-col--socials .footer-social-link--tripadvisor:focus-visible) .footer-icons .footer-icon-trigger--tripadvisor .footer-social-icon {
  opacity: 0.98;
}

.footer-icons a.footer-icon-swap:hover .footer-icon-swap__img--default,
.footer-icons a.footer-icon-swap:focus-visible .footer-icon-swap__img--default,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:hover) .footer-icons .footer-icon-trigger--tiktok .footer-icon-swap__img--default,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:focus-visible) .footer-icons .footer-icon-trigger--tiktok .footer-icon-swap__img--default {
  opacity: 0;
}

.footer-icons a.footer-icon-swap:hover .footer-icon-swap__img--hover,
.footer-icons a.footer-icon-swap:focus-visible .footer-icon-swap__img--hover,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:hover) .footer-icons .footer-icon-trigger--tiktok .footer-icon-swap__img--hover,
.footer-content:has(.footer-col--socials .footer-social-link--tiktok:focus-visible) .footer-icons .footer-icon-trigger--tiktok .footer-icon-swap__img--hover {
  opacity: 0.98;
}

.footer-icons a:hover .footer-social-icon--tripadvisor,
.footer-icons a:focus-visible .footer-social-icon--tripadvisor,
.footer-content:has(.footer-col--socials .footer-social-link--tripadvisor:hover) .footer-icons .footer-icon-trigger--tripadvisor .footer-social-icon--tripadvisor,
.footer-content:has(.footer-col--socials .footer-social-link--tripadvisor:focus-visible) .footer-icons .footer-icon-trigger--tripadvisor .footer-social-icon--tripadvisor {
  color: #34E0A1;
}

.footer-icons a:hover .footer-social-icon--instagram .instagram-icon--mono,
.footer-icons a:focus-visible .footer-social-icon--instagram .instagram-icon--mono,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:hover) .footer-icons .footer-icon-trigger--instagram .footer-social-icon--instagram .instagram-icon--mono,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:focus-visible) .footer-icons .footer-icon-trigger--instagram .footer-social-icon--instagram .instagram-icon--mono {
  opacity: 0;
}

.footer-icons a:hover .footer-social-icon--instagram .instagram-icon--gradient,
.footer-icons a:focus-visible .footer-social-icon--instagram .instagram-icon--gradient,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:hover) .footer-icons .footer-icon-trigger--instagram .footer-social-icon--instagram .instagram-icon--gradient,
.footer-content:has(.footer-col--socials .footer-social-link--instagram:focus-visible) .footer-icons .footer-icon-trigger--instagram .footer-social-icon--instagram .instagram-icon--gradient {
  opacity: 1;
}

.footer-icons a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
  border-radius: 50%;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1180px) {
  .footer-top {
    column-gap: 48px;
  }

  .footer-banner-overlay {
    width: min(520px, 100%);
    padding-inline: 32px;
  }

  .footer-banner-address {
    width: min(420px, 100%);
    max-width: 420px;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    padding-inline: 24px;
    gap: 56px;
  }

  .footer-wrapper {
    border-radius: 42px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-banner-overlay {
    width: min(500px, 100%);
    padding: 28px;
  }

  .footer-banner-title {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-right {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-footer {
    padding: 12px;
  }

  .footer-wrapper {
    border-radius: 32px;
    padding: 28px 0;
  }

  .footer-container {
    padding: 0 18px;
    gap: 40px;
  }

  .footer-banner {
    border-radius: 24px;
  }

  .footer-banner::before {
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      180deg,
      rgba(17, 12, 9, 0.05) 0%,
      rgba(17, 12, 9, 0.12) 42%,
      rgba(17, 12, 9, 0.34) 100%
    );
  }

  .footer-banner-img {
    border-radius: inherit;
    aspect-ratio: 1.65 / 1;
  }

  .footer-banner-overlay {
    inset: auto 0 0 0;
    width: auto;
    padding: 18px;
    justify-content: flex-end;
  }

  .footer-banner-title {
    margin-top: 10px;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .footer-banner-address {
    margin-top: 10px;
    width: 100%;
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .footer-banner-cta {
    margin-top: 18px;
    width: 148px;
    font-size: 13px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 32px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
  }

  .footer-newsletter-copy,
  .footer-form {
    width: 100%;
    max-width: 320px;
  }

  .footer-copy,
  .footer-right {
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .footer-wrapper {
    border-radius: 26px;
  }

  .footer-container {
    padding-inline: 14px;
  }

  .footer-banner {
    border-radius: 18px;
  }

  .footer-banner-overlay {
    padding: 14px;
  }

  .footer-banner-eyebrow {
    font-size: 12px;
  }

  .footer-form {
    max-width: 100%;
  }

  .footer-copy {
    gap: 4px;
  }

  .footer-right {
    gap: 8px;
  }

  .footer-icons {
    margin-left: 0;
    width: 100%;
    gap: 10px;
  }
}

.events-tabs-section {
  width: 100%;
}

.events-tabs-section .testimonials-shell {
  width: 100%;
  margin-bottom: 8px;
}

.events-tabs-section .testimonials-container {
  width: min(1404px, 100%);
  padding-inline: 16px;
  box-sizing: border-box;
}

.events-tabs-section .testimonials-header {
  width: 1372px;
  max-width: 100%;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.events-tabs-section .testimonials-header h2 {
  width: 1372px;
  max-width: 100%;
  white-space: nowrap;
  text-wrap: nowrap;
}

.events-tabs-container {
  max-width: 1404px;
  margin: 0 auto;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.events-tabs {
  --events-tab-count: 3;
  --events-tabs-inner-width: 1120px;
  width: calc(var(--events-tabs-inner-width) + 16px);
  height: 104px;
  margin-left: auto;
  margin-right: auto;
  padding: 8px;
  background: #19191b;
  border-radius: 36px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--events-tab-count), minmax(0, 1fr));
  grid-template-rows: 88px;
  column-gap: 0;
  align-items: stretch;
  box-sizing: border-box;
}

.events-tabs-rail {
  position: absolute;
  left: 8px;
  top: 8px;
  width: var(--events-tabs-inner-width);
  height: 88px;
  pointer-events: none;
}

.events-tabs-spacer {
  position: absolute;
  top: 0;
  height: 88px;
  width: calc(var(--events-tabs-inner-width) / var(--events-tab-count));
  border-radius: 28px;
  left: 0;
}

.events-tabs-pill {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--events-tabs-inner-width) / var(--events-tab-count));
  height: 88px;
  border-radius: 28px;
  background: var(--figata-bg);
  box-shadow:
    rgba(0, 0, 0, 0.52) 0px 0px 34px -12px,
    rgba(0, 0, 0, 0.44) 0px 0px 20px -8px,
    rgba(0, 0, 0, 0.32) 0px 0px 8px 0px,
    rgba(240, 239, 237, 0.06) 0px 0px 0px 1px inset;
  transform: translateX(0);
  transform-origin: 50% 50% 0px;
  will-change: transform;
}

.events-tab-container {
  width: calc(var(--events-tabs-inner-width) / var(--events-tab-count));
  height: 88px;
  display: flex;
}

.events-tab-container[hidden] {
  display: none !important;
}

.events-tab {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  text-align: left;
  user-select: none;
  color: #f0efed;
}

.events-tab:focus-visible {
  outline: 2px solid rgba(240, 239, 237, 0.35);
  outline-offset: 2px;
}

.events-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(240, 239, 237, 0.08);
  color: #f0efed;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.25s ease-out,
    background-color 0.25s ease-out,
    color 0.25s ease-out;
}

.events-tab[aria-selected="true"] .events-tab-icon,
.events-tab.is-active .events-tab-icon {
  background: rgba(240, 239, 237, 0.14);
  color: #b6743c;
}

.events-tab[aria-selected="false"] .events-tab-icon {
  opacity: 0.5;
}

.events-tab[aria-selected="false"]:hover .events-tab-icon {
  color: #c88d5a;
}

.events-tab-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.events-tab-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #f0efed;
  transition:
    opacity 0.25s ease-out,
    color 0.25s ease-out;
}

.events-tab-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #f0efed;
  opacity: 0.6;
  transition:
    opacity 0.25s ease-out,
    color 0.25s ease-out;
}

.events-tab[aria-selected="false"] .events-tab-title,
.events-tab[aria-selected="false"] .events-tab-subtitle {
  opacity: 0.5;
}

.events-tab[aria-selected="false"]:hover .events-tab-icon,
.events-tab[aria-selected="false"]:hover .events-tab-title,
.events-tab[aria-selected="false"]:hover .events-tab-subtitle {
  opacity: 0.8;
}

.events-card {
  width: 1372px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 48px;
  background: #2b2b2b;
  border: 1px solid rgba(240, 239, 237, 0.08);
  padding: 12px;
}

.events-card-inner {
  border-radius: 36px;
  background: #1d1d1d;
  box-shadow:
    rgba(0, 0, 0, 0.46) 0 28px 36px -20px,
    rgba(0, 0, 0, 0.34) 0 10px 18px -10px,
    rgba(240, 239, 237, 0.05) 0 0 0 1px inset;
  padding: 14px;
  overflow: hidden;
}

.events-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 14px 10px;
}

.events-card-urlpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(240, 239, 237, 0.08);
}

.events-card-lock {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgb(19, 60, 240);
}

.events-card-urltext {
  font-size: 12px;
  line-height: 16px;
  color: #f0efed;
  opacity: 0.8;
}

.events-card-actions {
  display: inline-flex;
  gap: 6px;
}

.events-card-actions span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(240, 239, 237, 0.26);
}

.events-card-media {
  border-radius: 22px;
  background: #2b2b2b;
  border: 1px solid rgba(240, 239, 237, 0.1);
  overflow: hidden;
}

.events-card-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
  background: transparent;
  min-height: 420px;
}

.events-card-video[hidden] {
  display: none;
}

.bottom-blur-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  z-index: 8;
  pointer-events: none;
  opacity: 1;
}

.top-blur-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100px;
  z-index: 8;
  pointer-events: none;
  opacity: 1;
  transform: scaleY(-1);
  transform-origin: center;
}

.bottom-blur-overlay__stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bottom-blur-overlay__layer {
  opacity: 1;
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  will-change: auto;
}

.bottom-blur-overlay__layer:nth-child(1) {
  z-index: 1;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 37.5%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgba(0, 0, 0, 0) 37.5%);
  -webkit-backdrop-filter: blur(0.0546875px);
  backdrop-filter: blur(0.0546875px);
}

.bottom-blur-overlay__layer:nth-child(2) {
  z-index: 2;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgba(0, 0, 0, 0) 50%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 12.5%, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgba(0, 0, 0, 0) 50%);
  -webkit-backdrop-filter: blur(0.109375px);
  backdrop-filter: blur(0.109375px);
}

.bottom-blur-overlay__layer:nth-child(3) {
  z-index: 3;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 62.5%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 25%, rgb(0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 62.5%);
  -webkit-backdrop-filter: blur(0.21875px);
  backdrop-filter: blur(0.21875px);
}

.bottom-blur-overlay__layer:nth-child(4) {
  z-index: 4;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgba(0, 0, 0, 0) 75%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 37.5%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgba(0, 0, 0, 0) 75%);
  -webkit-backdrop-filter: blur(0.4375px);
  backdrop-filter: blur(0.4375px);
}

.bottom-blur-overlay__layer:nth-child(5) {
  z-index: 5;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 87.5%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 87.5%);
  -webkit-backdrop-filter: blur(0.875px);
  backdrop-filter: blur(0.875px);
}

.bottom-blur-overlay__layer:nth-child(6) {
  z-index: 6;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 62.5%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(1.75px);
  backdrop-filter: blur(1.75px);
}

.bottom-blur-overlay__layer:nth-child(7) {
  z-index: 7;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 75%, rgb(0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(3.5px);
  backdrop-filter: blur(3.5px);
}

.bottom-blur-overlay__layer:nth-child(8) {
  z-index: 8;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 87.5%, rgb(0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

@media (max-width: 900px) {
  .events-tabs-container {
    padding: 36px 16px;
  }

  .events-card {
    border-radius: 30px;
  }

  .events-card-inner {
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .events-card-video {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-tabs-pill,
  .events-tab,
  .events-tab-icon {
    transition: none;
  }

  .footer-banner-cta,
  .footer-links a,
  .footer-links a > span::after,
  .footer-icons a img,
  .footer-icons a.footer-icon-swap .footer-icon-swap__img,
  .footer-icons a .footer-social-icon,
  .footer-social-icon--instagram .instagram-icon,
  .footer-submit,
  .footer-icons a {
    transition: none;
  }
}
